From f3cf608caafaf6e19e17384748434a422a9522f0 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 26 Jun 2024 10:46:59 -0700 Subject: [PATCH 01/39] Fix: use temp dir for split / merge (#7105) --- src/documents/bulk_edit.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/documents/bulk_edit.py b/src/documents/bulk_edit.py index 7733a8d68..7f56a1207 100644 --- a/src/documents/bulk_edit.py +++ b/src/documents/bulk_edit.py @@ -2,6 +2,7 @@ import hashlib import itertools import logging import os +import tempfile from typing import Optional from celery import chain @@ -269,7 +270,7 @@ def merge( return "OK" filepath = os.path.join( - settings.SCRATCH_DIR, + tempfile.mkdtemp(dir=settings.SCRATCH_DIR), f"{'_'.join([str(doc_id) for doc_id in doc_ids])[:100]}_merged.pdf", ) merged_pdf.remove_unreferenced_resources() @@ -321,7 +322,7 @@ def split(doc_ids: list[int], pages: list[list[int]], delete_originals: bool = F for page in split_doc: dst.pages.append(pdf.pages[page - 1]) filepath = os.path.join( - settings.SCRATCH_DIR, + tempfile.mkdtemp(dir=settings.SCRATCH_DIR), f"{doc.id}_{split_doc[0]}-{split_doc[-1]}.pdf", ) dst.remove_unreferenced_resources() From 80c2d90e74408c8430fd053c8c1c945a2403f8bc Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 26 Jun 2024 19:30:12 -0700 Subject: [PATCH 02/39] Fix: dont include documents in trash in counts (#7111) --- src/documents/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/documents/views.py b/src/documents/views.py index affda436c..7457ce12f 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -231,10 +231,11 @@ class PermissionsAwareDocumentCountMixin(PassUserMixin): def get_queryset(self): filter = ( - None + Q(documents__deleted_at__isnull=True) if self.request.user is None or self.request.user.is_superuser else ( Q( + documents__deleted_at__isnull=True, documents__id__in=get_objects_for_user_owner_aware( self.request.user, "documents.view_document", From 29e6371cd11de49c37f9b08318de20ec02209fce Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Wed, 26 Jun 2024 19:37:50 -0700 Subject: [PATCH 03/39] Feature: Upgrade Gotenberg to v8 (#7094) --- Pipfile.lock | 6 +-- docker/compose/docker-compose.ci-test.yml | 2 +- .../compose/docker-compose.mariadb-tika.yml | 2 +- .../compose/docker-compose.postgres-tika.yml | 2 +- docker/compose/docker-compose.sqlite-tika.yml | 2 +- src/paperless_mail/parsers.py | 40 ++++++++++++++----- src/paperless_tika/parsers.py | 5 ++- src/paperless_tika/tests/test_tika_parser.py | 5 ++- 8 files changed, 45 insertions(+), 19 deletions(-) diff --git a/Pipfile.lock b/Pipfile.lock index 19fa61a23..a79f6db12 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -602,12 +602,12 @@ }, "gotenberg-client": { "hashes": [ - "sha256:097151c959d9ad9c6292694dac454a07a511489a353086df924f489190084425", - "sha256:3d6c0449fd1afb82206bfdc2edacfe1d7d98e9de7207332b696b97a3d4dfba6b" + "sha256:94e12d1e2ebaaf8552008c95553f5c635c6b8beef401c65cee6ba0d73bbb146b", + "sha256:b0829ae666ee75fc2bd61cf055c2dea9877f73d52a3b4e1998eea4cee14923f5" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==0.5.0" + "version": "==0.6.0" }, "gunicorn": { "hashes": [ diff --git a/docker/compose/docker-compose.ci-test.yml b/docker/compose/docker-compose.ci-test.yml index d1c75ead2..d67aa9f61 100644 --- a/docker/compose/docker-compose.ci-test.yml +++ b/docker/compose/docker-compose.ci-test.yml @@ -5,7 +5,7 @@ services: gotenberg: - image: docker.io/gotenberg/gotenberg:7.10 + image: docker.io/gotenberg/gotenberg:8.7 hostname: gotenberg container_name: gotenberg network_mode: host diff --git a/docker/compose/docker-compose.mariadb-tika.yml b/docker/compose/docker-compose.mariadb-tika.yml index e23fe8b92..b451ce9e8 100644 --- a/docker/compose/docker-compose.mariadb-tika.yml +++ b/docker/compose/docker-compose.mariadb-tika.yml @@ -77,7 +77,7 @@ services: PAPERLESS_TIKA_ENDPOINT: http://tika:9998 gotenberg: - image: docker.io/gotenberg/gotenberg:7.10 + image: docker.io/gotenberg/gotenberg:8.7 restart: unless-stopped # The gotenberg chromium route is used to convert .eml files. We do not # want to allow external content like tracking pixels or even javascript. diff --git a/docker/compose/docker-compose.postgres-tika.yml b/docker/compose/docker-compose.postgres-tika.yml index fb129f7a2..e168dfadc 100644 --- a/docker/compose/docker-compose.postgres-tika.yml +++ b/docker/compose/docker-compose.postgres-tika.yml @@ -71,7 +71,7 @@ services: PAPERLESS_TIKA_ENDPOINT: http://tika:9998 gotenberg: - image: docker.io/gotenberg/gotenberg:7.10 + image: docker.io/gotenberg/gotenberg:8.7 restart: unless-stopped # The gotenberg chromium route is used to convert .eml files. We do not diff --git a/docker/compose/docker-compose.sqlite-tika.yml b/docker/compose/docker-compose.sqlite-tika.yml index 34c8dbfed..abfb64cdf 100644 --- a/docker/compose/docker-compose.sqlite-tika.yml +++ b/docker/compose/docker-compose.sqlite-tika.yml @@ -59,7 +59,7 @@ services: PAPERLESS_TIKA_ENDPOINT: http://tika:9998 gotenberg: - image: docker.io/gotenberg/gotenberg:7.10 + image: docker.io/gotenberg/gotenberg:8.7 restart: unless-stopped # The gotenberg chromium route is used to convert .eml files. We do not diff --git a/src/paperless_mail/parsers.py b/src/paperless_mail/parsers.py index 9275c5579..9047b5f90 100644 --- a/src/paperless_mail/parsers.py +++ b/src/paperless_mail/parsers.py @@ -9,7 +9,9 @@ from django.conf import settings from django.utils.timezone import is_naive from django.utils.timezone import make_aware from gotenberg_client import GotenbergClient -from gotenberg_client.options import Margin +from gotenberg_client.options import MarginType +from gotenberg_client.options import MarginUnitType +from gotenberg_client.options import PageMarginsType from gotenberg_client.options import PageSize from gotenberg_client.options import PdfAFormat from humanize import naturalsize @@ -20,6 +22,7 @@ from tika_client import TikaClient from documents.parsers import DocumentParser from documents.parsers import ParseError from documents.parsers import make_thumbnail_from_pdf +from paperless.models import OutputTypeChoices class MailDocumentParser(DocumentParser): @@ -30,17 +33,22 @@ class MailDocumentParser(DocumentParser): logging_name = "paperless.parsing.mail" - @staticmethod - def _settings_to_gotenberg_pdfa() -> Optional[PdfAFormat]: + def _settings_to_gotenberg_pdfa(self) -> Optional[PdfAFormat]: """ Converts our requested PDF/A output into the Gotenberg API format """ - if settings.OCR_OUTPUT_TYPE in {"pdfa", "pdfa-2"}: + if settings.OCR_OUTPUT_TYPE in { + OutputTypeChoices.PDF_A, + OutputTypeChoices.PDF_A2, + }: return PdfAFormat.A2b - elif settings.OCR_OUTPUT_TYPE == "pdfa-1": # pragma: no cover - return PdfAFormat.A1a - elif settings.OCR_OUTPUT_TYPE == "pdfa-3": # pragma: no cover + elif settings.OCR_OUTPUT_TYPE == OutputTypeChoices.PDF_A1: # pragma: no cover + self.log.warn( + "Gotenberg does not support PDF/A-1a, choosing PDF/A-2b instead", + ) + return PdfAFormat.A2b + elif settings.OCR_OUTPUT_TYPE == OutputTypeChoices.PDF_A3: # pragma: no cover return PdfAFormat.A3b return None @@ -329,7 +337,14 @@ class MailDocumentParser(DocumentParser): response = ( route.index(email_html_file) .resource(css_file) - .margins(Margin(top=0.1, bottom=0.1, left=0.1, right=0.1)) + .margins( + PageMarginsType( + top=MarginType(0.1, MarginUnitType.Inches), + bottom=MarginType(0.1, MarginUnitType.Inches), + left=MarginType(0.1, MarginUnitType.Inches), + right=MarginType(0.1, MarginUnitType.Inches), + ), + ) .size(PageSize(height=11.7, width=8.27)) .scale(1.0) .run() @@ -404,7 +419,14 @@ class MailDocumentParser(DocumentParser): route.index(html_clean_file) # Set page size, margins - route.margins(Margin(top=0.1, bottom=0.1, left=0.1, right=0.1)).size( + route.margins( + PageMarginsType( + top=MarginType(0.1, MarginUnitType.Inches), + bottom=MarginType(0.1, MarginUnitType.Inches), + left=MarginType(0.1, MarginUnitType.Inches), + right=MarginType(0.1, MarginUnitType.Inches), + ), + ).size( PageSize(height=11.7, width=8.27), ).scale(1.0) diff --git a/src/paperless_tika/parsers.py b/src/paperless_tika/parsers.py index d5589cca4..519f6c6ae 100644 --- a/src/paperless_tika/parsers.py +++ b/src/paperless_tika/parsers.py @@ -102,7 +102,10 @@ class TikaDocumentParser(DocumentParser): }: route.pdf_format(PdfAFormat.A2b) elif settings.OCR_OUTPUT_TYPE == OutputTypeChoices.PDF_A1: - route.pdf_format(PdfAFormat.A1a) + self.log.warn( + "Gotenberg does not support PDF/A-1a, choosing PDF/A-2b instead", + ) + route.pdf_format(PdfAFormat.A2b) elif settings.OCR_OUTPUT_TYPE == OutputTypeChoices.PDF_A3: route.pdf_format(PdfAFormat.A3b) diff --git a/src/paperless_tika/tests/test_tika_parser.py b/src/paperless_tika/tests/test_tika_parser.py index 81d6f026a..ee010eb49 100644 --- a/src/paperless_tika/tests/test_tika_parser.py +++ b/src/paperless_tika/tests/test_tika_parser.py @@ -109,7 +109,7 @@ class TestTikaParser(HttpxMockMixin, TestCase): for setting, expected_key in [ ("pdfa", "PDF/A-2b"), ("pdfa-2", "PDF/A-2b"), - ("pdfa-1", "PDF/A-1a"), + ("pdfa-1", "PDF/A-2b"), ("pdfa-3", "PDF/A-3b"), ]: with override_settings(OCR_OUTPUT_TYPE=setting): @@ -124,9 +124,10 @@ class TestTikaParser(HttpxMockMixin, TestCase): request = self.httpx_mock.get_request() found = False for field in request.stream.fields: - if isinstance(field, DataField) and field.name == "pdfFormat": + if isinstance(field, DataField) and field.name == "pdfa": self.assertEqual(field.value, expected_key) found = True + break self.assertTrue(found) self.httpx_mock.reset(assert_all_responses_were_requested=False) From 0643db4347cd82aa6fd56a884a4f46f342c0a880 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 26 Jun 2024 19:52:08 -0700 Subject: [PATCH 04/39] Feature: improve history display of object names etc (#7102) --- .../document-history.component.html | 2 +- .../document-history.component.spec.ts | 100 ++++++++++++++++++ .../document-history.component.ts | 41 ++++++- 3 files changed, 141 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/components/document-history/document-history.component.html b/src-ui/src/app/components/document-history/document-history.component.html index c63a1223c..edb045323 100644 --- a/src-ui/src/app/components/document-history/document-history.component.html +++ b/src-ui/src/app/components/document-history/document-history.component.html @@ -48,7 +48,7 @@ @if (change.key === 'content') { {{ change.value[1]?.substring(0,100) }}... } @else { - {{ change.value[1] }} + {{ getPrettyName(change.key, change.value[1]) | async }} } } diff --git a/src-ui/src/app/components/document-history/document-history.component.spec.ts b/src-ui/src/app/components/document-history/document-history.component.spec.ts index 90108a971..57133ed74 100644 --- a/src-ui/src/app/components/document-history/document-history.component.spec.ts +++ b/src-ui/src/app/components/document-history/document-history.component.spec.ts @@ -9,11 +9,20 @@ import { CustomDatePipe } from 'src/app/pipes/custom-date.pipe' import { DatePipe } from '@angular/common' import { NgbCollapseModule, NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { CorrespondentService } from 'src/app/services/rest/correspondent.service' +import { DocumentTypeService } from 'src/app/services/rest/document-type.service' +import { StoragePathService } from 'src/app/services/rest/storage-path.service' +import { UserService } from 'src/app/services/rest/user.service' +import { DataType } from 'src/app/data/datatype' describe('DocumentHistoryComponent', () => { let component: DocumentHistoryComponent let fixture: ComponentFixture let documentService: DocumentService + let correspondentService: CorrespondentService + let documentTypeService: DocumentTypeService + let storagePathService: StoragePathService + let userService: UserService beforeEach(async () => { await TestBed.configureTestingModule({ @@ -29,6 +38,10 @@ describe('DocumentHistoryComponent', () => { fixture = TestBed.createComponent(DocumentHistoryComponent) documentService = TestBed.inject(DocumentService) + correspondentService = TestBed.inject(CorrespondentService) + documentTypeService = TestBed.inject(DocumentTypeService) + storagePathService = TestBed.inject(StoragePathService) + userService = TestBed.inject(UserService) component = fixture.componentInstance }) @@ -55,4 +68,91 @@ describe('DocumentHistoryComponent', () => { fixture.detectChanges() expect(getHistorySpy).toHaveBeenCalledWith(1) }) + + it('getPrettyName should return the correspondent name', () => { + const correspondentId = '1' + const correspondentName = 'John Doe' + const getCachedSpy = jest + .spyOn(correspondentService, 'getCached') + .mockReturnValue(of({ name: correspondentName })) + component + .getPrettyName(DataType.Correspondent, correspondentId) + .subscribe((result) => { + expect(result).toBe(correspondentName) + }) + expect(getCachedSpy).toHaveBeenCalledWith(parseInt(correspondentId)) + // no correspondent found + getCachedSpy.mockReturnValue(of(null)) + component + .getPrettyName(DataType.Correspondent, correspondentId) + .subscribe((result) => { + expect(result).toBe(correspondentId) + }) + }) + + it('getPrettyName should return the document type name', () => { + const documentTypeId = '1' + const documentTypeName = 'Invoice' + const getCachedSpy = jest + .spyOn(documentTypeService, 'getCached') + .mockReturnValue(of({ name: documentTypeName })) + component + .getPrettyName(DataType.DocumentType, documentTypeId) + .subscribe((result) => { + expect(result).toBe(documentTypeName) + }) + expect(getCachedSpy).toHaveBeenCalledWith(parseInt(documentTypeId)) + // no document type found + getCachedSpy.mockReturnValue(of(null)) + component + .getPrettyName(DataType.DocumentType, documentTypeId) + .subscribe((result) => { + expect(result).toBe(documentTypeId) + }) + }) + + it('getPrettyName should return the storage path path', () => { + const storagePathId = '1' + const storagePath = '/path/to/storage' + const getCachedSpy = jest + .spyOn(storagePathService, 'getCached') + .mockReturnValue(of({ path: storagePath })) + component + .getPrettyName(DataType.StoragePath, storagePathId) + .subscribe((result) => { + expect(result).toBe(storagePath) + }) + expect(getCachedSpy).toHaveBeenCalledWith(parseInt(storagePathId)) + // no storage path found + getCachedSpy.mockReturnValue(of(null)) + component + .getPrettyName(DataType.StoragePath, storagePathId) + .subscribe((result) => { + expect(result).toBe(storagePathId) + }) + }) + + it('getPrettyName should return the owner username', () => { + const ownerId = '1' + const ownerUsername = 'user1' + const getCachedSpy = jest + .spyOn(userService, 'getCached') + .mockReturnValue(of({ username: ownerUsername })) + component.getPrettyName('owner', ownerId).subscribe((result) => { + expect(result).toBe(ownerUsername) + }) + expect(getCachedSpy).toHaveBeenCalledWith(parseInt(ownerId)) + // no user found + getCachedSpy.mockReturnValue(of(null)) + component.getPrettyName('owner', ownerId).subscribe((result) => { + expect(result).toBe(ownerId) + }) + }) + + it('getPrettyName should return the value as is for other types', () => { + const id = '123' + component.getPrettyName('other', id).subscribe((result) => { + expect(result).toBe(id) + }) + }) }) diff --git a/src-ui/src/app/components/document-history/document-history.component.ts b/src-ui/src/app/components/document-history/document-history.component.ts index 7870c1714..934ddab56 100644 --- a/src-ui/src/app/components/document-history/document-history.component.ts +++ b/src-ui/src/app/components/document-history/document-history.component.ts @@ -1,6 +1,12 @@ import { Component, Input, OnInit } from '@angular/core' +import { Observable, first, map, of } from 'rxjs' import { AuditLogAction, AuditLogEntry } from 'src/app/data/auditlog-entry' +import { DataType } from 'src/app/data/datatype' +import { CorrespondentService } from 'src/app/services/rest/correspondent.service' +import { DocumentTypeService } from 'src/app/services/rest/document-type.service' import { DocumentService } from 'src/app/services/rest/document.service' +import { StoragePathService } from 'src/app/services/rest/storage-path.service' +import { UserService } from 'src/app/services/rest/user.service' @Component({ selector: 'pngx-document-history', @@ -20,7 +26,13 @@ export class DocumentHistoryComponent implements OnInit { public loading: boolean = true public entries: AuditLogEntry[] = [] - constructor(private documentService: DocumentService) {} + constructor( + private documentService: DocumentService, + private correspondentService: CorrespondentService, + private storagePathService: StoragePathService, + private documentTypeService: DocumentTypeService, + private userService: UserService + ) {} ngOnInit(): void { if (this._documentId) { @@ -33,4 +45,31 @@ export class DocumentHistoryComponent implements OnInit { }) } } + + getPrettyName(type: DataType | string, id: string): Observable { + switch (type) { + case DataType.Correspondent: + return this.correspondentService.getCached(parseInt(id, 10)).pipe( + first(), + map((correspondent) => correspondent?.name ?? id) + ) + case DataType.DocumentType: + return this.documentTypeService.getCached(parseInt(id, 10)).pipe( + first(), + map((documentType) => documentType?.name ?? id) + ) + case DataType.StoragePath: + return this.storagePathService.getCached(parseInt(id, 10)).pipe( + first(), + map((storagePath) => storagePath?.path ?? id) + ) + case 'owner': + return this.userService.getCached(parseInt(id, 10)).pipe( + first(), + map((user) => user?.username ?? id) + ) + default: + return of(id) + } + } } From 2b1498cc6d35e63f0b6d90b16adf6494a0df1a1d Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 26 Jun 2024 20:02:52 -0700 Subject: [PATCH 05/39] Chore: display docker tag in UI for ci test builds (#7083) --- .github/workflows/ci.yml | 2 ++ Dockerfile | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15fcc24b3..baea9eff2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -406,6 +406,8 @@ jobs: push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.docker-meta.outputs.tags }} labels: ${{ steps.docker-meta.outputs.labels }} + build-args: | + PNGX_TAG_VERSION=${{ steps.docker-meta.outputs.version }} # Get cache layers from this branch, then dev # This allows new branches to get at least some cache benefits, generally from dev cache-from: | diff --git a/Dockerfile b/Dockerfile index bb32a9817..a0120cdd4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,16 @@ WORKDIR /src/src-ui RUN set -eux \ && npm update npm -g \ && npm ci + +ARG PNGX_TAG_VERSION= +# Add the tag to the environment file if its a tagged dev build +RUN set -eux && \ +case "${PNGX_TAG_VERSION}" in \ + dev|fix*|feature*) \ + sed -i -E "s/version: '([0-9\.]+)'/version: '\1 #${PNGX_TAG_VERSION}'/g" /src/src-ui/src/environments/environment.prod.ts \ + ;; \ +esac + RUN set -eux \ && ./node_modules/.bin/ng build --configuration production From 4f1185c65df5d9586ef32b2ad29d41dca4339db7 Mon Sep 17 00:00:00 2001 From: Fabien Dubuy <59292746+fdubuy@users.noreply.github.com> Date: Thu, 27 Jun 2024 05:47:37 +0200 Subject: [PATCH 06/39] Enhancement: improve date parsing with accented characters (#7100) --- src/documents/parsers.py | 15 +++--- src/documents/tests/test_date_parsing.py | 60 ++++++++++++++++++++++-- 2 files changed, 65 insertions(+), 10 deletions(-) diff --git a/src/documents/parsers.py b/src/documents/parsers.py index ed70f653d..09b1442c0 100644 --- a/src/documents/parsers.py +++ b/src/documents/parsers.py @@ -37,13 +37,14 @@ from documents.utils import run_subprocess # TODO: isn't there a date parsing library for this? DATE_REGEX = re.compile( - r"(\b|(?!=([_-])))([0-9]{1,2})[\.\/-]([0-9]{1,2})[\.\/-]([0-9]{4}|[0-9]{2})(\b|(?=([_-])))|" - r"(\b|(?!=([_-])))([0-9]{4}|[0-9]{2})[\.\/-]([0-9]{1,2})[\.\/-]([0-9]{1,2})(\b|(?=([_-])))|" - r"(\b|(?!=([_-])))([0-9]{1,2}[\. ]+[a-zA-Z]{3,9} [0-9]{4}|[a-zA-Z]{3,9} [0-9]{1,2}, [0-9]{4})(\b|(?=([_-])))|" - r"(\b|(?!=([_-])))([^\W\d_]{3,9} [0-9]{1,2}, ([0-9]{4}))(\b|(?=([_-])))|" - r"(\b|(?!=([_-])))([^\W\d_]{3,9} [0-9]{4})(\b|(?=([_-])))|" - r"(\b|(?!=([_-])))([0-9]{1,2}[^ ]{2}[\. ]+[^ ]{3,9}[ \.\/-][0-9]{4})(\b|(?=([_-])))|" - r"(\b|(?!=([_-])))(\b[0-9]{1,2}[ \.\/-][a-zA-Z]{3}[ \.\/-][0-9]{4})(\b|(?=([_-])))", + r"(\b|(?!=([_-])))(\d{1,2})[\.\/-](\d{1,2})[\.\/-](\d{4}|\d{2})(\b|(?=([_-])))|" + r"(\b|(?!=([_-])))(\d{4}|\d{2})[\.\/-](\d{1,2})[\.\/-](\d{1,2})(\b|(?=([_-])))|" + r"(\b|(?!=([_-])))(\d{1,2}[\. ]+[a-zéûäëčžúřěáíóńźçŞğü]{3,9} \d{4}|[a-zéûäëčžúřěáíóńźçŞğü]{3,9} \d{1,2}, \d{4})(\b|(?=([_-])))|" + r"(\b|(?!=([_-])))([^\W\d_]{3,9} \d{1,2}, (\d{4}))(\b|(?=([_-])))|" + r"(\b|(?!=([_-])))([^\W\d_]{3,9} \d{4})(\b|(?=([_-])))|" + r"(\b|(?!=([_-])))(\d{1,2}[^ ]{2}[\. ]+[^ ]{3,9}[ \.\/-]\d{4})(\b|(?=([_-])))|" + r"(\b|(?!=([_-])))(\b\d{1,2}[ \.\/-][a-zéûäëčžúřěáíóńźçŞğü]{3}[ \.\/-]\d{4})(\b|(?=([_-])))", + re.IGNORECASE, ) diff --git a/src/documents/tests/test_date_parsing.py b/src/documents/tests/test_date_parsing.py index 006ae5e96..253095275 100644 --- a/src/documents/tests/test_date_parsing.py +++ b/src/documents/tests/test_date_parsing.py @@ -192,15 +192,69 @@ class TestDate(TestCase): datetime.datetime(2019, 9, 25, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), ) - def test_crazy_date_past(self, *args): + def test_crazy_date_past(self): self.assertIsNone(parse_date("", "01-07-0590 00:00:00")) - def test_crazy_date_future(self, *args): + def test_crazy_date_future(self): self.assertIsNone(parse_date("", "01-07-2350 00:00:00")) - def test_crazy_date_with_spaces(self, *args): + def test_crazy_date_with_spaces(self): self.assertIsNone(parse_date("", "20 408000l 2475")) + def test_utf_month_names(self): + self.assertEqual( + parse_date("", "13 décembre 2023"), + datetime.datetime(2023, 12, 13, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), + ) + self.assertEqual( + parse_date("", "13 août 2022"), + datetime.datetime(2022, 8, 13, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), + ) + self.assertEqual( + parse_date("", "11 März 2020"), + datetime.datetime(2020, 3, 11, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), + ) + self.assertEqual( + parse_date("", "17. ožujka 2018."), + datetime.datetime(2018, 3, 17, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), + ) + self.assertEqual( + parse_date("", "1. veljače 2016."), + datetime.datetime(2016, 2, 1, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), + ) + self.assertEqual( + parse_date("", "15. února 1985"), + datetime.datetime(1985, 2, 15, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), + ) + self.assertEqual( + parse_date("", "30. září 2011"), + datetime.datetime(2011, 9, 30, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), + ) + self.assertEqual( + parse_date("", "28. května 1990"), + datetime.datetime(1990, 5, 28, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), + ) + self.assertEqual( + parse_date("", "1. grudzień 1997"), + datetime.datetime(1997, 12, 1, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), + ) + self.assertEqual( + parse_date("", "17 Şubat 2024"), + datetime.datetime(2024, 2, 17, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), + ) + self.assertEqual( + parse_date("", "30 Ağustos 2012"), + datetime.datetime(2012, 8, 30, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), + ) + self.assertEqual( + parse_date("", "17 Eylül 2000"), + datetime.datetime(2000, 9, 17, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), + ) + self.assertEqual( + parse_date("", "5. október 1992"), + datetime.datetime(1992, 10, 5, 0, 0, tzinfo=tz.gettz(settings.TIME_ZONE)), + ) + def test_multiple_dates(self): text = """This text has multiple dates. For example 02.02.2018, 22 July 2022 and December 2021. From 3435ffd00cac272579cd821dd21ac955b3746bb1 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 26 Jun 2024 20:57:39 -0700 Subject: [PATCH 07/39] Chore: update to Angular v18 (#7106) --- src-ui/angular.json | 1 - src-ui/package-lock.json | 5083 +++++++++-------- src-ui/package.json | 50 +- src-ui/src/app/app.component.spec.ts | 11 +- src-ui/src/app/app.module.ts | 12 +- .../admin/config/config.component.spec.ts | 8 +- .../admin/logs/logs.component.spec.ts | 9 +- .../admin/settings/settings.component.spec.ts | 12 +- .../admin/tasks/tasks.component.spec.ts | 18 +- .../admin/trash/trash.component.spec.ts | 2 + .../users-groups.component.spec.ts | 12 +- .../app-frame/app-frame.component.spec.ts | 6 +- .../global-search.component.spec.ts | 8 +- ...ete-pages-confirm-dialog.component.spec.ts | 11 +- .../merge-confirm-dialog.component.spec.ts | 10 +- .../rotate-confirm-dialog.component.spec.ts | 13 +- .../split-confirm-dialog.component.spec.ts | 10 +- .../custom-field-display.component.spec.ts | 11 +- .../custom-fields-dropdown.component.spec.ts | 8 +- .../dates-dropdown.component.spec.ts | 12 +- ...orrespondent-edit-dialog.component.spec.ts | 15 +- ...custom-field-edit-dialog.component.spec.ts | 15 +- ...ocument-type-edit-dialog.component.spec.ts | 15 +- .../edit-dialog/edit-dialog.component.spec.ts | 7 +- .../group-edit-dialog.component.spec.ts | 15 +- ...mail-account-edit-dialog.component.spec.ts | 15 +- .../mail-rule-edit-dialog.component.spec.ts | 13 +- ...storage-path-edit-dialog.component.spec.ts | 15 +- .../tag-edit-dialog.component.spec.ts | 11 +- .../user-edit-dialog.component.spec.ts | 13 +- .../workflow-edit-dialog.component.spec.ts | 13 +- .../common/input/date/date.component.spec.ts | 20 +- .../document-link.component.spec.ts | 12 +- .../common/input/file/file.component.spec.ts | 9 +- .../input/monetary/monetary.component.spec.ts | 11 +- .../input/number/number.component.spec.ts | 11 +- .../permissions-form.component.spec.ts | 9 +- .../permissions-group.component.spec.ts | 14 +- .../permissions-user.component.spec.ts | 14 +- .../common/input/tags/tags.component.html | 2 +- .../common/input/tags/tags.component.spec.ts | 26 +- .../common/logo/logo.component.spec.ts | 9 +- .../permissions-dialog.component.spec.ts | 13 +- ...missions-filter-dropdown.component.spec.ts | 20 +- .../permissions-select.component.spec.ts | 9 +- .../preview-popup.component.spec.ts | 11 +- .../profile-edit-dialog.component.spec.ts | 5 +- .../share-links-dropdown.component.spec.ts | 8 +- .../system-status-dialog.component.html | 2 +- .../system-status-dialog.component.spec.ts | 15 +- .../common/toasts/toasts.component.spec.ts | 11 +- .../dashboard/dashboard.component.spec.ts | 20 +- .../saved-view-widget.component.spec.ts | 18 +- .../statistics-widget.component.spec.ts | 10 +- .../upload-file-widget.component.html | 2 +- .../upload-file-widget.component.spec.ts | 20 +- .../document-detail.component.spec.ts | 64 +- .../metadata-collapse.component.html | 2 +- .../document-history.component.spec.ts | 10 +- .../bulk-editor/bulk-editor.component.spec.ts | 22 +- .../document-card-large.component.spec.ts | 10 +- .../document-card-small.component.spec.ts | 10 +- .../document-list.component.spec.ts | 29 +- .../filter-editor.component.spec.ts | 24 +- .../document-notes.component.spec.ts | 16 +- .../file-drop/file-drop.component.spec.ts | 10 +- .../correspondent-list.component.spec.ts | 10 +- .../custom-fields.component.spec.ts | 22 +- .../document-type-list.component.spec.ts | 10 +- .../manage/mail/mail.component.spec.ts | 12 +- .../management-list.component.spec.ts | 11 +- .../storage-path-list.component.spec.ts | 10 +- .../tag-list/tag-list.component.spec.ts | 10 +- .../workflows/workflows.component.spec.ts | 22 +- .../not-found/not-found.component.spec.ts | 10 +- .../app/guards/dirty-saved-view.guard.spec.ts | 12 +- src-ui/src/app/pipes/custom-date.pipe.spec.ts | 13 +- src-ui/src/app/pipes/username.pipe.spec.ts | 12 +- .../src/app/services/config.service.spec.ts | 9 +- .../services/consumer-status.service.spec.ts | 19 +- .../document-list-view.service.spec.ts | 16 +- .../services/open-documents.service.spec.ts | 12 +- .../src/app/services/profile.service.spec.ts | 11 +- .../rest/abstract-paperless-service.spec.ts | 11 +- .../services/rest/document.service.spec.ts | 11 +- .../src/app/services/rest/log.service.spec.ts | 11 +- .../rest/remote-version.service.spec.ts | 11 +- .../app/services/rest/search.service.spec.ts | 11 +- .../src/app/services/settings.service.spec.ts | 11 +- .../services/system-status.service.spec.ts | 11 +- src-ui/src/app/services/tasks.service.spec.ts | 11 +- .../services/upload-documents.service.spec.ts | 17 +- .../utils/ngb-date-parser-formatter.spec.ts | 12 +- 93 files changed, 3461 insertions(+), 2829 deletions(-) diff --git a/src-ui/angular.json b/src-ui/angular.json index 4b1848953..a1bb47f1a 100644 --- a/src-ui/angular.json +++ b/src-ui/angular.json @@ -77,7 +77,6 @@ "scripts": [], "allowedCommonJsDependencies": [ "ng2-pdf-viewer", - "filesize", "file-saver" ], "vendorChunk": true, diff --git a/src-ui/package-lock.json b/src-ui/package-lock.json index cceef05dd..b5a8e9c80 100644 --- a/src-ui/package-lock.json +++ b/src-ui/package-lock.json @@ -9,17 +9,17 @@ "version": "0.0.0", "hasInstallScript": true, "dependencies": { - "@angular/cdk": "^17.3.10", - "@angular/common": "~17.3.9", - "@angular/compiler": "~17.3.9", - "@angular/core": "~17.3.9", - "@angular/forms": "~17.3.9", - "@angular/localize": "~17.3.9", - "@angular/platform-browser": "~17.3.9", - "@angular/platform-browser-dynamic": "~17.3.9", - "@angular/router": "~17.3.9", - "@ng-bootstrap/ng-bootstrap": "^16.0.0", - "@ng-select/ng-select": "^12.0.7", + "@angular/cdk": "^18.0.3", + "@angular/common": "~18.0.3", + "@angular/compiler": "~18.0.3", + "@angular/core": "~18.0.3", + "@angular/forms": "~18.0.3", + "@angular/localize": "~18.0.3", + "@angular/platform-browser": "~18.0.3", + "@angular/platform-browser-dynamic": "~18.0.3", + "@angular/router": "~18.0.3", + "@ng-bootstrap/ng-bootstrap": "^17.0.0", + "@ng-select/ng-select": "^13.2.0", "@ngneat/dirty-check-forms": "^3.0.3", "@popperjs/core": "^2.11.8", "bootstrap": "^5.3.3", @@ -28,35 +28,37 @@ "ng2-pdf-viewer": "^10.2.2", "ngx-bootstrap-icons": "^1.9.3", "ngx-color": "^9.0.0", - "ngx-cookie-service": "^17.1.0", + "ngx-cookie-service": "^18.0.0", "ngx-file-drop": "^16.0.0", - "ngx-filesize": "^3.0.3", - "ngx-ui-tour-ng-bootstrap": "^14.0.3", + "ngx-ui-tour-ng-bootstrap": "^15.0.0", "rxjs": "^7.8.1", "tslib": "^2.6.2", "uuid": "^9.0.1", "zone.js": "^0.14.4" }, "devDependencies": { - "@angular-builders/jest": "17.0.3", - "@angular-devkit/build-angular": "~17.3.7", - "@angular-eslint/builder": "17.4.1", - "@angular-eslint/eslint-plugin": "17.4.1", - "@angular-eslint/eslint-plugin-template": "17.4.1", - "@angular-eslint/schematics": "17.4.1", - "@angular-eslint/template-parser": "17.4.1", - "@angular/cli": "~17.3.7", - "@angular/compiler-cli": "~17.3.2", + "@angular-builders/jest": "^18.0.0-beta.3", + "@angular-devkit/build-angular": "^18.0.4", + "@angular-devkit/core": "^18.0.4", + "@angular-devkit/schematics": "^18.0.4", + "@angular-eslint/builder": "18.0.1", + "@angular-eslint/eslint-plugin": "18.0.1", + "@angular-eslint/eslint-plugin-template": "18.0.1", + "@angular-eslint/schematics": "18.0.1", + "@angular-eslint/template-parser": "18.0.1", + "@angular/cli": "~18.0.4", + "@angular/compiler-cli": "~18.0.3", "@playwright/test": "^1.42.1", "@types/jest": "^29.5.12", "@types/node": "^20.12.2", "@typescript-eslint/eslint-plugin": "^7.4.0", "@typescript-eslint/parser": "^7.4.0", + "@typescript-eslint/utils": "^7.13.0", "concurrently": "^8.2.2", "eslint": "^8.57.0", "jest": "29.7.0", "jest-environment-jsdom": "^29.7.0", - "jest-preset-angular": "^14.1.0", + "jest-preset-angular": "^14.0.0", "jest-websocket-mock": "^2.5.0", "patch-package": "^8.0.0", "ts-node": "~10.9.1", @@ -86,12 +88,12 @@ } }, "node_modules/@angular-builders/common": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@angular-builders/common/-/common-1.0.2.tgz", - "integrity": "sha512-lUusRq6jN1It5LcUTLS6Q+AYAYGTo/EEN8hV0M6Ek9qXzweAouJaSEnwv7p04/pD7yJTl0YOCbN79u+wGm3x4g==", + "version": "2.0.0-beta.1", + "resolved": "https://registry.npmjs.org/@angular-builders/common/-/common-2.0.0-beta.1.tgz", + "integrity": "sha512-pP1CHmmYHrh+sd4I+7sQgre9HQiuf3nJE8mrIzgEbt6PjS8S2u+6vVqNDGYuBS+0sy3qeC8rvcfEnupsqOhZjg==", "dev": true, "dependencies": { - "@angular-devkit/core": "^17.1.0", + "@angular-devkit/core": "^18.0.0", "ts-node": "^10.0.0", "tsconfig-paths": "^4.1.0" }, @@ -100,163 +102,136 @@ } }, "node_modules/@angular-builders/jest": { - "version": "17.0.3", - "resolved": "https://registry.npmjs.org/@angular-builders/jest/-/jest-17.0.3.tgz", - "integrity": "sha512-LW4s8t+NLnWR7Aud+EZup8dOBfQF8rfOIncsarDtP/48rz/Ucnzvum7xEt/NYAlZ6y/Dpk7wO6SlqAsaOPf8mA==", + "version": "18.0.0-beta.3", + "resolved": "https://registry.npmjs.org/@angular-builders/jest/-/jest-18.0.0-beta.3.tgz", + "integrity": "sha512-J2WyUR7jMni5Ta0xBp26eqI89mjbKJPzA6yL4jtbTAnGvoytRahwHi2usq9al+JL1paD0bLRG2Vu8/xhHpou8A==", "dev": true, "dependencies": { - "@angular-builders/common": "1.0.2", - "@angular-devkit/architect": ">=0.1700.0 < 0.1800.0", - "@angular-devkit/core": "^17.0.0", - "jest-preset-angular": "14.0.3", + "@angular-builders/common": "2.0.0-beta.1", + "@angular-devkit/architect": ">=0.1800.0 < 0.1900.0", + "@angular-devkit/core": "^18.0.0", + "jest-preset-angular": "14.1.0", "lodash": "^4.17.15" }, "engines": { "node": "^14.20.0 || ^16.13.0 || >=18.10.0" }, "peerDependencies": { - "@angular-devkit/build-angular": "^17.0.0", - "@angular/compiler-cli": "^17.0.0", - "@angular/core": "^17.0.0", - "@angular/platform-browser-dynamic": "^17.0.0", + "@angular-devkit/build-angular": "^18.0.0", + "@angular/compiler-cli": "^18.0.0", + "@angular/core": "^18.0.0", + "@angular/platform-browser-dynamic": "^18.0.0", "jest": ">=29" } }, - "node_modules/@angular-builders/jest/node_modules/jest-preset-angular": { - "version": "14.0.3", - "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-14.0.3.tgz", - "integrity": "sha512-usgBL7x0rXMnMSx8iEFeOozj50W6fp+YAmQcQBUdAXhN+PAXRy4UXL6I/rfcAOU09rnnq7RKsLsmhpp/fFEuag==", - "dev": true, - "dependencies": { - "bs-logger": "^0.2.6", - "esbuild-wasm": ">=0.15.13", - "jest-environment-jsdom": "^29.0.0", - "jest-util": "^29.0.0", - "pretty-format": "^29.0.0", - "ts-jest": "^29.0.0" - }, - "engines": { - "node": "^14.15.0 || >=16.10.0" - }, - "optionalDependencies": { - "esbuild": ">=0.15.13" - }, - "peerDependencies": { - "@angular-devkit/build-angular": ">=15.0.0 <18.0.0", - "@angular/compiler-cli": ">=15.0.0 <18.0.0", - "@angular/core": ">=15.0.0 <18.0.0", - "@angular/platform-browser-dynamic": ">=15.0.0 <18.0.0", - "jest": "^29.0.0", - "typescript": ">=4.8" - } - }, "node_modules/@angular-devkit/architect": { - "version": "0.1703.7", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1703.7.tgz", - "integrity": "sha512-SwXbdsZqEE3JtvujCLChAii+FA20d1931VDjDYffrGWdQEViTBAr4NKtDr/kOv8KkgiL3fhGibPnRNUHTeAMtg==", + "version": "0.1800.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1800.4.tgz", + "integrity": "sha512-82TKhYnSO8aGIBo5TxPtyUQnZFcbV+qB2bIIYOAKsJgxAVxLeFD6QA6gTmHOZPXw5pBEPUO/+PUwq+Uk5xesgw==", "dev": true, "dependencies": { - "@angular-devkit/core": "17.3.7", + "@angular-devkit/core": "18.0.4", "rxjs": "7.8.1" }, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@angular-devkit/build-angular": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-17.3.7.tgz", - "integrity": "sha512-AsV80kiFMIPIhm3uzJgOHDj4u6JteUkZedPTKAFFFJC7CTat1luW5qx306vfF7wj62aMvUl5g9HFWaeLghTQGA==", + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-18.0.4.tgz", + "integrity": "sha512-lFu1NDEUPIUxY+CmZJ3JspqVZDesrvdae5RbqQXCl87RfSy+ZDIa7rOtQxyBQtt2BuQIB9pWQSzCMii5kTHd6w==", "dev": true, "dependencies": { "@ampproject/remapping": "2.3.0", - "@angular-devkit/architect": "0.1703.7", - "@angular-devkit/build-webpack": "0.1703.7", - "@angular-devkit/core": "17.3.7", - "@babel/core": "7.24.0", - "@babel/generator": "7.23.6", + "@angular-devkit/architect": "0.1800.4", + "@angular-devkit/build-webpack": "0.1800.4", + "@angular-devkit/core": "18.0.4", + "@angular/build": "18.0.4", + "@babel/core": "7.24.5", + "@babel/generator": "7.24.5", "@babel/helper-annotate-as-pure": "7.22.5", - "@babel/helper-split-export-declaration": "7.22.6", - "@babel/plugin-transform-async-generator-functions": "7.23.9", - "@babel/plugin-transform-async-to-generator": "7.23.3", - "@babel/plugin-transform-runtime": "7.24.0", - "@babel/preset-env": "7.24.0", - "@babel/runtime": "7.24.0", + "@babel/helper-split-export-declaration": "7.24.5", + "@babel/plugin-transform-async-generator-functions": "7.24.3", + "@babel/plugin-transform-async-to-generator": "7.24.1", + "@babel/plugin-transform-runtime": "7.24.3", + "@babel/preset-env": "7.24.5", + "@babel/runtime": "7.24.5", "@discoveryjs/json-ext": "0.5.7", - "@ngtools/webpack": "17.3.7", + "@ngtools/webpack": "18.0.4", "@vitejs/plugin-basic-ssl": "1.1.0", "ansi-colors": "4.1.3", - "autoprefixer": "10.4.18", + "autoprefixer": "10.4.19", "babel-loader": "9.1.3", "babel-plugin-istanbul": "6.1.1", "browserslist": "^4.21.5", "copy-webpack-plugin": "11.0.0", "critters": "0.0.22", - "css-loader": "6.10.0", - "esbuild-wasm": "0.20.1", + "css-loader": "7.1.1", + "esbuild-wasm": "0.21.3", "fast-glob": "3.3.2", - "http-proxy-middleware": "2.0.6", + "http-proxy-middleware": "3.0.0", "https-proxy-agent": "7.0.4", - "inquirer": "9.2.15", + "inquirer": "9.2.22", "jsonc-parser": "3.2.1", "karma-source-map-support": "1.4.0", "less": "4.2.0", - "less-loader": "11.1.0", + "less-loader": "12.2.0", "license-webpack-plugin": "4.0.2", "loader-utils": "3.2.1", - "magic-string": "0.30.8", - "mini-css-extract-plugin": "2.8.1", + "magic-string": "0.30.10", + "mini-css-extract-plugin": "2.9.0", "mrmime": "2.0.0", "open": "8.4.2", "ora": "5.4.1", "parse5-html-rewriting-stream": "7.0.0", - "picomatch": "4.0.1", - "piscina": "4.4.0", - "postcss": "8.4.35", + "picomatch": "4.0.2", + "piscina": "4.5.0", + "postcss": "8.4.38", "postcss-loader": "8.1.1", "resolve-url-loader": "5.0.0", "rxjs": "7.8.1", - "sass": "1.71.1", - "sass-loader": "14.1.1", - "semver": "7.6.0", + "sass": "1.77.2", + "sass-loader": "14.2.1", + "semver": "7.6.2", "source-map-loader": "5.0.0", "source-map-support": "0.5.21", - "terser": "5.29.1", + "terser": "5.31.0", "tree-kill": "1.2.2", "tslib": "2.6.2", - "undici": "6.11.1", - "vite": "5.1.7", - "watchpack": "2.4.0", - "webpack": "5.90.3", - "webpack-dev-middleware": "6.1.2", - "webpack-dev-server": "4.15.1", + "undici": "6.18.0", + "vite": "5.2.11", + "watchpack": "2.4.1", + "webpack": "5.91.0", + "webpack-dev-middleware": "7.2.1", + "webpack-dev-server": "5.0.4", "webpack-merge": "5.10.0", "webpack-subresource-integrity": "5.1.0" }, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, "optionalDependencies": { - "esbuild": "0.20.1" + "esbuild": "0.21.3" }, "peerDependencies": { - "@angular/compiler-cli": "^17.0.0", - "@angular/localize": "^17.0.0", - "@angular/platform-server": "^17.0.0", - "@angular/service-worker": "^17.0.0", + "@angular/compiler-cli": "^18.0.0", + "@angular/localize": "^18.0.0", + "@angular/platform-server": "^18.0.0", + "@angular/service-worker": "^18.0.0", "@web/test-runner": "^0.18.0", "browser-sync": "^3.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "karma": "^6.3.0", - "ng-packagr": "^17.0.0", + "ng-packagr": "^18.0.0", "protractor": "^7.0.0", "tailwindcss": "^2.0.0 || ^3.0.0", - "typescript": ">=5.2 <5.5" + "typescript": ">=5.4 <5.5" }, "peerDependenciesMeta": { "@angular/localize": { @@ -294,22 +269,90 @@ } } }, + "node_modules/@angular-devkit/build-angular/node_modules/@angular/build": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@angular/build/-/build-18.0.4.tgz", + "integrity": "sha512-70HQQnbCOXFT5F3ROyWNNfS9A63Fzts5ANJKJY1MJLrn+dgNEG7jdIWjTtvohL3RZz97rlzSq3qRZnfxqf1lsQ==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "2.3.0", + "@angular-devkit/architect": "0.1800.4", + "@babel/core": "7.24.5", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-split-export-declaration": "7.24.5", + "@vitejs/plugin-basic-ssl": "1.1.0", + "ansi-colors": "4.1.3", + "browserslist": "^4.23.0", + "critters": "0.0.22", + "esbuild": "0.21.3", + "fast-glob": "3.3.2", + "https-proxy-agent": "7.0.4", + "inquirer": "9.2.22", + "lmdb": "3.0.8", + "magic-string": "0.30.10", + "mrmime": "2.0.0", + "ora": "5.4.1", + "parse5-html-rewriting-stream": "7.0.0", + "picomatch": "4.0.2", + "piscina": "4.5.0", + "sass": "1.77.2", + "semver": "7.6.2", + "undici": "6.18.0", + "vite": "5.2.11", + "watchpack": "2.4.1" + }, + "engines": { + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "@angular/compiler-cli": "^18.0.0", + "@angular/localize": "^18.0.0", + "@angular/platform-server": "^18.0.0", + "@angular/service-worker": "^18.0.0", + "less": "^4.2.0", + "postcss": "^8.4.0", + "tailwindcss": "^2.0.0 || ^3.0.0", + "typescript": ">=5.4 <5.5" + }, + "peerDependenciesMeta": { + "@angular/localize": { + "optional": true + }, + "@angular/platform-server": { + "optional": true + }, + "@angular/service-worker": { + "optional": true + }, + "less": { + "optional": true + }, + "postcss": { + "optional": true + }, + "tailwindcss": { + "optional": true + } + } + }, "node_modules/@angular-devkit/build-angular/node_modules/@babel/core": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.0.tgz", - "integrity": "sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", + "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", + "@babel/code-frame": "^7.24.2", + "@babel/generator": "^7.24.5", "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.24.0", - "@babel/parser": "^7.24.0", + "@babel/helper-module-transforms": "^7.24.5", + "@babel/helpers": "^7.24.5", + "@babel/parser": "^7.24.5", "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.0", - "@babel/types": "^7.24.0", + "@babel/traverse": "^7.24.5", + "@babel/types": "^7.24.5", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -334,9 +377,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/aix-ppc64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.1.tgz", - "integrity": "sha512-m55cpeupQ2DbuRGQMMZDzbv9J9PgVelPjlcmM5kxHnrBdBx6REaEd7LamYV7Dm8N7rCyR/XwU6rVP8ploKtIkA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.3.tgz", + "integrity": "sha512-yTgnwQpFVYfvvo4SvRFB0SwrW8YjOxEoT7wfMT7Ol5v7v5LDNvSGo67aExmxOb87nQNeWPVvaGBNfQ7BXcrZ9w==", "cpu": [ "ppc64" ], @@ -350,9 +393,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/android-arm": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.1.tgz", - "integrity": "sha512-4j0+G27/2ZXGWR5okcJi7pQYhmkVgb4D7UKwxcqrjhvp5TKWx3cUjgB1CGj1mfdmJBQ9VnUGgUhign+FPF2Zgw==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.3.tgz", + "integrity": "sha512-bviJOLMgurLJtF1/mAoJLxDZDL6oU5/ztMHnJQRejbJrSc9FFu0QoUoFhvi6qSKJEw9y5oGyvr9fuDtzJ30rNQ==", "cpu": [ "arm" ], @@ -366,9 +409,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/android-arm64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.1.tgz", - "integrity": "sha512-hCnXNF0HM6AjowP+Zou0ZJMWWa1VkD77BXe959zERgGJBBxB+sV+J9f/rcjeg2c5bsukD/n17RKWXGFCO5dD5A==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.3.tgz", + "integrity": "sha512-c+ty9necz3zB1Y+d/N+mC6KVVkGUUOcm4ZmT5i/Fk5arOaY3i6CA3P5wo/7+XzV8cb4GrI/Zjp8NuOQ9Lfsosw==", "cpu": [ "arm64" ], @@ -382,9 +425,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/android-x64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.1.tgz", - "integrity": "sha512-MSfZMBoAsnhpS+2yMFYIQUPs8Z19ajwfuaSZx+tSl09xrHZCjbeXXMsUF/0oq7ojxYEpsSo4c0SfjxOYXRbpaA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.3.tgz", + "integrity": "sha512-JReHfYCRK3FVX4Ra+y5EBH1b9e16TV2OxrPAvzMsGeES0X2Ndm9ImQRI4Ket757vhc5XBOuGperw63upesclRw==", "cpu": [ "x64" ], @@ -398,9 +441,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/darwin-arm64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.1.tgz", - "integrity": "sha512-Ylk6rzgMD8klUklGPzS414UQLa5NPXZD5tf8JmQU8GQrj6BrFA/Ic9tb2zRe1kOZyCbGl+e8VMbDRazCEBqPvA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.3.tgz", + "integrity": "sha512-U3fuQ0xNiAkXOmQ6w5dKpEvXQRSpHOnbw7gEfHCRXPeTKW9sBzVck6C5Yneb8LfJm0l6le4NQfkNPnWMSlTFUQ==", "cpu": [ "arm64" ], @@ -414,9 +457,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/darwin-x64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.1.tgz", - "integrity": "sha512-pFIfj7U2w5sMp52wTY1XVOdoxw+GDwy9FsK3OFz4BpMAjvZVs0dT1VXs8aQm22nhwoIWUmIRaE+4xow8xfIDZA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.3.tgz", + "integrity": "sha512-3m1CEB7F07s19wmaMNI2KANLcnaqryJxO1fXHUV5j1rWn+wMxdUYoPyO2TnAbfRZdi7ADRwJClmOwgT13qlP3Q==", "cpu": [ "x64" ], @@ -430,9 +473,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/freebsd-arm64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.1.tgz", - "integrity": "sha512-UyW1WZvHDuM4xDz0jWun4qtQFauNdXjXOtIy7SYdf7pbxSWWVlqhnR/T2TpX6LX5NI62spt0a3ldIIEkPM6RHw==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.3.tgz", + "integrity": "sha512-fsNAAl5pU6wmKHq91cHWQT0Fz0vtyE1JauMzKotrwqIKAswwP5cpHUCxZNSTuA/JlqtScq20/5KZ+TxQdovU/g==", "cpu": [ "arm64" ], @@ -446,9 +489,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/freebsd-x64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.1.tgz", - "integrity": "sha512-itPwCw5C+Jh/c624vcDd9kRCCZVpzpQn8dtwoYIt2TJF3S9xJLiRohnnNrKwREvcZYx0n8sCSbvGH349XkcQeg==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.3.tgz", + "integrity": "sha512-tci+UJ4zP5EGF4rp8XlZIdq1q1a/1h9XuronfxTMCNBslpCtmk97Q/5qqy1Mu4zIc0yswN/yP/BLX+NTUC1bXA==", "cpu": [ "x64" ], @@ -462,9 +505,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/linux-arm": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.1.tgz", - "integrity": "sha512-LojC28v3+IhIbfQ+Vu4Ut5n3wKcgTu6POKIHN9Wpt0HnfgUGlBuyDDQR4jWZUZFyYLiz4RBBBmfU6sNfn6RhLw==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.3.tgz", + "integrity": "sha512-f6kz2QpSuyHHg01cDawj0vkyMwuIvN62UAguQfnNVzbge2uWLhA7TCXOn83DT0ZvyJmBI943MItgTovUob36SQ==", "cpu": [ "arm" ], @@ -478,9 +521,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/linux-arm64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.1.tgz", - "integrity": "sha512-cX8WdlF6Cnvw/DO9/X7XLH2J6CkBnz7Twjpk56cshk9sjYVcuh4sXQBy5bmTwzBjNVZze2yaV1vtcJS04LbN8w==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.3.tgz", + "integrity": "sha512-vvG6R5g5ieB4eCJBQevyDMb31LMHthLpXTc2IGkFnPWS/GzIFDnaYFp558O+XybTmYrVjxnryru7QRleJvmZ6Q==", "cpu": [ "arm64" ], @@ -494,9 +537,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/linux-ia32": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.1.tgz", - "integrity": "sha512-4H/sQCy1mnnGkUt/xszaLlYJVTz3W9ep52xEefGtd6yXDQbz/5fZE5dFLUgsPdbUOQANcVUa5iO6g3nyy5BJiw==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.3.tgz", + "integrity": "sha512-HjCWhH7K96Na+66TacDLJmOI9R8iDWDDiqe17C7znGvvE4sW1ECt9ly0AJ3dJH62jHyVqW9xpxZEU1jKdt+29A==", "cpu": [ "ia32" ], @@ -510,9 +553,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/linux-loong64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.1.tgz", - "integrity": "sha512-c0jgtB+sRHCciVXlyjDcWb2FUuzlGVRwGXgI+3WqKOIuoo8AmZAddzeOHeYLtD+dmtHw3B4Xo9wAUdjlfW5yYA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.3.tgz", + "integrity": "sha512-BGpimEccmHBZRcAhdlRIxMp7x9PyJxUtj7apL2IuoG9VxvU/l/v1z015nFs7Si7tXUwEsvjc1rOJdZCn4QTU+Q==", "cpu": [ "loong64" ], @@ -526,9 +569,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/linux-mips64el": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.1.tgz", - "integrity": "sha512-TgFyCfIxSujyuqdZKDZ3yTwWiGv+KnlOeXXitCQ+trDODJ+ZtGOzLkSWngynP0HZnTsDyBbPy7GWVXWaEl6lhA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.3.tgz", + "integrity": "sha512-5rMOWkp7FQGtAH3QJddP4w3s47iT20hwftqdm7b+loe95o8JU8ro3qZbhgMRy0VuFU0DizymF1pBKkn3YHWtsw==", "cpu": [ "mips64el" ], @@ -542,9 +585,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/linux-ppc64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.1.tgz", - "integrity": "sha512-b+yuD1IUeL+Y93PmFZDZFIElwbmFfIKLKlYI8M6tRyzE6u7oEP7onGk0vZRh8wfVGC2dZoy0EqX1V8qok4qHaw==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.3.tgz", + "integrity": "sha512-h0zj1ldel89V5sjPLo5H1SyMzp4VrgN1tPkN29TmjvO1/r0MuMRwJxL8QY05SmfsZRs6TF0c/IDH3u7XYYmbAg==", "cpu": [ "ppc64" ], @@ -558,9 +601,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/linux-riscv64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.1.tgz", - "integrity": "sha512-wpDlpE0oRKZwX+GfomcALcouqjjV8MIX8DyTrxfyCfXxoKQSDm45CZr9fanJ4F6ckD4yDEPT98SrjvLwIqUCgg==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.3.tgz", + "integrity": "sha512-dkAKcTsTJ+CRX6bnO17qDJbLoW37npd5gSNtSzjYQr0svghLJYGYB0NF1SNcU1vDcjXLYS5pO4qOW4YbFama4A==", "cpu": [ "riscv64" ], @@ -574,9 +617,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/linux-s390x": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.1.tgz", - "integrity": "sha512-5BepC2Au80EohQ2dBpyTquqGCES7++p7G+7lXe1bAIvMdXm4YYcEfZtQrP4gaoZ96Wv1Ute61CEHFU7h4FMueQ==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.3.tgz", + "integrity": "sha512-vnD1YUkovEdnZWEuMmy2X2JmzsHQqPpZElXx6dxENcIwTu+Cu5ERax6+Ke1QsE814Zf3c6rxCfwQdCTQ7tPuXA==", "cpu": [ "s390x" ], @@ -590,9 +633,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/linux-x64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.1.tgz", - "integrity": "sha512-5gRPk7pKuaIB+tmH+yKd2aQTRpqlf1E4f/mC+tawIm/CGJemZcHZpp2ic8oD83nKgUPMEd0fNanrnFljiruuyA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.3.tgz", + "integrity": "sha512-IOXOIm9WaK7plL2gMhsWJd+l2bfrhfilv0uPTptoRoSb2p09RghhQQp9YY6ZJhk/kqmeRt6siRdMSLLwzuT0KQ==", "cpu": [ "x64" ], @@ -606,9 +649,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/netbsd-x64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.1.tgz", - "integrity": "sha512-4fL68JdrLV2nVW2AaWZBv3XEm3Ae3NZn/7qy2KGAt3dexAgSVT+Hc97JKSZnqezgMlv9x6KV0ZkZY7UO5cNLCg==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.3.tgz", + "integrity": "sha512-uTgCwsvQ5+vCQnqM//EfDSuomo2LhdWhFPS8VL8xKf+PKTCrcT/2kPPoWMTs22aB63MLdGMJiE3f1PHvCDmUOw==", "cpu": [ "x64" ], @@ -622,9 +665,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/openbsd-x64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.1.tgz", - "integrity": "sha512-GhRuXlvRE+twf2ES+8REbeCb/zeikNqwD3+6S5y5/x+DYbAQUNl0HNBs4RQJqrechS4v4MruEr8ZtAin/hK5iw==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.3.tgz", + "integrity": "sha512-vNAkR17Ub2MgEud2Wag/OE4HTSI6zlb291UYzHez/psiKarp0J8PKGDnAhMBcHFoOHMXHfExzmjMojJNbAStrQ==", "cpu": [ "x64" ], @@ -638,9 +681,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/sunos-x64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.1.tgz", - "integrity": "sha512-ZnWEyCM0G1Ex6JtsygvC3KUUrlDXqOihw8RicRuQAzw+c4f1D66YlPNNV3rkjVW90zXVsHwZYWbJh3v+oQFM9Q==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.3.tgz", + "integrity": "sha512-W8H9jlGiSBomkgmouaRoTXo49j4w4Kfbl6I1bIdO/vT0+0u4f20ko3ELzV3hPI6XV6JNBVX+8BC+ajHkvffIJA==", "cpu": [ "x64" ], @@ -654,9 +697,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/win32-arm64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.1.tgz", - "integrity": "sha512-QZ6gXue0vVQY2Oon9WyLFCdSuYbXSoxaZrPuJ4c20j6ICedfsDilNPYfHLlMH7vGfU5DQR0czHLmJvH4Nzis/A==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.3.tgz", + "integrity": "sha512-EjEomwyLSCg8Ag3LDILIqYCZAq/y3diJ04PnqGRgq8/4O3VNlXyMd54j/saShaN4h5o5mivOjAzmU6C3X4v0xw==", "cpu": [ "arm64" ], @@ -670,9 +713,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/win32-ia32": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.1.tgz", - "integrity": "sha512-HzcJa1NcSWTAU0MJIxOho8JftNp9YALui3o+Ny7hCh0v5f90nprly1U3Sj1Ldj/CvKKdvvFsCRvDkpsEMp4DNw==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.3.tgz", + "integrity": "sha512-WGiE/GgbsEwR33++5rzjiYsKyHywE8QSZPF7Rfx9EBfK3Qn3xyR6IjyCr5Uk38Kg8fG4/2phN7sXp4NPWd3fcw==", "cpu": [ "ia32" ], @@ -686,9 +729,9 @@ } }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/win32-x64": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.1.tgz", - "integrity": "sha512-0MBh53o6XtI6ctDnRMeQ+xoCN8kD2qI1rY1KgF/xdWQwoFeKou7puvDfV8/Wv4Ctx2rRpET/gGdz3YlNtNACSA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.3.tgz", + "integrity": "sha512-xRxC0jaJWDLYvcUvjQmHCJSfMrgmUuvsoXgDeU/wTorQ1ngDdUBuFtgY3W1Pc5sprGAvZBtWdJX7RPg/iZZUqA==", "cpu": [ "x64" ], @@ -701,6 +744,22 @@ "node": ">=12" } }, + "node_modules/@angular-devkit/build-angular/node_modules/@ngtools/webpack": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-18.0.4.tgz", + "integrity": "sha512-eWQkAuHEnLme01Ey4Z0FoG6upJHYhnJfsCTBnyEB2LTfdyBUk+PC0gwPXInK8oltWjFfiMnCwxrUQvQsvPW7Hg==", + "dev": true, + "engines": { + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "@angular/compiler-cli": "^18.0.0", + "typescript": ">=5.4 <5.5", + "webpack": "^5.54.0" + } + }, "node_modules/@angular-devkit/build-angular/node_modules/convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", @@ -708,12 +767,11 @@ "dev": true }, "node_modules/@angular-devkit/build-angular/node_modules/esbuild": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.1.tgz", - "integrity": "sha512-OJwEgrpWm/PCMsLVWXKqvcjme3bHNpOgN7Tb6cQnR5n0TPbQx1/Xrn7rqM+wn17bYeT6MGB5sn1Bh5YiGi70nA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.3.tgz", + "integrity": "sha512-Kgq0/ZsAPzKrbOjCQcjoSmPoWhlcVnGAUo7jvaLHoxW1Drto0KGkR1xBNg2Cp43b9ImvxmPEJZ9xkfcnqPsfBw==", "dev": true, "hasInstallScript": true, - "optional": true, "bin": { "esbuild": "bin/esbuild" }, @@ -721,71 +779,86 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/aix-ppc64": "0.20.1", - "@esbuild/android-arm": "0.20.1", - "@esbuild/android-arm64": "0.20.1", - "@esbuild/android-x64": "0.20.1", - "@esbuild/darwin-arm64": "0.20.1", - "@esbuild/darwin-x64": "0.20.1", - "@esbuild/freebsd-arm64": "0.20.1", - "@esbuild/freebsd-x64": "0.20.1", - "@esbuild/linux-arm": "0.20.1", - "@esbuild/linux-arm64": "0.20.1", - "@esbuild/linux-ia32": "0.20.1", - "@esbuild/linux-loong64": "0.20.1", - "@esbuild/linux-mips64el": "0.20.1", - "@esbuild/linux-ppc64": "0.20.1", - "@esbuild/linux-riscv64": "0.20.1", - "@esbuild/linux-s390x": "0.20.1", - "@esbuild/linux-x64": "0.20.1", - "@esbuild/netbsd-x64": "0.20.1", - "@esbuild/openbsd-x64": "0.20.1", - "@esbuild/sunos-x64": "0.20.1", - "@esbuild/win32-arm64": "0.20.1", - "@esbuild/win32-ia32": "0.20.1", - "@esbuild/win32-x64": "0.20.1" + "@esbuild/aix-ppc64": "0.21.3", + "@esbuild/android-arm": "0.21.3", + "@esbuild/android-arm64": "0.21.3", + "@esbuild/android-x64": "0.21.3", + "@esbuild/darwin-arm64": "0.21.3", + "@esbuild/darwin-x64": "0.21.3", + "@esbuild/freebsd-arm64": "0.21.3", + "@esbuild/freebsd-x64": "0.21.3", + "@esbuild/linux-arm": "0.21.3", + "@esbuild/linux-arm64": "0.21.3", + "@esbuild/linux-ia32": "0.21.3", + "@esbuild/linux-loong64": "0.21.3", + "@esbuild/linux-mips64el": "0.21.3", + "@esbuild/linux-ppc64": "0.21.3", + "@esbuild/linux-riscv64": "0.21.3", + "@esbuild/linux-s390x": "0.21.3", + "@esbuild/linux-x64": "0.21.3", + "@esbuild/netbsd-x64": "0.21.3", + "@esbuild/openbsd-x64": "0.21.3", + "@esbuild/sunos-x64": "0.21.3", + "@esbuild/win32-arm64": "0.21.3", + "@esbuild/win32-ia32": "0.21.3", + "@esbuild/win32-x64": "0.21.3" } }, - "node_modules/@angular-devkit/build-angular/node_modules/jsonc-parser": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", - "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", - "dev": true - }, - "node_modules/@angular-devkit/build-webpack": { - "version": "0.1703.7", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1703.7.tgz", - "integrity": "sha512-gpt2Ia5I1gmdp3hdbtB7tkZTba5qWmKeVhlCYswa/LvbceKmkjedoeNRAoyr1UKM9GeGqt6Xl1B2eHzCH+ykrg==", + "node_modules/@angular-devkit/build-angular/node_modules/magic-string": { + "version": "0.30.10", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", + "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", "dev": true, "dependencies": { - "@angular-devkit/architect": "0.1703.7", + "@jridgewell/sourcemap-codec": "^1.4.15" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@angular-devkit/build-webpack": { + "version": "0.1800.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1800.4.tgz", + "integrity": "sha512-EtWyWH3Hb7Rh8u0Jb4cWJKRxlqiUo4qhHKjU+62E8XplWlajbuld3ltL50a3t8lkZQYYgl7nPt53E5kM/zFVrw==", + "dev": true, + "dependencies": { + "@angular-devkit/architect": "0.1800.4", "rxjs": "7.8.1" }, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, "peerDependencies": { "webpack": "^5.30.0", - "webpack-dev-server": "^4.0.0" + "webpack-dev-server": "^5.0.2" } }, "node_modules/@angular-devkit/core": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-17.3.7.tgz", - "integrity": "sha512-qpZ7BShyqS/Jqld36E7kL02cyb2pjn1Az1p9439SbP8nsvJgYlsyjwYK2Kmcn/Wi+TZGIKxkqxgBBw9vqGgeJw==", + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-18.0.4.tgz", + "integrity": "sha512-8vYvJ5FF2NjFUia00hv8KWakOjOZ+09PbnNqd+lntJBekIg1lHDOF/vNMlVHtU5LiE1aNi9P/69/VXTckPfU9g==", "dev": true, "dependencies": { - "ajv": "8.12.0", - "ajv-formats": "2.1.1", + "ajv": "8.13.0", + "ajv-formats": "3.0.1", "jsonc-parser": "3.2.1", - "picomatch": "4.0.1", + "picomatch": "4.0.2", "rxjs": "7.8.1", "source-map": "0.7.4" }, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, @@ -798,394 +871,160 @@ } } }, - "node_modules/@angular-devkit/core/node_modules/jsonc-parser": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", - "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", - "dev": true - }, - "node_modules/@angular-devkit/schematics": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-17.3.7.tgz", - "integrity": "sha512-d7NKSwstdxYLYmPsbcYO3GOFNfXxXwOyHxSqDa1JNKoSzMdbLj4tvlCpfXw0ThNM7gioMx8aLBaaH1ac+yk06Q==", + "node_modules/@angular-devkit/core/node_modules/ajv": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", "dev": true, "dependencies": { - "@angular-devkit/core": "17.3.7", + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@angular-devkit/core/node_modules/ajv-formats": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz", + "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/@angular-devkit/core/node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@angular-devkit/schematics": { + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-18.0.4.tgz", + "integrity": "sha512-hCHmuu/Z1teOQPx1AMJa/gcK6depk+XgU5dIpEvflC+ApW3hglNe2QKaqajDZ+34s+PKAVWa86M8IOV7o/mHuA==", + "dev": true, + "dependencies": { + "@angular-devkit/core": "18.0.4", "jsonc-parser": "3.2.1", - "magic-string": "0.30.8", + "magic-string": "0.30.10", "ora": "5.4.1", "rxjs": "7.8.1" }, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, - "node_modules/@angular-devkit/schematics/node_modules/jsonc-parser": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", - "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", - "dev": true - }, - "node_modules/@angular-eslint/builder": { - "version": "17.4.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-17.4.1.tgz", - "integrity": "sha512-UVnErsAGXTi8OChkoSxDVVGV2jkFpTaXQT+0fgapSwaOt3Ki7BVwJJoNaX0Zs01c64bjNPZ5ONb/i6nC8QiP9Q==", + "node_modules/@angular-devkit/schematics/node_modules/magic-string": { + "version": "0.30.10", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", + "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", "dev": true, "dependencies": { - "@nx/devkit": "^17.2.8 || ^18.0.0 || ^19.0.0", - "nx": "^17.2.8 || ^18.0.0 || ^19.0.0" + "@jridgewell/sourcemap-codec": "^1.4.15" + } + }, + "node_modules/@angular-eslint/builder": { + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-18.0.1.tgz", + "integrity": "sha512-b/VUeTQznAmGdwP4OyPWyegqSRWub7E8/WXBqojrSFyLkFhpTiHpk/3/5G3LsgTb0zBfyAsqkA0yaadsHu9pjA==", + "dev": true, + "dependencies": { + "@nx/devkit": "^19.0.6", + "nx": "^19.0.6" }, "peerDependencies": { - "eslint": "^7.20.0 || ^8.0.0", + "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular-eslint/bundled-angular-compiler": { - "version": "17.4.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-17.4.1.tgz", - "integrity": "sha512-QKQGspxsyMHRwvzqo+Fj42TS/vmnwOHuWC6EN+5KBx3cuImahqFHQW842zVy9f65jfH2xDnNWJ+NW+Tzcgg+pQ==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-18.0.1.tgz", + "integrity": "sha512-lr4Ysoo28FBOKcJFQUGTMpbWDcak+gyuYvyggp37ERvazE6EDomPFxzEHNqVT9EI9sZ+GDBOoPR+EdFh0ALGNw==", "dev": true }, "node_modules/@angular-eslint/eslint-plugin": { - "version": "17.4.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-17.4.1.tgz", - "integrity": "sha512-05bN1UB4H2CuX7Sw6fz+rMobsa+Bl3g15IYldH08hbJSnVemO8mf86bIjRN2Th79sO9WOiXXimnfIt7KRf8l0Q==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-18.0.1.tgz", + "integrity": "sha512-pS3SYLa9DA+ENklGxEUlcw6/xCxgDk9fgjyaheuSjDxL3TIh1pTa4V2TptODdcPh7XCYXiVmy+e/w79mXlGzOw==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "17.4.1", - "@angular-eslint/utils": "17.4.1", - "@typescript-eslint/utils": "7.8.0" + "@angular-eslint/bundled-angular-compiler": "18.0.1", + "@angular-eslint/utils": "18.0.1" }, "peerDependencies": { - "eslint": "^7.20.0 || ^8.0.0", + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", + "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular-eslint/eslint-plugin-template": { - "version": "17.4.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-17.4.1.tgz", - "integrity": "sha512-oYP7yzOpn63g1Mpwc8F8ERiywaGRhAs27ttI9t+5NXaLrwHSfc/AJleC7jjkB5xu1p88JY1mb4oIYOjeZAhHIg==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-18.0.1.tgz", + "integrity": "sha512-u/eov/CFBb8l35D8dW78Dx5fBLd8FZFibKN9XQknhzXnDMpISuUOMny5g5/wvYYjqLgqEySXMiHKEAxEup7xtA==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "17.4.1", - "@angular-eslint/utils": "17.4.1", - "@typescript-eslint/type-utils": "7.8.0", - "@typescript-eslint/utils": "7.8.0", + "@angular-eslint/bundled-angular-compiler": "18.0.1", + "@angular-eslint/utils": "18.0.1", "aria-query": "5.3.0", "axobject-query": "4.0.0" }, "peerDependencies": { - "eslint": "^7.20.0 || ^8.0.0", + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", + "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, - "node_modules/@angular-eslint/eslint-plugin-template/node_modules/@angular-eslint/utils": { - "version": "17.4.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-17.4.1.tgz", - "integrity": "sha512-ptpWSrN7hfLtbStOB5vlwjh088WRu+sT1XIXCROrX5uXR5sQMu5ZitnoObSe+Of+1lugguPvMvFm/pzTMp3LIg==", - "dev": true, - "dependencies": { - "@angular-eslint/bundled-angular-compiler": "17.4.1", - "@typescript-eslint/utils": "7.8.0" - }, - "peerDependencies": { - "eslint": "^7.20.0 || ^8.0.0", - "typescript": "*" - } - }, - "node_modules/@angular-eslint/eslint-plugin-template/node_modules/@typescript-eslint/scope-manager": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.8.0.tgz", - "integrity": "sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.8.0", - "@typescript-eslint/visitor-keys": "7.8.0" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@angular-eslint/eslint-plugin-template/node_modules/@typescript-eslint/types": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.8.0.tgz", - "integrity": "sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==", - "dev": true, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@angular-eslint/eslint-plugin-template/node_modules/@typescript-eslint/typescript-estree": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.8.0.tgz", - "integrity": "sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.8.0", - "@typescript-eslint/visitor-keys": "7.8.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "minimatch": "^9.0.4", - "semver": "^7.6.0", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@angular-eslint/eslint-plugin-template/node_modules/@typescript-eslint/utils": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.8.0.tgz", - "integrity": "sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.15", - "@types/semver": "^7.5.8", - "@typescript-eslint/scope-manager": "7.8.0", - "@typescript-eslint/types": "7.8.0", - "@typescript-eslint/typescript-estree": "7.8.0", - "semver": "^7.6.0" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.56.0" - } - }, - "node_modules/@angular-eslint/eslint-plugin-template/node_modules/@typescript-eslint/visitor-keys": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.8.0.tgz", - "integrity": "sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.8.0", - "eslint-visitor-keys": "^3.4.3" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@angular-eslint/eslint-plugin-template/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@angular-eslint/eslint-plugin-template/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@angular-eslint/eslint-plugin/node_modules/@angular-eslint/utils": { - "version": "17.4.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-17.4.1.tgz", - "integrity": "sha512-ptpWSrN7hfLtbStOB5vlwjh088WRu+sT1XIXCROrX5uXR5sQMu5ZitnoObSe+Of+1lugguPvMvFm/pzTMp3LIg==", - "dev": true, - "dependencies": { - "@angular-eslint/bundled-angular-compiler": "17.4.1", - "@typescript-eslint/utils": "7.8.0" - }, - "peerDependencies": { - "eslint": "^7.20.0 || ^8.0.0", - "typescript": "*" - } - }, - "node_modules/@angular-eslint/eslint-plugin/node_modules/@typescript-eslint/scope-manager": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.8.0.tgz", - "integrity": "sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.8.0", - "@typescript-eslint/visitor-keys": "7.8.0" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@angular-eslint/eslint-plugin/node_modules/@typescript-eslint/types": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.8.0.tgz", - "integrity": "sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==", - "dev": true, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@angular-eslint/eslint-plugin/node_modules/@typescript-eslint/typescript-estree": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.8.0.tgz", - "integrity": "sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.8.0", - "@typescript-eslint/visitor-keys": "7.8.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "minimatch": "^9.0.4", - "semver": "^7.6.0", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@angular-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.8.0.tgz", - "integrity": "sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.15", - "@types/semver": "^7.5.8", - "@typescript-eslint/scope-manager": "7.8.0", - "@typescript-eslint/types": "7.8.0", - "@typescript-eslint/typescript-estree": "7.8.0", - "semver": "^7.6.0" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.56.0" - } - }, - "node_modules/@angular-eslint/eslint-plugin/node_modules/@typescript-eslint/visitor-keys": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.8.0.tgz", - "integrity": "sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.8.0", - "eslint-visitor-keys": "^3.4.3" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@angular-eslint/eslint-plugin/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@angular-eslint/eslint-plugin/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/@angular-eslint/schematics": { - "version": "17.4.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-17.4.1.tgz", - "integrity": "sha512-CYpsGc0B/ZGO/RKYlyfeAi1pOvFmVs4pvoHU13uOdhdFJ6nAUTujHiBaULloIrUmuIhGW9S0g6w4ecD6ZP680w==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-18.0.1.tgz", + "integrity": "sha512-G9PgFrjyvBaQR8enMnP2scnQDLk99GMpifh3voiOmdEkxaQHRWqhCWncV7GATwpXDzeyj9J9XT9iHGJjnZTpJQ==", "dev": true, "dependencies": { - "@angular-eslint/eslint-plugin": "17.4.1", - "@angular-eslint/eslint-plugin-template": "17.4.1", - "@nx/devkit": "^17.2.8 || ^18.0.0 || ^19.0.0", + "@angular-eslint/eslint-plugin": "18.0.1", + "@angular-eslint/eslint-plugin-template": "18.0.1", + "@nx/devkit": "^19.0.6", "ignore": "5.3.1", - "nx": "^17.2.8 || ^18.0.0 || ^19.0.0", - "strip-json-comments": "3.1.1", - "tmp": "0.2.3" + "nx": "^19.0.6", + "semver": "7.6.2", + "strip-json-comments": "3.1.1" }, "peerDependencies": { - "@angular/cli": ">= 17.0.0 < 18.0.0" + "@angular-devkit/core": ">= 18.0.0 < 19.0.0", + "@angular-devkit/schematics": ">= 18.0.0 < 19.0.0" } }, "node_modules/@angular-eslint/template-parser": { - "version": "17.4.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-17.4.1.tgz", - "integrity": "sha512-fJQpwQXexgs7Z3yYpQAfuAkFB2Y5H8SSlo+eAPPafOOPpPSIm/yP4dQ2e06tE8zWB5yjYnVBMJnUKSmG5GJSDw==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-18.0.1.tgz", + "integrity": "sha512-22fKzkWo9Ts8aY/WHL1A6seS2tpltgRRXVfnZnnqvQRyRiuPnx1FC0ly7+QPZkThh8vdLwxU+BvtLq9Uiqh9OQ==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "17.4.1", + "@angular-eslint/bundled-angular-compiler": "18.0.1", "eslint-scope": "^8.0.0" }, "peerDependencies": { - "eslint": "^7.20.0 || ^8.0.0", + "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, @@ -1205,10 +1044,24 @@ "url": "https://opencollective.com/eslint" } }, + "node_modules/@angular-eslint/utils": { + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-18.0.1.tgz", + "integrity": "sha512-Q9lCySqg+9h2cz08+SoWj48cY1i04tL1k3bsQJmF2TsylAw2mSsNGX2X3h9WkdxY7sUoY0mP7MVW1iU54Gobcg==", + "dev": true, + "dependencies": { + "@angular-eslint/bundled-angular-compiler": "18.0.1" + }, + "peerDependencies": { + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": "*" + } + }, "node_modules/@angular/cdk": { - "version": "17.3.10", - "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-17.3.10.tgz", - "integrity": "sha512-b1qktT2c1TTTe5nTji/kFAVW92fULK0YhYAvJ+BjZTPKu2FniZNe8o4qqQ0pUuvtMu+ZQxp/QqFYoidIVCjScg==", + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-18.0.3.tgz", + "integrity": "sha512-F6kXAoIWUbvhvbSGnMxrKJZsI7rhGKDXVFFf9m+ZQAbqboSyDbbszux7Em4CEh27LaXYNFltUcKdCQ3hdp7Kig==", "dependencies": { "tslib": "^2.3.0" }, @@ -1216,33 +1069,32 @@ "parse5": "^7.1.2" }, "peerDependencies": { - "@angular/common": "^17.0.0 || ^18.0.0", - "@angular/core": "^17.0.0 || ^18.0.0", + "@angular/common": "^18.0.0 || ^19.0.0", + "@angular/core": "^18.0.0 || ^19.0.0", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/cli": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-17.3.7.tgz", - "integrity": "sha512-JgCav3sdRCoJHwLXxmF/EMzArYjwbqB+AGUW/xIR98oZET8QxCB985bOFUAm02SkAEUVcMJvjxec+WCaa60m/A==", + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-18.0.4.tgz", + "integrity": "sha512-i7DLVIc4HN0CFZZKbEeVeQSADRG1Dt2CwXh/wTUzglRLu/tE7Q+WMrqJ2+lGTT2edZp2KKysM4Gxp+ATAzP8AQ==", "dev": true, "dependencies": { - "@angular-devkit/architect": "0.1703.7", - "@angular-devkit/core": "17.3.7", - "@angular-devkit/schematics": "17.3.7", - "@schematics/angular": "17.3.7", + "@angular-devkit/architect": "0.1800.4", + "@angular-devkit/core": "18.0.4", + "@angular-devkit/schematics": "18.0.4", + "@schematics/angular": "18.0.4", "@yarnpkg/lockfile": "1.1.0", "ansi-colors": "4.1.3", "ini": "4.1.2", - "inquirer": "9.2.15", + "inquirer": "9.2.22", "jsonc-parser": "3.2.1", - "npm-package-arg": "11.0.1", - "npm-pick-manifest": "9.0.0", - "open": "8.4.2", + "npm-package-arg": "11.0.2", + "npm-pick-manifest": "9.0.1", "ora": "5.4.1", - "pacote": "17.0.6", + "pacote": "18.0.6", "resolve": "1.22.8", - "semver": "7.6.0", + "semver": "7.6.2", "symbol-observable": "4.0.0", "yargs": "17.7.2" }, @@ -1250,44 +1102,38 @@ "ng": "bin/ng.js" }, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, - "node_modules/@angular/cli/node_modules/jsonc-parser": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", - "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", - "dev": true - }, "node_modules/@angular/common": { - "version": "17.3.9", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-17.3.9.tgz", - "integrity": "sha512-tH1VfbAvNVaz6ZYa+q0DiKtbmUql1jK/3q/af74B8nVjKLHcXVWwxvBayqvrmlUt7FGANGkETIcCWrB44k47Ug==", + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-18.0.3.tgz", + "integrity": "sha512-lmT9QbWHduqzpsB0osQFHeSwvQB1iUeNwTVUyMtcs6i46l4qOPtAt2/9DvHUWEUp01EBDxyi385ZI3vD+FHH/w==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.13.0 || >=20.9.0" + "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/core": "17.3.9", + "@angular/core": "18.0.3", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/compiler": { - "version": "17.3.9", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-17.3.9.tgz", - "integrity": "sha512-2d4bPbNm7O2GanqCj5GFgPDnmjbAcsQM502Jnvcv7Aje82yecT69JoqAVRqGOfbbxwlJiPhi31D8DPdLaOz47Q==", + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-18.0.3.tgz", + "integrity": "sha512-wrXxgBsZX4yTrj/oZ8PDGmvhqj9S2TZfcuivaUitprNC2uBWTVb1UcOS45Qw9YlLB0sYa2AmBudICDqYpb8lfw==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.13.0 || >=20.9.0" + "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/core": "17.3.9" + "@angular/core": "18.0.3" }, "peerDependenciesMeta": { "@angular/core": { @@ -1296,11 +1142,11 @@ } }, "node_modules/@angular/compiler-cli": { - "version": "17.3.9", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-17.3.9.tgz", - "integrity": "sha512-J6aqoz5wqPWaurbZFUZ7iMUlzAJYXzntziJJbalm6ceXfUWEe2Vm67nGUROWCIFvO3kWXvkgYX4ubnqtod2AxA==", + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-18.0.3.tgz", + "integrity": "sha512-mxwQEeP94YBM6C9A2YfkV7ug1sHgh0fU/TSBpQcm5ni4cZiVPu6q/+Ft7hyFTKe2p3tKQme33+xVjsWhtOCx0A==", "dependencies": { - "@babel/core": "7.23.9", + "@babel/core": "7.24.7", "@jridgewell/sourcemap-codec": "^1.4.14", "chokidar": "^3.0.0", "convert-source-map": "^1.5.1", @@ -1315,22 +1161,22 @@ "ngcc": "bundles/ngcc/index.js" }, "engines": { - "node": "^18.13.0 || >=20.9.0" + "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/compiler": "17.3.9", - "typescript": ">=5.2 <5.5" + "@angular/compiler": "18.0.3", + "typescript": ">=5.4 <5.5" } }, "node_modules/@angular/core": { - "version": "17.3.9", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-17.3.9.tgz", - "integrity": "sha512-x+h5BQ6islvYWGVLTz1CEgNq1/5IYngQ+Inq/tWayM6jN7RPOCydCCbCw+uOZS7MgFebkP0gYTVm14y1MRFKSQ==", + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-18.0.3.tgz", + "integrity": "sha512-376hijhEqNpeA+qKncpVTIaZXRdBT6RctEBnFhJ2l57aHPH5S3oaSBQu1k3TEi07FlKOD4XF1+NzX9dvdup1eg==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.13.0 || >=20.9.0" + "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { "rxjs": "^6.5.3 || ^7.4.0", @@ -1338,28 +1184,28 @@ } }, "node_modules/@angular/forms": { - "version": "17.3.9", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-17.3.9.tgz", - "integrity": "sha512-5b8OjK0kLghrdxkVWglgerHVp9D5WvXInXwo1KIyc2v/fGdTlyu/RFi0GLGvzq2y+7Z8TvtXWC82SB47vfx3TQ==", + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-18.0.3.tgz", + "integrity": "sha512-+CjDiooUi5FkTP3YQmdO8YRbjZicgLGZonvCdz3mSucLrTY6w3oBocNs6+Kc7fLuO1NKSkFmAfYApBwK3fKBMg==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.13.0 || >=20.9.0" + "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/common": "17.3.9", - "@angular/core": "17.3.9", - "@angular/platform-browser": "17.3.9", + "@angular/common": "18.0.3", + "@angular/core": "18.0.3", + "@angular/platform-browser": "18.0.3", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/localize": { - "version": "17.3.9", - "resolved": "https://registry.npmjs.org/@angular/localize/-/localize-17.3.9.tgz", - "integrity": "sha512-ECWWw6GoJh2laopHIf+QT4bDDpSWwQJk95SGPI5mQIEXZXw6w9ms05Sfb8KJTNRXs9kcotloIGK9YanFZxzK1g==", + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@angular/localize/-/localize-18.0.3.tgz", + "integrity": "sha512-IrqLmuJncctJsgj5Z3uO68vuQBxdLdEB2B9p0SfX/oiWg2wYScKirePS5chsj3ZciwVWH5wc06cEzlZ+bSgNSA==", "dependencies": { - "@babel/core": "7.23.9", + "@babel/core": "7.24.7", "@types/babel__core": "7.20.5", "fast-glob": "3.3.2", "yargs": "^17.2.1" @@ -1370,27 +1216,27 @@ "localize-translate": "tools/bundles/src/translate/cli.js" }, "engines": { - "node": "^18.13.0 || >=20.9.0" + "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/compiler": "17.3.9", - "@angular/compiler-cli": "17.3.9" + "@angular/compiler": "18.0.3", + "@angular/compiler-cli": "18.0.3" } }, "node_modules/@angular/platform-browser": { - "version": "17.3.9", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-17.3.9.tgz", - "integrity": "sha512-vMwHO76rnkz7aV3KHKy23KUFAo/+b0+yHPa6AND5Lee8z5C1J/tA2PdetFAsghlQQsX61JeK4MFJV/f3dFm2dw==", + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-18.0.3.tgz", + "integrity": "sha512-1fl/oJOca8BLxLxN0EjwxQZ3xzn3PCCN96ytM54bjdEMiELz+0AcQe5GNKcVjXlwMkibRLl1BP5GIdvnQYqJRA==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.13.0 || >=20.9.0" + "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/animations": "17.3.9", - "@angular/common": "17.3.9", - "@angular/core": "17.3.9" + "@angular/animations": "18.0.3", + "@angular/common": "18.0.3", + "@angular/core": "18.0.3" }, "peerDependenciesMeta": { "@angular/animations": { @@ -1399,45 +1245,45 @@ } }, "node_modules/@angular/platform-browser-dynamic": { - "version": "17.3.9", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-17.3.9.tgz", - "integrity": "sha512-Jmth4hFC4dZsWQRkxB++42sR1pfJUoQbErANrKQMgEPb8H4cLRdB1mAQ6f+OASPBM+FsxDxjXq2kepyLGtF2Vg==", + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-18.0.3.tgz", + "integrity": "sha512-+kHMn7P552YKk1gkVQNO1QXzHVaIeFiVa1rV1MNvX4DvumKT3puknx1SzcmtxZTX+9ee22OuPuyLNSAKREDAQQ==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.13.0 || >=20.9.0" + "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/common": "17.3.9", - "@angular/compiler": "17.3.9", - "@angular/core": "17.3.9", - "@angular/platform-browser": "17.3.9" + "@angular/common": "18.0.3", + "@angular/compiler": "18.0.3", + "@angular/core": "18.0.3", + "@angular/platform-browser": "18.0.3" } }, "node_modules/@angular/router": { - "version": "17.3.9", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-17.3.9.tgz", - "integrity": "sha512-0cRF5YBJoDbXGQsRs3wEG+DPvN4PlhEqTa0DkTr9QIDJRg5P1uiDlOclV+w3OxEMsLrmXGmhjauHaWQk07M4LA==", + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-18.0.3.tgz", + "integrity": "sha512-/cglLev0USxUNMc4M+EBFGrqw1EpKq87LUJL3+0Ztr012sVSeOU38ad41fs6pPcMBePBDZIw7KmSXypvUJJFMA==", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.13.0 || >=20.9.0" + "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/common": "17.3.9", - "@angular/core": "17.3.9", - "@angular/platform-browser": "17.3.9", + "@angular/common": "18.0.3", + "@angular/core": "18.0.3", + "@angular/platform-browser": "18.0.3", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@babel/code-frame": { - "version": "7.24.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", - "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", "dependencies": { - "@babel/highlight": "^7.24.2", + "@babel/highlight": "^7.24.7", "picocolors": "^1.0.0" }, "engines": { @@ -1445,28 +1291,28 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", - "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", + "integrity": "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz", - "integrity": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", + "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.23.9", - "@babel/parser": "^7.23.9", - "@babel/template": "^7.23.9", - "@babel/traverse": "^7.23.9", - "@babel/types": "^7.23.9", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helpers": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -1481,6 +1327,20 @@ "url": "https://opencollective.com/babel" } }, + "node_modules/@babel/core/node_modules/@babel/generator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", + "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", + "dependencies": { + "@babel/types": "^7.24.7", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/core/node_modules/convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", @@ -1495,13 +1355,14 @@ } }, "node_modules/@babel/generator": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", - "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz", + "integrity": "sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==", + "dev": true, "dependencies": { - "@babel/types": "^7.23.6", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", + "@babel/types": "^7.24.5", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" }, "engines": { @@ -1521,24 +1382,25 @@ } }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", - "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", + "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", "dev": true, "dependencies": { - "@babel/types": "^7.22.15" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", - "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz", + "integrity": "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==", "dependencies": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-validator-option": "^7.23.5", + "@babel/compat-data": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" @@ -1556,19 +1418,19 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.1.tgz", - "integrity": "sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.7.tgz", + "integrity": "sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-member-expression-to-functions": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.7", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", "semver": "^6.3.1" }, "engines": { @@ -1578,6 +1440,30 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", + "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", @@ -1588,12 +1474,12 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", - "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz", + "integrity": "sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-annotate-as-pure": "^7.24.7", "regexpu-core": "^5.3.1", "semver": "^6.3.1" }, @@ -1604,6 +1490,18 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", @@ -1614,9 +1512,9 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.1.tgz", - "integrity": "sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==", + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", "dev": true, "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", @@ -1630,69 +1528,74 @@ } }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", + "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", + "dependencies": { + "@babel/types": "^7.24.7" + }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", + "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", + "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", - "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.7.tgz", + "integrity": "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==", "dev": true, "dependencies": { - "@babel/types": "^7.23.0" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", "dependencies": { - "@babel/types": "^7.22.15" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", - "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz", + "integrity": "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1701,36 +1604,47 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-module-transforms/node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", + "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz", - "integrity": "sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz", + "integrity": "sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", - "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz", + "integrity": "sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-wrap-function": "^7.22.20" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-wrap-function": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1739,15 +1653,27 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz", - "integrity": "sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==", + "node_modules/@babel/helper-remap-async-to-generator/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5" + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz", + "integrity": "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.7", + "@babel/helper-optimise-call-expression": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1757,96 +1683,99 @@ } }, "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz", + "integrity": "sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==", + "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz", + "integrity": "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", - "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz", + "integrity": "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", - "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz", + "integrity": "sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==", "dev": true, "dependencies": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.15", - "@babel/types": "^7.22.19" + "@babel/helper-function-name": "^7.24.7", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.1.tgz", - "integrity": "sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz", + "integrity": "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==", "dependencies": { - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0" + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.24.2", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz", - "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/helper-validator-identifier": "^7.24.7", "chalk": "^2.4.2", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" @@ -1856,9 +1785,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.1.tgz", - "integrity": "sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz", + "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==", "bin": { "parser": "bin/babel-parser.js" }, @@ -1866,13 +1795,29 @@ "node": ">=6.0.0" } }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz", - "integrity": "sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==", + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz", + "integrity": "sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7.tgz", + "integrity": "sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1882,14 +1827,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz", - "integrity": "sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", + "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.24.1" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1899,13 +1844,13 @@ } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz", - "integrity": "sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.7.tgz", + "integrity": "sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2002,12 +1947,12 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz", - "integrity": "sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", + "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2017,12 +1962,12 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz", - "integrity": "sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", + "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2204,12 +2149,12 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz", - "integrity": "sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", + "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2219,13 +2164,13 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz", - "integrity": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==", + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz", + "integrity": "sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-remap-async-to-generator": "^7.22.20", "@babel/plugin-syntax-async-generators": "^7.8.4" }, @@ -2237,13 +2182,13 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz", - "integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz", + "integrity": "sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-module-imports": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-remap-async-to-generator": "^7.22.20" }, "engines": { @@ -2254,12 +2199,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz", - "integrity": "sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", + "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2269,12 +2214,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.1.tgz", - "integrity": "sha512-h71T2QQvDgM2SmT29UYU6ozjMlAt7s7CSs5Hvy8f8cf/GM/Z4a2zMfN+fjVGaieeCrXR3EdQl6C4gQG+OgmbKw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz", + "integrity": "sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2284,13 +2229,13 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz", - "integrity": "sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", + "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2300,13 +2245,13 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.1.tgz", - "integrity": "sha512-FUHlKCn6J3ERiu8Dv+4eoz7w8+kFLSyeVG4vDAikwADGjUCoHw/JHokyGtr8OR4UjpwPVivyF+h8Q5iv/JmrtA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", + "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-class-static-block": "^7.14.5" }, "engines": { @@ -2317,18 +2262,18 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.1.tgz", - "integrity": "sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.7.tgz", + "integrity": "sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", "globals": "^11.1.0" }, "engines": { @@ -2338,14 +2283,38 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz", - "integrity": "sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==", + "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/template": "^7.24.0" + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", + "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", + "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/template": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2355,12 +2324,12 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.1.tgz", - "integrity": "sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.7.tgz", + "integrity": "sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2370,13 +2339,13 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz", - "integrity": "sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", + "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2386,12 +2355,12 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz", - "integrity": "sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", + "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2401,12 +2370,12 @@ } }, "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz", - "integrity": "sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", + "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, "engines": { @@ -2417,13 +2386,13 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz", - "integrity": "sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", + "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", "dev": true, "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2433,12 +2402,12 @@ } }, "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz", - "integrity": "sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", + "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, "engines": { @@ -2449,13 +2418,13 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz", - "integrity": "sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", + "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2465,14 +2434,14 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz", - "integrity": "sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz", + "integrity": "sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2482,12 +2451,12 @@ } }, "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz", - "integrity": "sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", + "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-json-strings": "^7.8.3" }, "engines": { @@ -2498,12 +2467,12 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz", - "integrity": "sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz", + "integrity": "sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2513,12 +2482,12 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz", - "integrity": "sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", + "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, "engines": { @@ -2529,12 +2498,12 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz", - "integrity": "sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", + "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2544,13 +2513,13 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz", - "integrity": "sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", + "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2560,14 +2529,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz", - "integrity": "sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.7.tgz", + "integrity": "sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-simple-access": "^7.22.5" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2577,15 +2546,15 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz", - "integrity": "sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.7.tgz", + "integrity": "sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==", "dev": true, "dependencies": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-hoist-variables": "^7.24.7", + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2595,13 +2564,13 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz", - "integrity": "sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", + "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2611,13 +2580,13 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", + "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2627,12 +2596,12 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz", - "integrity": "sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", + "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2642,12 +2611,12 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz", - "integrity": "sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", + "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, "engines": { @@ -2658,12 +2627,12 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz", - "integrity": "sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", + "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, "engines": { @@ -2674,15 +2643,15 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.1.tgz", - "integrity": "sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", + "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.24.1" + "@babel/plugin-transform-parameters": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2692,13 +2661,13 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz", - "integrity": "sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", + "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-replace-supers": "^7.24.1" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2708,12 +2677,12 @@ } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz", - "integrity": "sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", + "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" }, "engines": { @@ -2724,13 +2693,13 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.1.tgz", - "integrity": "sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.7.tgz", + "integrity": "sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, "engines": { @@ -2741,12 +2710,12 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.1.tgz", - "integrity": "sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", + "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2756,13 +2725,13 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz", - "integrity": "sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", + "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2772,14 +2741,14 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.1.tgz", - "integrity": "sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", + "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { @@ -2789,13 +2758,25 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz", - "integrity": "sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==", + "node_modules/@babel/plugin-transform-private-property-in-object/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", + "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2805,12 +2786,12 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz", - "integrity": "sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", + "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.7", "regenerator-transform": "^0.15.2" }, "engines": { @@ -2821,12 +2802,12 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz", - "integrity": "sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", + "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2836,16 +2817,16 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.0.tgz", - "integrity": "sha512-zc0GA5IitLKJrSfXlXmp8KDqLrnGECK7YRfQBmEKg1NmBOQ7e+KuclBEKJgzifQeUYLdNiAw4B4bjyvzWVLiSA==", + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.3.tgz", + "integrity": "sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-module-imports": "^7.24.3", "@babel/helper-plugin-utils": "^7.24.0", - "babel-plugin-polyfill-corejs2": "^0.4.8", - "babel-plugin-polyfill-corejs3": "^0.9.0", - "babel-plugin-polyfill-regenerator": "^0.5.5", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.1", + "babel-plugin-polyfill-regenerator": "^0.6.1", "semver": "^6.3.1" }, "engines": { @@ -2865,12 +2846,12 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz", - "integrity": "sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", + "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2880,13 +2861,13 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz", - "integrity": "sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", + "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2896,12 +2877,12 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz", - "integrity": "sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", + "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2911,12 +2892,12 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz", - "integrity": "sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", + "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2926,12 +2907,12 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.1.tgz", - "integrity": "sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.7.tgz", + "integrity": "sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2941,12 +2922,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz", - "integrity": "sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", + "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2956,13 +2937,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz", - "integrity": "sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", + "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2972,13 +2953,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz", - "integrity": "sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", + "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2988,13 +2969,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz", - "integrity": "sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", + "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -3004,26 +2985,27 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.0.tgz", - "integrity": "sha512-ZxPEzV9IgvGn73iK0E6VB9/95Nd7aMFpbE0l8KQFDG70cOV9IxRP7Y2FUPmlK0v6ImlLqYX50iuZ3ZTVhOF2lA==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.5.tgz", + "integrity": "sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.23.5", + "@babel/compat-data": "^7.24.4", "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-plugin-utils": "^7.24.5", "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.7", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.23.3", - "@babel/plugin-syntax-import-attributes": "^7.23.3", + "@babel/plugin-syntax-import-assertions": "^7.24.1", + "@babel/plugin-syntax-import-attributes": "^7.24.1", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", @@ -3035,58 +3017,58 @@ "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.23.3", - "@babel/plugin-transform-async-generator-functions": "^7.23.9", - "@babel/plugin-transform-async-to-generator": "^7.23.3", - "@babel/plugin-transform-block-scoped-functions": "^7.23.3", - "@babel/plugin-transform-block-scoping": "^7.23.4", - "@babel/plugin-transform-class-properties": "^7.23.3", - "@babel/plugin-transform-class-static-block": "^7.23.4", - "@babel/plugin-transform-classes": "^7.23.8", - "@babel/plugin-transform-computed-properties": "^7.23.3", - "@babel/plugin-transform-destructuring": "^7.23.3", - "@babel/plugin-transform-dotall-regex": "^7.23.3", - "@babel/plugin-transform-duplicate-keys": "^7.23.3", - "@babel/plugin-transform-dynamic-import": "^7.23.4", - "@babel/plugin-transform-exponentiation-operator": "^7.23.3", - "@babel/plugin-transform-export-namespace-from": "^7.23.4", - "@babel/plugin-transform-for-of": "^7.23.6", - "@babel/plugin-transform-function-name": "^7.23.3", - "@babel/plugin-transform-json-strings": "^7.23.4", - "@babel/plugin-transform-literals": "^7.23.3", - "@babel/plugin-transform-logical-assignment-operators": "^7.23.4", - "@babel/plugin-transform-member-expression-literals": "^7.23.3", - "@babel/plugin-transform-modules-amd": "^7.23.3", - "@babel/plugin-transform-modules-commonjs": "^7.23.3", - "@babel/plugin-transform-modules-systemjs": "^7.23.9", - "@babel/plugin-transform-modules-umd": "^7.23.3", + "@babel/plugin-transform-arrow-functions": "^7.24.1", + "@babel/plugin-transform-async-generator-functions": "^7.24.3", + "@babel/plugin-transform-async-to-generator": "^7.24.1", + "@babel/plugin-transform-block-scoped-functions": "^7.24.1", + "@babel/plugin-transform-block-scoping": "^7.24.5", + "@babel/plugin-transform-class-properties": "^7.24.1", + "@babel/plugin-transform-class-static-block": "^7.24.4", + "@babel/plugin-transform-classes": "^7.24.5", + "@babel/plugin-transform-computed-properties": "^7.24.1", + "@babel/plugin-transform-destructuring": "^7.24.5", + "@babel/plugin-transform-dotall-regex": "^7.24.1", + "@babel/plugin-transform-duplicate-keys": "^7.24.1", + "@babel/plugin-transform-dynamic-import": "^7.24.1", + "@babel/plugin-transform-exponentiation-operator": "^7.24.1", + "@babel/plugin-transform-export-namespace-from": "^7.24.1", + "@babel/plugin-transform-for-of": "^7.24.1", + "@babel/plugin-transform-function-name": "^7.24.1", + "@babel/plugin-transform-json-strings": "^7.24.1", + "@babel/plugin-transform-literals": "^7.24.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.1", + "@babel/plugin-transform-member-expression-literals": "^7.24.1", + "@babel/plugin-transform-modules-amd": "^7.24.1", + "@babel/plugin-transform-modules-commonjs": "^7.24.1", + "@babel/plugin-transform-modules-systemjs": "^7.24.1", + "@babel/plugin-transform-modules-umd": "^7.24.1", "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.23.3", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4", - "@babel/plugin-transform-numeric-separator": "^7.23.4", - "@babel/plugin-transform-object-rest-spread": "^7.24.0", - "@babel/plugin-transform-object-super": "^7.23.3", - "@babel/plugin-transform-optional-catch-binding": "^7.23.4", - "@babel/plugin-transform-optional-chaining": "^7.23.4", - "@babel/plugin-transform-parameters": "^7.23.3", - "@babel/plugin-transform-private-methods": "^7.23.3", - "@babel/plugin-transform-private-property-in-object": "^7.23.4", - "@babel/plugin-transform-property-literals": "^7.23.3", - "@babel/plugin-transform-regenerator": "^7.23.3", - "@babel/plugin-transform-reserved-words": "^7.23.3", - "@babel/plugin-transform-shorthand-properties": "^7.23.3", - "@babel/plugin-transform-spread": "^7.23.3", - "@babel/plugin-transform-sticky-regex": "^7.23.3", - "@babel/plugin-transform-template-literals": "^7.23.3", - "@babel/plugin-transform-typeof-symbol": "^7.23.3", - "@babel/plugin-transform-unicode-escapes": "^7.23.3", - "@babel/plugin-transform-unicode-property-regex": "^7.23.3", - "@babel/plugin-transform-unicode-regex": "^7.23.3", - "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", + "@babel/plugin-transform-new-target": "^7.24.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", + "@babel/plugin-transform-numeric-separator": "^7.24.1", + "@babel/plugin-transform-object-rest-spread": "^7.24.5", + "@babel/plugin-transform-object-super": "^7.24.1", + "@babel/plugin-transform-optional-catch-binding": "^7.24.1", + "@babel/plugin-transform-optional-chaining": "^7.24.5", + "@babel/plugin-transform-parameters": "^7.24.5", + "@babel/plugin-transform-private-methods": "^7.24.1", + "@babel/plugin-transform-private-property-in-object": "^7.24.5", + "@babel/plugin-transform-property-literals": "^7.24.1", + "@babel/plugin-transform-regenerator": "^7.24.1", + "@babel/plugin-transform-reserved-words": "^7.24.1", + "@babel/plugin-transform-shorthand-properties": "^7.24.1", + "@babel/plugin-transform-spread": "^7.24.1", + "@babel/plugin-transform-sticky-regex": "^7.24.1", + "@babel/plugin-transform-template-literals": "^7.24.1", + "@babel/plugin-transform-typeof-symbol": "^7.24.5", + "@babel/plugin-transform-unicode-escapes": "^7.24.1", + "@babel/plugin-transform-unicode-property-regex": "^7.24.1", + "@babel/plugin-transform-unicode-regex": "^7.24.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.1", "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.8", - "babel-plugin-polyfill-corejs3": "^0.9.0", - "babel-plugin-polyfill-regenerator": "^0.5.5", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-regenerator": "^0.6.1", "core-js-compat": "^3.31.0", "semver": "^6.3.1" }, @@ -3127,9 +3109,9 @@ "dev": true }, "node_modules/@babel/runtime": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.0.tgz", - "integrity": "sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.5.tgz", + "integrity": "sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==", "dev": true, "dependencies": { "regenerator-runtime": "^0.14.0" @@ -3139,31 +3121,31 @@ } }, "node_modules/@babel/template": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", - "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz", + "integrity": "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==", "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/parser": "^7.24.0", - "@babel/types": "^7.24.0" + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.1.tgz", - "integrity": "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.7.tgz", + "integrity": "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==", "dependencies": { - "@babel/code-frame": "^7.24.1", - "@babel/generator": "^7.24.1", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.24.1", - "@babel/types": "^7.24.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-hoist-variables": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/types": "^7.24.7", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -3172,11 +3154,11 @@ } }, "node_modules/@babel/traverse/node_modules/@babel/generator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.1.tgz", - "integrity": "sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", + "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", "dependencies": { - "@babel/types": "^7.24.0", + "@babel/types": "^7.24.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" @@ -3185,13 +3167,24 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/types": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz", - "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==", + "node_modules/@babel/traverse/node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", + "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz", + "integrity": "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==", + "dependencies": { + "@babel/helper-string-parser": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" }, "engines": { @@ -3244,9 +3237,9 @@ } }, "node_modules/@esbuild/aix-ppc64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.11.tgz", - "integrity": "sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", + "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", "cpu": [ "ppc64" ], @@ -3260,9 +3253,9 @@ } }, "node_modules/@esbuild/android-arm": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.11.tgz", - "integrity": "sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", + "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", "cpu": [ "arm" ], @@ -3276,9 +3269,9 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.11.tgz", - "integrity": "sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", + "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", "cpu": [ "arm64" ], @@ -3292,9 +3285,9 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.11.tgz", - "integrity": "sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", + "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", "cpu": [ "x64" ], @@ -3308,9 +3301,9 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.11.tgz", - "integrity": "sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", + "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", "cpu": [ "arm64" ], @@ -3324,9 +3317,9 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.11.tgz", - "integrity": "sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", + "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", "cpu": [ "x64" ], @@ -3340,9 +3333,9 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.11.tgz", - "integrity": "sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", + "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", "cpu": [ "arm64" ], @@ -3356,9 +3349,9 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.11.tgz", - "integrity": "sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", + "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", "cpu": [ "x64" ], @@ -3372,9 +3365,9 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.11.tgz", - "integrity": "sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", + "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", "cpu": [ "arm" ], @@ -3388,9 +3381,9 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.11.tgz", - "integrity": "sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", + "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", "cpu": [ "arm64" ], @@ -3404,9 +3397,9 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.11.tgz", - "integrity": "sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", + "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", "cpu": [ "ia32" ], @@ -3420,9 +3413,9 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.11.tgz", - "integrity": "sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", + "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", "cpu": [ "loong64" ], @@ -3436,9 +3429,9 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.11.tgz", - "integrity": "sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", + "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", "cpu": [ "mips64el" ], @@ -3452,9 +3445,9 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.11.tgz", - "integrity": "sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", + "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", "cpu": [ "ppc64" ], @@ -3468,9 +3461,9 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.11.tgz", - "integrity": "sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", + "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", "cpu": [ "riscv64" ], @@ -3484,9 +3477,9 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.11.tgz", - "integrity": "sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", + "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", "cpu": [ "s390x" ], @@ -3500,9 +3493,9 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.11.tgz", - "integrity": "sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", + "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", "cpu": [ "x64" ], @@ -3516,9 +3509,9 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.11.tgz", - "integrity": "sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", + "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", "cpu": [ "x64" ], @@ -3532,9 +3525,9 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.11.tgz", - "integrity": "sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", + "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", "cpu": [ "x64" ], @@ -3548,9 +3541,9 @@ } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.11.tgz", - "integrity": "sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", + "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", "cpu": [ "x64" ], @@ -3564,9 +3557,9 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.11.tgz", - "integrity": "sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", + "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", "cpu": [ "arm64" ], @@ -3580,9 +3573,9 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.11.tgz", - "integrity": "sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", + "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", "cpu": [ "ia32" ], @@ -3596,9 +3589,9 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.11.tgz", - "integrity": "sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", + "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", "cpu": [ "x64" ], @@ -3782,6 +3775,15 @@ "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", "dev": true }, + "node_modules/@inquirer/figures": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.3.tgz", + "integrity": "sha512-ErXXzENMH5pJt5/ssXV0DfWUZqly8nGzf0UcBV9xTnP+KyffE2mqyxIMBrZ8ijQck2nU0TQm40EQB53YreyWHw==", + "dev": true, + "engines": { + "node": ">=18" + } + }, "node_modules/@isaacs/cliui": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", @@ -4606,6 +4608,60 @@ "@jridgewell/sourcemap-codec": "^1.4.14" } }, + "node_modules/@jsonjoy.com/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==", + "dev": true, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/json-pack": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.0.4.tgz", + "integrity": "sha512-aOcSN4MeAtFROysrbqG137b7gaDDSmVrl5mpo6sT/w+kcXpWnzhMjmY/Fh/sDx26NBxyIE7MB1seqLeCAzy9Sg==", + "dev": true, + "dependencies": { + "@jsonjoy.com/base64": "^1.1.1", + "@jsonjoy.com/util": "^1.1.2", + "hyperdyperid": "^1.2.0", + "thingies": "^1.20.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/util": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.1.3.tgz", + "integrity": "sha512-g//kkF4kOwUjemValCtOc/xiYzmwMRmWq3Bn+YnzOzuZLHq2PpMOxxIayN3cKbo7Ko2Np65t6D9H81IvXbXhqg==", + "dev": true, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, "node_modules/@leichtgewicht/ip-codec": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", @@ -4613,17 +4669,95 @@ "dev": true }, "node_modules/@ljharb/through": { - "version": "2.3.12", - "resolved": "https://registry.npmjs.org/@ljharb/through/-/through-2.3.12.tgz", - "integrity": "sha512-ajo/heTlG3QgC8EGP6APIejksVAYt4ayz4tqoP3MolFELzcH1x1fzwEYRJTPO0IELutZ5HQ0c26/GqAYy79u3g==", + "version": "2.3.13", + "resolved": "https://registry.npmjs.org/@ljharb/through/-/through-2.3.13.tgz", + "integrity": "sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.5" + "call-bind": "^1.0.7" }, "engines": { "node": ">= 0.4" } }, + "node_modules/@lmdb/lmdb-darwin-arm64": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.0.8.tgz", + "integrity": "sha512-+lFwFvU+zQ9zVIFETNtmW++syh3Ps5JS8MPQ8zOYtQZoU+dTR8ivWHTaE2QVk1JG2payGDLUAvpndLAjGMdeeA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@lmdb/lmdb-darwin-x64": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.0.8.tgz", + "integrity": "sha512-T98rfsgfdQMS5/mqdsPb6oHSJ+iBYNa+PQDLtXLh6rzTEBsYP9x2uXxIj6VS4qXVDWXVi8rv85NCOG+UBOsHXQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@lmdb/lmdb-linux-arm": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.0.8.tgz", + "integrity": "sha512-gVNCi3bYWatdPMeFpFjuZl6bzVL55FkeZU3sPeU+NsMRXC+Zl3qOx3M6cM4OMlJWbhHjYjf2b8q83K0mczaiWQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@lmdb/lmdb-linux-arm64": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.0.8.tgz", + "integrity": "sha512-uEBGCQIChsixpykL0pjCxfF64btv64vzsb1NoM5u0qvabKvKEvErhXGoqovyldDu9u1T/fswD8Kf6ih0vJEvDQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@lmdb/lmdb-linux-x64": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.0.8.tgz", + "integrity": "sha512-6v0B4sa9ulNezmDZtVpLjNHmA0qZzUl3001YJ2RF0naxsuv/Jq/xEwNYpOzfcdizHfpCE0oBkWzk/r+Slr+0zw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@lmdb/lmdb-win32-x64": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.0.8.tgz", + "integrity": "sha512-lDLGRIMqdwYD39vinwNqqZUxCdL2m2iIdn+0HyQgIHEiT0g5rIAlzaMKzoGWon5NQumfxXFk9y0DarttkR7C1w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, "node_modules/@mapbox/node-pre-gyp": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", @@ -4714,37 +4848,115 @@ "node": ">=6" } }, + "node_modules/@msgpackr-extract/msgpackr-extract-darwin-arm64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.3.tgz", + "integrity": "sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-darwin-x64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.3.tgz", + "integrity": "sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.3.tgz", + "integrity": "sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.3.tgz", + "integrity": "sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-x64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.3.tgz", + "integrity": "sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-win32-x64": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.3.tgz", + "integrity": "sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, "node_modules/@ng-bootstrap/ng-bootstrap": { - "version": "16.0.0", - "resolved": "https://registry.npmjs.org/@ng-bootstrap/ng-bootstrap/-/ng-bootstrap-16.0.0.tgz", - "integrity": "sha512-+FJ3e6cX9DW2t7021Ji3oz433rk3+4jLfqzU+Jyx6/vJz1dIOaML3EAY6lYuW4TLiXgMPOMvs6KzPFALGh4Lag==", + "version": "17.0.0", + "resolved": "https://registry.npmjs.org/@ng-bootstrap/ng-bootstrap/-/ng-bootstrap-17.0.0.tgz", + "integrity": "sha512-hTbBtozJlpevF1RO6J2adCoXiAkMTPV3wmXIyK05dVha4VsKjHibgaL6YldToKoh6ElQnIYkPEIJHX9z5EtyMw==", "dependencies": { "tslib": "^2.3.0" }, "peerDependencies": { - "@angular/common": "^17.0.0", - "@angular/core": "^17.0.0", - "@angular/forms": "^17.0.0", - "@angular/localize": "^17.0.0", + "@angular/common": "^18.0.0", + "@angular/core": "^18.0.0", + "@angular/forms": "^18.0.0", + "@angular/localize": "^18.0.0", "@popperjs/core": "^2.11.8", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@ng-select/ng-select": { - "version": "12.0.7", - "resolved": "https://registry.npmjs.org/@ng-select/ng-select/-/ng-select-12.0.7.tgz", - "integrity": "sha512-Eht1zlLP0DJxiXcKnq3aY/EJ8odomgU0hM0BJoPY6oX3XFHndtFtdPxlZfhVtQn+FwyDEh7306rRx6digxVssA==", + "version": "13.2.0", + "resolved": "https://registry.npmjs.org/@ng-select/ng-select/-/ng-select-13.2.0.tgz", + "integrity": "sha512-Oh4UaUvYJa6D+G4nEcdzqOgRP2TKqwwRpQBVVyLMUgzebSY3Cw9aJXqudqJ/EYiK3Bz+4uKJXPZIrYgNqqx02g==", "dependencies": { "tslib": "^2.3.1" }, "engines": { - "node": ">= 16", + "node": ">= 18", "npm": ">= 8" }, "peerDependencies": { - "@angular/common": "^17.0.0-rc.0", - "@angular/core": "^17.0.0-rc.0", - "@angular/forms": "^17.0.0-rc.0" + "@angular/common": "^18.0.0", + "@angular/core": "^18.0.0", + "@angular/forms": "^18.0.0" } }, "node_modules/@ngneat/dirty-check-forms": { @@ -4762,22 +4974,6 @@ "rxjs": ">=6.0.0" } }, - "node_modules/@ngtools/webpack": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-17.3.7.tgz", - "integrity": "sha512-kQNS68jsPQlaWAnKcVeFKNHp6K90uQANvq+9oXb/i+JnYWzuBsHzn2r8bVdMmvjd1HdBRiGtg767XRk3u+jgRw==", - "dev": true, - "engines": { - "node": "^18.13.0 || >=20.9.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - }, - "peerDependencies": { - "@angular/compiler-cli": "^17.0.0", - "typescript": ">=5.2 <5.5", - "webpack": "^5.54.0" - } - }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -4811,16 +5007,16 @@ } }, "node_modules/@npmcli/agent": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.1.tgz", - "integrity": "sha512-H4FrOVtNyWC8MUwL3UfjOsAihHvT1Pe8POj3JvjXhSTJipsZMtgUALCT4mGyYZNxymkUfOw3PUj6dE4QPp6osQ==", + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.2.tgz", + "integrity": "sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==", "dev": true, "dependencies": { "agent-base": "^7.1.0", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.1", "lru-cache": "^10.0.1", - "socks-proxy-agent": "^8.0.1" + "socks-proxy-agent": "^8.0.3" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -4840,18 +5036,18 @@ } }, "node_modules/@npmcli/agent/node_modules/lru-cache": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", - "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", "dev": true, "engines": { "node": "14 || >=16.14" } }, "node_modules/@npmcli/fs": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", - "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz", + "integrity": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==", "dev": true, "dependencies": { "semver": "^7.3.5" @@ -4861,15 +5057,15 @@ } }, "node_modules/@npmcli/git": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.4.tgz", - "integrity": "sha512-nr6/WezNzuYUppzXRaYu/W4aT5rLxdXqEFupbh6e/ovlYFQ8hpu1UUPV3Ir/YTl+74iXl2ZOMlGzudh9ZPUchQ==", + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.7.tgz", + "integrity": "sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==", "dev": true, "dependencies": { "@npmcli/promise-spawn": "^7.0.0", "lru-cache": "^10.0.1", "npm-pick-manifest": "^9.0.0", - "proc-log": "^3.0.0", + "proc-log": "^4.0.0", "promise-inflight": "^1.0.1", "promise-retry": "^2.0.1", "semver": "^7.3.5", @@ -4889,9 +5085,9 @@ } }, "node_modules/@npmcli/git/node_modules/lru-cache": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", - "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", "dev": true, "engines": { "node": "14 || >=16.14" @@ -4913,16 +5109,16 @@ } }, "node_modules/@npmcli/installed-package-contents": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz", - "integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz", + "integrity": "sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==", "dev": true, "dependencies": { "npm-bundled": "^3.0.0", "npm-normalize-package-bin": "^3.0.0" }, "bin": { - "installed-package-contents": "lib/index.js" + "installed-package-contents": "bin/index.js" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" @@ -4938,9 +5134,9 @@ } }, "node_modules/@npmcli/package-json": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-5.0.0.tgz", - "integrity": "sha512-OI2zdYBLhQ7kpNPaJxiflofYIpkNLi+lnGdzqUOfRmCF3r2l1nadcjtCYMJKv/Utm/ZtlffaUuTiAktPHbc17g==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-5.2.0.tgz", + "integrity": "sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==", "dev": true, "dependencies": { "@npmcli/git": "^5.0.0", @@ -4948,7 +5144,7 @@ "hosted-git-info": "^7.0.0", "json-parse-even-better-errors": "^3.0.0", "normalize-package-data": "^6.0.0", - "proc-log": "^3.0.0", + "proc-log": "^4.0.0", "semver": "^7.5.3" }, "engines": { @@ -4965,40 +5161,40 @@ } }, "node_modules/@npmcli/package-json/node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", + "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/@npmcli/package-json/node_modules/json-parse-even-better-errors": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz", - "integrity": "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz", + "integrity": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==", "dev": true, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/@npmcli/package-json/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -5011,9 +5207,9 @@ } }, "node_modules/@npmcli/promise-spawn": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-7.0.1.tgz", - "integrity": "sha512-P4KkF9jX3y+7yFUxgcUdDtLy+t4OlDGuEBLNs57AZsfSfg+uV6MLndqGpnl4831ggaEdXwR50XFoZP4VFtHolg==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-7.0.2.tgz", + "integrity": "sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==", "dev": true, "dependencies": { "which": "^4.0.0" @@ -5046,16 +5242,26 @@ "node": "^16.13.0 || >=18.0.0" } }, + "node_modules/@npmcli/redact": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/redact/-/redact-2.0.1.tgz", + "integrity": "sha512-YgsR5jCQZhVmTJvjduTOIHph0L73pK8xwMVaDY0PatySqVM9AZj93jpoXYSJqfHFxFkN9dmqTw6OiqExsS3LPw==", + "dev": true, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, "node_modules/@npmcli/run-script": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-7.0.4.tgz", - "integrity": "sha512-9ApYM/3+rBt9V80aYg6tZfzj3UWdiYyCt7gJUD1VJKvWF5nwKDSICXbYIQbspFTq6TOpbsEtIC0LArB8d9PFmg==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-8.1.0.tgz", + "integrity": "sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==", "dev": true, "dependencies": { "@npmcli/node-gyp": "^3.0.0", "@npmcli/package-json": "^5.0.0", "@npmcli/promise-spawn": "^7.0.0", "node-gyp": "^10.0.0", + "proc-log": "^4.0.0", "which": "^4.0.0" }, "engines": { @@ -5087,21 +5293,21 @@ } }, "node_modules/@nrwl/devkit": { - "version": "17.2.8", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-17.2.8.tgz", - "integrity": "sha512-l2dFy5LkWqSA45s6pee6CoqJeluH+sjRdVnAAQfjLHRNSx6mFAKblyzq5h1f4P0EUCVVVqLs+kVqmNx5zxYqvw==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-19.3.0.tgz", + "integrity": "sha512-WRcph/7U37HkTLIRzQ2oburZVfEFkPHJUn7vmo46gCq+N2cAKy3qwONO0RbthhjFIsG94YPXqFWFlV6k4nXpxA==", "dev": true, "dependencies": { - "@nx/devkit": "17.2.8" + "@nx/devkit": "19.3.0" } }, "node_modules/@nrwl/tao": { - "version": "17.2.8", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-17.2.8.tgz", - "integrity": "sha512-Qpk5YKeJ+LppPL/wtoDyNGbJs2MsTi6qyX/RdRrEc8lc4bk6Cw3Oul1qTXCI6jT0KzTz+dZtd0zYD/G7okkzvg==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-19.3.0.tgz", + "integrity": "sha512-MyGYeHbh9O4Tv9xmz3Du+/leY5sKUHaPy4ancfNyShHgYi21hemX0/YYjzzoYHi44D8GzSc1XG2rAuwba7Kilw==", "dev": true, "dependencies": { - "nx": "17.2.8", + "nx": "19.3.0", "tslib": "^2.3.0" }, "bin": { @@ -5109,60 +5315,53 @@ } }, "node_modules/@nx/devkit": { - "version": "17.2.8", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-17.2.8.tgz", - "integrity": "sha512-6LtiQihtZwqz4hSrtT5cCG5XMCWppG6/B8c1kNksg97JuomELlWyUyVF+sxmeERkcLYFaKPTZytP0L3dmCFXaw==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-19.3.0.tgz", + "integrity": "sha512-Natya5nzvHH0qTOIL1w/EZtwMgDx87Dgz0LgeY7te2fULaNFcj5fVrP+mUKEJZR+NccO7GPumT2RPhuEl9rPnQ==", "dev": true, "dependencies": { - "@nrwl/devkit": "17.2.8", + "@nrwl/devkit": "19.3.0", "ejs": "^3.1.7", "enquirer": "~2.3.6", "ignore": "^5.0.4", - "semver": "7.5.3", + "minimatch": "9.0.3", + "semver": "^7.5.3", "tmp": "~0.2.1", - "tslib": "^2.3.0" + "tslib": "^2.3.0", + "yargs-parser": "21.1.1" }, "peerDependencies": { - "nx": ">= 16 <= 18" + "nx": ">= 17 <= 20" } }, - "node_modules/@nx/devkit/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/@nx/devkit/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" + "balanced-match": "^1.0.0" } }, - "node_modules/@nx/devkit/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "node_modules/@nx/devkit/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=10" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@nx/devkit/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/@nx/nx-darwin-arm64": { - "version": "17.2.8", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-17.2.8.tgz", - "integrity": "sha512-dMb0uxug4hM7tusISAU1TfkDK3ixYmzc1zhHSZwpR7yKJIyKLtUpBTbryt8nyso37AS1yH+dmfh2Fj2WxfBHTg==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-19.3.0.tgz", + "integrity": "sha512-TMTxjrN7Y/UsKFjmz0YfhVItLTGWqvud8cmQchw5NEjdNakfjXk0mREufO5/5PwoiRIsen6MbThoTprLpjOUiQ==", "cpu": [ "arm64" ], @@ -5176,9 +5375,9 @@ } }, "node_modules/@nx/nx-darwin-x64": { - "version": "17.2.8", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-17.2.8.tgz", - "integrity": "sha512-0cXzp1tGr7/6lJel102QiLA4NkaLCkQJj6VzwbwuvmuCDxPbpmbz7HC1tUteijKBtOcdXit1/MEoEU007To8Bw==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-19.3.0.tgz", + "integrity": "sha512-GH2L6ftnzdIs7JEdv7ZPCdbpAdB5sW6NijK07riYZSONzq5fEruD1yDWDkyZbYBb8RTxsparUWJnq8q1qxEPHQ==", "cpu": [ "x64" ], @@ -5192,9 +5391,9 @@ } }, "node_modules/@nx/nx-freebsd-x64": { - "version": "17.2.8", - "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-17.2.8.tgz", - "integrity": "sha512-YFMgx5Qpp2btCgvaniDGdu7Ctj56bfFvbbaHQWmOeBPK1krNDp2mqp8HK6ZKOfEuDJGOYAp7HDtCLvdZKvJxzA==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-19.3.0.tgz", + "integrity": "sha512-1ow7Xku1yyjHviCKsWiuHCAnTd3fD+5O5c+e4DXHVthT8wnadKSotvBIWf38DMbMthl7na82e72OzxcdSbrVqQ==", "cpu": [ "x64" ], @@ -5208,9 +5407,9 @@ } }, "node_modules/@nx/nx-linux-arm-gnueabihf": { - "version": "17.2.8", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-17.2.8.tgz", - "integrity": "sha512-iN2my6MrhLRkVDtdivQHugK8YmR7URo1wU9UDuHQ55z3tEcny7LV3W9NSsY9UYPK/FrxdDfevj0r2hgSSdhnzA==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-19.3.0.tgz", + "integrity": "sha512-mYQMIUvNr2gww8vbg766uk/C1RxoC1fwioeP87bmV5NRUKSzJ8WEJVxAsqc9RGhAOUaNXOgEuKYrMcVhKyIKJQ==", "cpu": [ "arm" ], @@ -5224,9 +5423,9 @@ } }, "node_modules/@nx/nx-linux-arm64-gnu": { - "version": "17.2.8", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-17.2.8.tgz", - "integrity": "sha512-Iy8BjoW6mOKrSMiTGujUcNdv+xSM1DALTH6y3iLvNDkGbjGK1Re6QNnJAzqcXyDpv32Q4Fc57PmuexyysZxIGg==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-19.3.0.tgz", + "integrity": "sha512-rHL3eQ0RHkeAXnhHHu/NIyouN/ykiXvgyNU3TuCd50+2MZcAbjB+Xq3mwL0MwiP+BQuptiE+snTuxFUJp4ZH6A==", "cpu": [ "arm64" ], @@ -5240,9 +5439,9 @@ } }, "node_modules/@nx/nx-linux-arm64-musl": { - "version": "17.2.8", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-17.2.8.tgz", - "integrity": "sha512-9wkAxWzknjpzdofL1xjtU6qPFF1PHlvKCZI3hgEYJDo4mQiatGI+7Ttko+lx/ZMP6v4+Umjtgq7+qWrApeKamQ==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-19.3.0.tgz", + "integrity": "sha512-im0+OgOD6ShpTkI9ZRz7BjzxhQ/Lk3xjYmmCu+PFGmaybEnkNNDFwsgS0iEVKMdWZ/EQoQvJrqOYsX125iIBuQ==", "cpu": [ "arm64" ], @@ -5256,9 +5455,9 @@ } }, "node_modules/@nx/nx-linux-x64-gnu": { - "version": "17.2.8", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-17.2.8.tgz", - "integrity": "sha512-sjG1bwGsjLxToasZ3lShildFsF0eyeGu+pOQZIp9+gjFbeIkd19cTlCnHrOV9hoF364GuKSXQyUlwtFYFR4VTQ==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-19.3.0.tgz", + "integrity": "sha512-k8q/d6WBSXOeUpBq6Mw69yMKL4n9LaX3o4LBNwBkVCEZ8p6s0njwKefLtjwnKlai0g/k5f0NcilU2zTwP/Ex8g==", "cpu": [ "x64" ], @@ -5272,9 +5471,9 @@ } }, "node_modules/@nx/nx-linux-x64-musl": { - "version": "17.2.8", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-17.2.8.tgz", - "integrity": "sha512-QiakXZ1xBCIptmkGEouLHQbcM4klQkcr+kEaz2PlNwy/sW3gH1b/1c0Ed5J1AN9xgQxWspriAONpScYBRgxdhA==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-19.3.0.tgz", + "integrity": "sha512-sahEV99glBlpGKG1TIQ5PkJ0QvpHp69wWsBFK2DKtCETxOtsWqwvIjemxTCXRirTqeHiP7BiR6VWsf2YqqqBdw==", "cpu": [ "x64" ], @@ -5288,9 +5487,9 @@ } }, "node_modules/@nx/nx-win32-arm64-msvc": { - "version": "17.2.8", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-17.2.8.tgz", - "integrity": "sha512-XBWUY/F/GU3vKN9CAxeI15gM4kr3GOBqnzFZzoZC4qJt2hKSSUEWsMgeZtsMgeqEClbi4ZyCCkY7YJgU32WUGA==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-19.3.0.tgz", + "integrity": "sha512-w03gFwLijStmhUji70QJHYo/U16ovybNczxGO7+5TT330X8/y+ihw9FCGHiIcujAjTAE88h0DKGn05WlNqRmfg==", "cpu": [ "arm64" ], @@ -5304,9 +5503,9 @@ } }, "node_modules/@nx/nx-win32-x64-msvc": { - "version": "17.2.8", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-17.2.8.tgz", - "integrity": "sha512-HTqDv+JThlLzbcEm/3f+LbS5/wYQWzb5YDXbP1wi7nlCTihNZOLNqGOkEmwlrR5tAdNHPRpHSmkYg4305W0CtA==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-19.3.0.tgz", + "integrity": "sha512-M7e2zXGfTjH8NLiwqKLdWC9VlfMSQDYlI4/SM4OSpPqhUTfPlRPa+wNKNTG7perKfDXxE9ei8yjocujknXJk/A==", "cpu": [ "x64" ], @@ -5354,9 +5553,9 @@ } }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.12.0.tgz", - "integrity": "sha512-+ac02NL/2TCKRrJu2wffk1kZ+RyqxVUlbjSagNgPm94frxtr+XDL12E5Ll1enWskLrtrZ2r8L3wED1orIibV/w==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.18.0.tgz", + "integrity": "sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==", "cpu": [ "arm" ], @@ -5367,9 +5566,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.12.0.tgz", - "integrity": "sha512-OBqcX2BMe6nvjQ0Nyp7cC90cnumt8PXmO7Dp3gfAju/6YwG0Tj74z1vKrfRz7qAv23nBcYM8BCbhrsWqO7PzQQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.18.0.tgz", + "integrity": "sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==", "cpu": [ "arm64" ], @@ -5380,9 +5579,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.12.0.tgz", - "integrity": "sha512-X64tZd8dRE/QTrBIEs63kaOBG0b5GVEd3ccoLtyf6IdXtHdh8h+I56C2yC3PtC9Ucnv0CpNFJLqKFVgCYe0lOQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.18.0.tgz", + "integrity": "sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==", "cpu": [ "arm64" ], @@ -5393,9 +5592,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.12.0.tgz", - "integrity": "sha512-cc71KUZoVbUJmGP2cOuiZ9HSOP14AzBAThn3OU+9LcA1+IUqswJyR1cAJj3Mg55HbjZP6OLAIscbQsQLrpgTOg==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.18.0.tgz", + "integrity": "sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==", "cpu": [ "x64" ], @@ -5406,9 +5605,22 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.12.0.tgz", - "integrity": "sha512-a6w/Y3hyyO6GlpKL2xJ4IOh/7d+APaqLYdMf86xnczU3nurFTaVN9s9jOXQg97BE4nYm/7Ga51rjec5nfRdrvA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.18.0.tgz", + "integrity": "sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.18.0.tgz", + "integrity": "sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==", "cpu": [ "arm" ], @@ -5419,9 +5631,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.12.0.tgz", - "integrity": "sha512-0fZBq27b+D7Ar5CQMofVN8sggOVhEtzFUwOwPppQt0k+VR+7UHMZZY4y+64WJ06XOhBTKXtQB/Sv0NwQMXyNAA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.18.0.tgz", + "integrity": "sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==", "cpu": [ "arm64" ], @@ -5432,9 +5644,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.12.0.tgz", - "integrity": "sha512-eTvzUS3hhhlgeAv6bfigekzWZjaEX9xP9HhxB0Dvrdbkk5w/b+1Sxct2ZuDxNJKzsRStSq1EaEkVSEe7A7ipgQ==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.18.0.tgz", + "integrity": "sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==", "cpu": [ "arm64" ], @@ -5444,10 +5656,23 @@ "linux" ] }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.18.0.tgz", + "integrity": "sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.12.0.tgz", - "integrity": "sha512-ix+qAB9qmrCRiaO71VFfY8rkiAZJL8zQRXveS27HS+pKdjwUfEhqo2+YF2oI+H/22Xsiski+qqwIBxVewLK7sw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.18.0.tgz", + "integrity": "sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==", "cpu": [ "riscv64" ], @@ -5457,10 +5682,23 @@ "linux" ] }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.18.0.tgz", + "integrity": "sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.12.0.tgz", - "integrity": "sha512-TenQhZVOtw/3qKOPa7d+QgkeM6xY0LtwzR8OplmyL5LrgTWIXpTQg2Q2ycBf8jm+SFW2Wt/DTn1gf7nFp3ssVA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.18.0.tgz", + "integrity": "sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==", "cpu": [ "x64" ], @@ -5471,9 +5709,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.12.0.tgz", - "integrity": "sha512-LfFdRhNnW0zdMvdCb5FNuWlls2WbbSridJvxOvYWgSBOYZtgBfW9UGNJG//rwMqTX1xQE9BAodvMH9tAusKDUw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.18.0.tgz", + "integrity": "sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==", "cpu": [ "x64" ], @@ -5484,9 +5722,9 @@ ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.12.0.tgz", - "integrity": "sha512-JPDxovheWNp6d7AHCgsUlkuCKvtu3RB55iNEkaQcf0ttsDU/JZF+iQnYcQJSk/7PtT4mjjVG8N1kpwnI9SLYaw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.18.0.tgz", + "integrity": "sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==", "cpu": [ "arm64" ], @@ -5497,9 +5735,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.12.0.tgz", - "integrity": "sha512-fjtuvMWRGJn1oZacG8IPnzIV6GF2/XG+h71FKn76OYFqySXInJtseAqdprVTDTyqPxQOG9Exak5/E9Z3+EJ8ZA==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.18.0.tgz", + "integrity": "sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==", "cpu": [ "ia32" ], @@ -5510,9 +5748,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.12.0.tgz", - "integrity": "sha512-ZYmr5mS2wd4Dew/JjT0Fqi2NPB/ZhZ2VvPp7SmvPZb4Y1CG/LRcS6tcRo2cYU7zLK5A7cdbhWnnWmUjoI4qapg==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.18.0.tgz", + "integrity": "sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==", "cpu": [ "x64" ], @@ -5523,27 +5761,21 @@ ] }, "node_modules/@schematics/angular": { - "version": "17.3.7", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-17.3.7.tgz", - "integrity": "sha512-HaJroKaberriP4wFefTTSVFrtU9GMvnG3I6ELbOteOyKMH7o2V91FXGJDJ5KnIiLRlBmC30G3r+9Ybc/rtAYkw==", + "version": "18.0.4", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-18.0.4.tgz", + "integrity": "sha512-fN4whuym9ZmcQFdTfwLZr4j+NcZ4LzbdLk8XYrYdxt1z8c9ujs5LqJYn0LYc3UWiYl7z2RVc9NOxzNrkiXdwlw==", "dev": true, "dependencies": { - "@angular-devkit/core": "17.3.7", - "@angular-devkit/schematics": "17.3.7", + "@angular-devkit/core": "18.0.4", + "@angular-devkit/schematics": "18.0.4", "jsonc-parser": "3.2.1" }, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, - "node_modules/@schematics/angular/node_modules/jsonc-parser": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", - "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", - "dev": true - }, "node_modules/@sideway/address": { "version": "4.1.4", "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", @@ -5566,72 +5798,74 @@ "dev": true }, "node_modules/@sigstore/bundle": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-2.2.0.tgz", - "integrity": "sha512-5VI58qgNs76RDrwXNhpmyN/jKpq9evV/7f1XrcqcAfvxDl5SeVY/I5Rmfe96ULAV7/FK5dge9RBKGBJPhL1WsQ==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-2.3.2.tgz", + "integrity": "sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==", "dev": true, "dependencies": { - "@sigstore/protobuf-specs": "^0.3.0" + "@sigstore/protobuf-specs": "^0.3.2" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@sigstore/core": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@sigstore/core/-/core-1.0.0.tgz", - "integrity": "sha512-dW2qjbWLRKGu6MIDUTBuJwXCnR8zivcSpf5inUzk7y84zqy/dji0/uahppoIgMoKeR+6pUZucrwHfkQQtiG9Rw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@sigstore/core/-/core-1.1.0.tgz", + "integrity": "sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==", "dev": true, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@sigstore/protobuf-specs": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.3.0.tgz", - "integrity": "sha512-zxiQ66JFOjVvP9hbhGj/F/qNdsZfkGb/dVXSanNRNuAzMlr4MC95voPUBX8//ZNnmv3uSYzdfR/JSkrgvZTGxA==", + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.3.2.tgz", + "integrity": "sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==", "dev": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@sigstore/sign": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-2.2.3.tgz", - "integrity": "sha512-LqlA+ffyN02yC7RKszCdMTS6bldZnIodiox+IkT8B2f8oRYXCB3LQ9roXeiEL21m64CVH1wyveYAORfD65WoSw==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-2.3.2.tgz", + "integrity": "sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==", "dev": true, "dependencies": { - "@sigstore/bundle": "^2.2.0", + "@sigstore/bundle": "^2.3.2", "@sigstore/core": "^1.0.0", - "@sigstore/protobuf-specs": "^0.3.0", - "make-fetch-happen": "^13.0.0" + "@sigstore/protobuf-specs": "^0.3.2", + "make-fetch-happen": "^13.0.1", + "proc-log": "^4.2.0", + "promise-retry": "^2.0.1" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@sigstore/tuf": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-2.3.1.tgz", - "integrity": "sha512-9Iv40z652td/QbV0o5n/x25H9w6IYRt2pIGbTX55yFDYlApDQn/6YZomjz6+KBx69rXHLzHcbtTS586mDdFD+Q==", + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-2.3.4.tgz", + "integrity": "sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==", "dev": true, "dependencies": { - "@sigstore/protobuf-specs": "^0.3.0", - "tuf-js": "^2.2.0" + "@sigstore/protobuf-specs": "^0.3.2", + "tuf-js": "^2.2.1" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@sigstore/verify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@sigstore/verify/-/verify-1.1.0.tgz", - "integrity": "sha512-1fTqnqyTBWvV7cftUUFtDcHPdSox0N3Ub7C0lRyReYx4zZUlNTZjCV+HPy4Lre+r45dV7Qx5JLKvqqsgxuyYfg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@sigstore/verify/-/verify-1.2.1.tgz", + "integrity": "sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==", "dev": true, "dependencies": { - "@sigstore/bundle": "^2.2.0", - "@sigstore/core": "^1.0.0", - "@sigstore/protobuf-specs": "^0.3.0" + "@sigstore/bundle": "^2.3.2", + "@sigstore/core": "^1.1.0", + "@sigstore/protobuf-specs": "^0.3.2" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -5704,13 +5938,13 @@ } }, "node_modules/@tufjs/models": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-2.0.0.tgz", - "integrity": "sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-2.0.1.tgz", + "integrity": "sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==", "dev": true, "dependencies": { "@tufjs/canonical-json": "2.0.0", - "minimatch": "^9.0.3" + "minimatch": "^9.0.4" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -5726,9 +5960,9 @@ } }, "node_modules/@tufjs/models/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -5854,9 +6088,9 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.19.0", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.0.tgz", - "integrity": "sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==", + "version": "4.19.3", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.3.tgz", + "integrity": "sha512-KOzM7MhcBFlmnlr/fzISFF5vGWVSvN6fTd4T+ExOt08bA/dA5kpSzY52nMsI1KDFmUREpJelPYyuslLRSjjgCg==", "dev": true, "dependencies": { "@types/node": "*", @@ -5977,9 +6211,9 @@ "dev": true }, "node_modules/@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "version": "0.12.2", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz", + "integrity": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==", "dev": true }, "node_modules/@types/semver": { @@ -6125,6 +6359,31 @@ } } }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.4.0.tgz", + "integrity": "sha512-NQt9QLM4Tt8qrlBVY9lkMYzfYtNz8/6qwZg8pI3cMGlPnj6mOpRxxAm7BMJN9K0AiY+1BwJ5lVC650YJqYOuNg==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "7.4.0", + "@typescript-eslint/types": "7.4.0", + "@typescript-eslint/typescript-estree": "7.4.0", + "semver": "^7.5.4" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + } + }, "node_modules/@typescript-eslint/parser": { "version": "7.4.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.4.0.tgz", @@ -6170,157 +6429,6 @@ "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@typescript-eslint/type-utils": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.8.0.tgz", - "integrity": "sha512-H70R3AefQDQpz9mGv13Uhi121FNMh+WEaRqcXTX09YEDky21km4dV1ZXJIp8QjXc4ZaVkXVdohvWDzbnbHDS+A==", - "dev": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "7.8.0", - "@typescript-eslint/utils": "7.8.0", - "debug": "^4.3.4", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.56.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/scope-manager": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.8.0.tgz", - "integrity": "sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.8.0", - "@typescript-eslint/visitor-keys": "7.8.0" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.8.0.tgz", - "integrity": "sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==", - "dev": true, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.8.0.tgz", - "integrity": "sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.8.0", - "@typescript-eslint/visitor-keys": "7.8.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "minimatch": "^9.0.4", - "semver": "^7.6.0", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/utils": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.8.0.tgz", - "integrity": "sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.15", - "@types/semver": "^7.5.8", - "@typescript-eslint/scope-manager": "7.8.0", - "@typescript-eslint/types": "7.8.0", - "@typescript-eslint/typescript-estree": "7.8.0", - "semver": "^7.6.0" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.56.0" - } - }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.8.0.tgz", - "integrity": "sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.8.0", - "eslint-visitor-keys": "^3.4.3" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@typescript-eslint/type-utils/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/@typescript-eslint/types": { "version": "7.4.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.4.0.tgz", @@ -6387,18 +6495,15 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.4.0.tgz", - "integrity": "sha512-NQt9QLM4Tt8qrlBVY9lkMYzfYtNz8/6qwZg8pI3cMGlPnj6mOpRxxAm7BMJN9K0AiY+1BwJ5lVC650YJqYOuNg==", + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.13.0.tgz", + "integrity": "sha512-jceD8RgdKORVnB4Y6BqasfIkFhl4pajB1wVxrF4akxD2QPM8GNYjgGwEzYS+437ewlqqrg7Dw+6dhdpjMpeBFQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "7.4.0", - "@typescript-eslint/types": "7.4.0", - "@typescript-eslint/typescript-estree": "7.4.0", - "semver": "^7.5.4" + "@typescript-eslint/scope-manager": "7.13.0", + "@typescript-eslint/types": "7.13.0", + "@typescript-eslint/typescript-estree": "7.13.0" }, "engines": { "node": "^18.18.0 || >=20.0.0" @@ -6411,6 +6516,105 @@ "eslint": "^8.56.0" } }, + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.13.0.tgz", + "integrity": "sha512-ZrMCe1R6a01T94ilV13egvcnvVJ1pxShkE0+NDjDzH4nvG1wXpwsVI5bZCvE7AEDH1mXEx5tJSVR68bLgG7Dng==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.13.0", + "@typescript-eslint/visitor-keys": "7.13.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.13.0.tgz", + "integrity": "sha512-QWuwm9wcGMAuTsxP+qz6LBBd3Uq8I5Nv8xb0mk54jmNoCyDspnMvVsOxI6IsMmway5d1S9Su2+sCKv1st2l6eA==", + "dev": true, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.13.0.tgz", + "integrity": "sha512-cAvBvUoobaoIcoqox1YatXOnSl3gx92rCZoMRPzMNisDiM12siGilSM4+dJAekuuHTibI2hVC2fYK79iSFvWjw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.13.0", + "@typescript-eslint/visitor-keys": "7.13.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/visitor-keys": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.13.0.tgz", + "integrity": "sha512-nxn+dozQx+MK61nn/JP+M4eCkHDSxSLDpgE3WcQo0+fkjEolnaB5jswvIKC4K56By8MMgIho7f1PVxERHEo8rw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.13.0", + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/@typescript-eslint/visitor-keys": { "version": "7.4.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.4.0.tgz", @@ -6447,9 +6651,9 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", + "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", "dev": true, "dependencies": { "@webassemblyjs/helper-numbers": "1.11.6", @@ -6469,9 +6673,9 @@ "dev": true }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", "dev": true }, "node_modules/@webassemblyjs/helper-numbers": { @@ -6492,15 +6696,15 @@ "dev": true }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", + "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/wasm-gen": "1.12.1" } }, "node_modules/@webassemblyjs/ieee754": { @@ -6528,28 +6732,28 @@ "dev": true }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", + "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", + "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/ieee754": "1.11.6", "@webassemblyjs/leb128": "1.11.6", @@ -6557,24 +6761,24 @@ } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", + "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", + "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-api-error": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/ieee754": "1.11.6", @@ -6583,12 +6787,12 @@ } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", + "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@xtuc/long": "4.2.2" } }, @@ -6624,9 +6828,9 @@ } }, "node_modules/@zkochan/js-yaml": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz", - "integrity": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==", + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.7.tgz", + "integrity": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==", "dev": true, "dependencies": { "argparse": "^2.0.1" @@ -6747,9 +6951,9 @@ } }, "node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", + "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", "dev": true, "dependencies": { "debug": "^4.3.4" @@ -6974,9 +7178,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.18", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.18.tgz", - "integrity": "sha512-1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g==", + "version": "10.4.19", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", + "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", "dev": true, "funding": [ { @@ -6994,7 +7198,7 @@ ], "dependencies": { "browserslist": "^4.23.0", - "caniuse-lite": "^1.0.30001591", + "caniuse-lite": "^1.0.30001599", "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -7170,13 +7374,13 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.10", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.10.tgz", - "integrity": "sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==", + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", "dev": true, "dependencies": { "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.1", + "@babel/helper-define-polyfill-provider": "^0.6.2", "semver": "^6.3.1" }, "peerDependencies": { @@ -7193,57 +7397,25 @@ } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz", - "integrity": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==", + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", + "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.5.0", - "core-js-compat": "^3.34.0" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs3/node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz", - "integrity": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==", - "dev": true, - "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" + "@babel/helper-define-polyfill-provider": "^0.6.1", + "core-js-compat": "^3.36.1" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz", - "integrity": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==", + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.5.0" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-regenerator/node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz", - "integrity": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==", - "dev": true, - "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" + "@babel/helper-define-polyfill-provider": "^0.6.2" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" @@ -7533,13 +7705,19 @@ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, - "node_modules/builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "node_modules/bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", "dev": true, "dependencies": { - "semver": "^7.0.0" + "run-applescript": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/bytes": { @@ -7552,9 +7730,9 @@ } }, "node_modules/cacache": { - "version": "18.0.2", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.2.tgz", - "integrity": "sha512-r3NU8h/P+4lVUHfeRw1dtgQYar3DZMm4/cm2bZgOvrFC/su7budSOeqh52VJIC4U4iG1WWwV6vRW0znqBvxNuw==", + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.3.tgz", + "integrity": "sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==", "dev": true, "dependencies": { "@npmcli/fs": "^3.1.0", @@ -7584,40 +7762,40 @@ } }, "node_modules/cacache/node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", + "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/cacache/node_modules/lru-cache": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", - "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", "dev": true, "engines": { "node": "14 || >=16.14" } }, "node_modules/cacache/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -7729,15 +7907,9 @@ "dev": true }, "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -7750,6 +7922,9 @@ "engines": { "node": ">= 8.10.0" }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, "optionalDependencies": { "fsevents": "~2.3.2" } @@ -8290,9 +8465,9 @@ } }, "node_modules/core-js-compat": { - "version": "3.36.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.36.1.tgz", - "integrity": "sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==", + "version": "3.37.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", + "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", "dev": true, "dependencies": { "browserslist": "^4.23.0" @@ -8549,22 +8724,22 @@ } }, "node_modules/css-loader": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.10.0.tgz", - "integrity": "sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.1.tgz", + "integrity": "sha512-OxIR5P2mjO1PSXk44bWuQ8XtMK4dpEqpIyERCx3ewOo3I8EmbcxMPUc5ScLtQfgXtOojoMv57So4V/C02HQLsw==", "dev": true, "dependencies": { "icss-utils": "^5.1.0", "postcss": "^8.4.33", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.4", - "postcss-modules-scope": "^3.1.1", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", "postcss-modules-values": "^4.0.0", "postcss-value-parser": "^4.2.0", "semver": "^7.5.4" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", @@ -8572,7 +8747,7 @@ }, "peerDependencies": { "@rspack/core": "0.x || 1.x", - "webpack": "^5.0.0" + "webpack": "^5.27.0" }, "peerDependenciesMeta": { "@rspack/core": { @@ -8740,6 +8915,34 @@ "node": ">=0.10.0" } }, + "node_modules/default-browser": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", + "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", + "dev": true, + "dependencies": { + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", + "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/default-gateway": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", @@ -8837,7 +9040,7 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==", - "optional": true, + "devOptional": true, "engines": { "node": ">=8" } @@ -8980,9 +9183,9 @@ } }, "node_modules/dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.2.tgz", + "integrity": "sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==", "dev": true, "engines": { "node": ">=12" @@ -9106,9 +9309,9 @@ } }, "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.17.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz", + "integrity": "sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==", "dev": true, "dependencies": { "graceful-fs": "^4.2.4", @@ -9207,9 +9410,9 @@ "dev": true }, "node_modules/esbuild": { - "version": "0.19.11", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.11.tgz", - "integrity": "sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", "dev": true, "hasInstallScript": true, "bin": { @@ -9219,35 +9422,35 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/aix-ppc64": "0.19.11", - "@esbuild/android-arm": "0.19.11", - "@esbuild/android-arm64": "0.19.11", - "@esbuild/android-x64": "0.19.11", - "@esbuild/darwin-arm64": "0.19.11", - "@esbuild/darwin-x64": "0.19.11", - "@esbuild/freebsd-arm64": "0.19.11", - "@esbuild/freebsd-x64": "0.19.11", - "@esbuild/linux-arm": "0.19.11", - "@esbuild/linux-arm64": "0.19.11", - "@esbuild/linux-ia32": "0.19.11", - "@esbuild/linux-loong64": "0.19.11", - "@esbuild/linux-mips64el": "0.19.11", - "@esbuild/linux-ppc64": "0.19.11", - "@esbuild/linux-riscv64": "0.19.11", - "@esbuild/linux-s390x": "0.19.11", - "@esbuild/linux-x64": "0.19.11", - "@esbuild/netbsd-x64": "0.19.11", - "@esbuild/openbsd-x64": "0.19.11", - "@esbuild/sunos-x64": "0.19.11", - "@esbuild/win32-arm64": "0.19.11", - "@esbuild/win32-ia32": "0.19.11", - "@esbuild/win32-x64": "0.19.11" + "@esbuild/aix-ppc64": "0.20.2", + "@esbuild/android-arm": "0.20.2", + "@esbuild/android-arm64": "0.20.2", + "@esbuild/android-x64": "0.20.2", + "@esbuild/darwin-arm64": "0.20.2", + "@esbuild/darwin-x64": "0.20.2", + "@esbuild/freebsd-arm64": "0.20.2", + "@esbuild/freebsd-x64": "0.20.2", + "@esbuild/linux-arm": "0.20.2", + "@esbuild/linux-arm64": "0.20.2", + "@esbuild/linux-ia32": "0.20.2", + "@esbuild/linux-loong64": "0.20.2", + "@esbuild/linux-mips64el": "0.20.2", + "@esbuild/linux-ppc64": "0.20.2", + "@esbuild/linux-riscv64": "0.20.2", + "@esbuild/linux-s390x": "0.20.2", + "@esbuild/linux-x64": "0.20.2", + "@esbuild/netbsd-x64": "0.20.2", + "@esbuild/openbsd-x64": "0.20.2", + "@esbuild/sunos-x64": "0.20.2", + "@esbuild/win32-arm64": "0.20.2", + "@esbuild/win32-ia32": "0.20.2", + "@esbuild/win32-x64": "0.20.2" } }, "node_modules/esbuild-wasm": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.20.1.tgz", - "integrity": "sha512-6v/WJubRsjxBbQdz6izgvx7LsVFvVaGmSdwrFHmEzoVgfXL89hkKPoQHsnVI2ngOkcBUQT9kmAM1hVL1k/Av4A==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.21.3.tgz", + "integrity": "sha512-DMOV+eeVra0yVq3XIojfczdEQsz+RiFnpEj7lqs8Gux9mlTpN7yIbw0a4KzLspn0Uhw6UVEH3nUAidSqc/rcQg==", "dev": true, "bin": { "esbuild": "bin/esbuild" @@ -9956,15 +10159,6 @@ "node": ">=10" } }, - "node_modules/filesize": { - "version": "9.0.11", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-9.0.11.tgz", - "integrity": "sha512-gTAiTtI0STpKa5xesyTA9hA3LX4ga8sm2nWRcffEa1L/5vQwb4mj2MdzMkoHoGv4QzfDshQZuYscQSf8c4TKOA==", - "peer": true, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -10169,6 +10363,15 @@ "node": ">= 0.6" } }, + "node_modules/front-matter": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/front-matter/-/front-matter-4.0.2.tgz", + "integrity": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==", + "dev": true, + "dependencies": { + "js-yaml": "^3.13.1" + } + }, "node_modules/fs-constants": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", @@ -10201,12 +10404,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/fs-monkey": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", - "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==", - "dev": true - }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -10469,9 +10666,9 @@ } }, "node_modules/hosted-git-info": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", - "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz", + "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==", "dev": true, "dependencies": { "lru-cache": "^10.0.1" @@ -10481,9 +10678,9 @@ } }, "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", - "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", "dev": true, "engines": { "node": "14 || >=16.14" @@ -10665,27 +10862,20 @@ } }, "node_modules/http-proxy-middleware": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-3.0.0.tgz", + "integrity": "sha512-36AV1fIaI2cWRzHo+rbcxhe3M3jUDCNzc4D5zRl57sEWRAxdXYtw7FSQKYY6PDKssiAKjLYypbssHk+xs/kMXw==", "dev": true, "dependencies": { - "@types/http-proxy": "^1.17.8", + "@types/http-proxy": "^1.17.10", + "debug": "^4.3.4", "http-proxy": "^1.18.1", "is-glob": "^4.0.1", "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" + "micromatch": "^4.0.5" }, "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "@types/express": "^4.17.13" - }, - "peerDependenciesMeta": { - "@types/express": { - "optional": true - } + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/https-proxy-agent": { @@ -10710,6 +10900,15 @@ "node": ">=10.17.0" } }, + "node_modules/hyperdyperid": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz", + "integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==", + "dev": true, + "engines": { + "node": ">=10.18" + } + }, "node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", @@ -10764,9 +10963,9 @@ } }, "node_modules/ignore-walk": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.4.tgz", - "integrity": "sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==", + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.5.tgz", + "integrity": "sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==", "dev": true, "dependencies": { "minimatch": "^9.0.0" @@ -10785,9 +10984,9 @@ } }, "node_modules/ignore-walk/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -10918,18 +11117,18 @@ } }, "node_modules/inquirer": { - "version": "9.2.15", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.2.15.tgz", - "integrity": "sha512-vI2w4zl/mDluHt9YEQ/543VTCwPKWiHzKtm9dM2V0NdFcqEexDAjUHzO1oA60HRNaVifGXXM1tRRNluLVHa0Kg==", + "version": "9.2.22", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.2.22.tgz", + "integrity": "sha512-SqLLa/Oe5rZUagTR9z+Zd6izyatHglbmbvVofo1KzuVB54YHleWzeHNLoR7FOICGOeQSqeLh1cordb3MzhGcEw==", "dev": true, "dependencies": { - "@ljharb/through": "^2.3.12", + "@inquirer/figures": "^1.0.2", + "@ljharb/through": "^2.3.13", "ansi-escapes": "^4.3.2", "chalk": "^5.3.0", "cli-cursor": "^3.1.0", "cli-width": "^4.1.0", "external-editor": "^3.1.0", - "figures": "^3.2.0", "lodash": "^4.17.21", "mute-stream": "1.0.0", "ora": "^5.4.1", @@ -11063,6 +11262,39 @@ "node": ">=0.10.0" } }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dev": true, + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-inside-container/node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-interactive": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", @@ -11078,6 +11310,18 @@ "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", "dev": true }, + "node_modules/is-network-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.1.0.tgz", + "integrity": "sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==", + "dev": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -11282,9 +11526,9 @@ } }, "node_modules/jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz", + "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==", "dev": true, "dependencies": { "@isaacs/cliui": "^8.0.2" @@ -11300,9 +11544,9 @@ } }, "node_modules/jake": { - "version": "10.8.7", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", - "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz", + "integrity": "sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==", "dev": true, "dependencies": { "async": "^3.2.3", @@ -13208,9 +13452,9 @@ } }, "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", + "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", "dev": true }, "node_modules/jsonfile": { @@ -13288,15 +13532,6 @@ "node": ">=6" } }, - "node_modules/klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, "node_modules/launch-editor": { "version": "2.6.1", "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", @@ -13334,23 +13569,29 @@ } }, "node_modules/less-loader": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-11.1.0.tgz", - "integrity": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==", + "version": "12.2.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-12.2.0.tgz", + "integrity": "sha512-MYUxjSQSBUQmowc0l5nPieOYwMzGPUaTzB6inNW/bdPEG9zOL3eAAD1Qw5ZxSPk7we5dMojHwNODYMV1hq4EVg==", "dev": true, - "dependencies": { - "klona": "^2.0.4" - }, "engines": { - "node": ">= 14.15.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { + "@rspack/core": "0.x || 1.x", "less": "^3.5.0 || ^4.0.0", "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, "node_modules/less/node_modules/make-dir": { @@ -13435,6 +13676,37 @@ "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, + "node_modules/lmdb": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-3.0.8.tgz", + "integrity": "sha512-9rp8JT4jPhCRJUL7vRARa2N06OLSYzLwQsEkhC6Qu5XbcLyM/XBLMzDlgS/K7l7c5CdURLdDk9uE+hPFIogHTQ==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "msgpackr": "^1.9.9", + "node-addon-api": "^6.1.0", + "node-gyp-build-optional-packages": "5.1.1", + "ordered-binary": "^1.4.1", + "weak-lru-cache": "^1.2.2" + }, + "bin": { + "download-lmdb-prebuilds": "bin/download-prebuilds.js" + }, + "optionalDependencies": { + "@lmdb/lmdb-darwin-arm64": "3.0.8", + "@lmdb/lmdb-darwin-x64": "3.0.8", + "@lmdb/lmdb-linux-arm": "3.0.8", + "@lmdb/lmdb-linux-arm64": "3.0.8", + "@lmdb/lmdb-linux-x64": "3.0.8", + "@lmdb/lmdb-win32-x64": "3.0.8" + } + }, + "node_modules/lmdb/node_modules/node-addon-api": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==", + "dev": true + }, "node_modules/loader-runner": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", @@ -13601,18 +13873,6 @@ "yallist": "^3.0.2" } }, - "node_modules/magic-string": { - "version": "0.30.8", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.8.tgz", - "integrity": "sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==", - "dev": true, - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/make-dir": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", @@ -13635,9 +13895,9 @@ "dev": true }, "node_modules/make-fetch-happen": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz", - "integrity": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==", + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.1.tgz", + "integrity": "sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==", "dev": true, "dependencies": { "@npmcli/agent": "^2.0.0", @@ -13649,6 +13909,7 @@ "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", "negotiator": "^0.6.3", + "proc-log": "^4.2.0", "promise-retry": "^2.0.1", "ssri": "^10.0.0" }, @@ -13680,15 +13941,22 @@ } }, "node_modules/memfs": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", - "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.9.2.tgz", + "integrity": "sha512-f16coDZlTG1jskq3mxarwB+fGRrd0uXWt+o1WIhRfOwbXQZqUDsTVxQBFK9JjRQHblg8eAG2JSbprDXKjc7ijQ==", "dev": true, "dependencies": { - "fs-monkey": "^1.0.4" + "@jsonjoy.com/json-pack": "^1.0.3", + "@jsonjoy.com/util": "^1.1.2", + "sonic-forest": "^1.0.0", + "tslib": "^2.0.0" }, "engines": { "node": ">= 4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" } }, "node_modules/merge-descriptors": { @@ -13803,9 +14071,9 @@ } }, "node_modules/mini-css-extract-plugin": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.8.1.tgz", - "integrity": "sha512-/1HDlyFRxWIZPI1ZpgqlZ8jMw/1Dp/dl3P0L1jtZ+zVcHqwPhGwaJwKL00WVgfnBy6PWCde9W65or7IIETImuA==", + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.0.tgz", + "integrity": "sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==", "dev": true, "dependencies": { "schema-utils": "^4.0.0", @@ -13850,9 +14118,9 @@ } }, "node_modules/minipass": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "dev": true, "engines": { "node": ">=16 || 14 >=14.17" @@ -13871,9 +14139,9 @@ } }, "node_modules/minipass-fetch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz", - "integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.5.tgz", + "integrity": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==", "dev": true, "dependencies": { "minipass": "^7.0.3", @@ -13917,34 +14185,6 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/minipass-json-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", - "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", - "dev": true, - "dependencies": { - "jsonparse": "^1.3.1", - "minipass": "^3.0.0" - } - }, - "node_modules/minipass-json-stream/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-json-stream/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/minipass-pipeline": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", @@ -14071,6 +14311,52 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, + "node_modules/msgpackr": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.10.2.tgz", + "integrity": "sha512-L60rsPynBvNE+8BWipKKZ9jHcSGbtyJYIwjRq0VrIvQ08cRjntGXJYW/tmciZ2IHWIY8WEW32Qa2xbh5+SKBZA==", + "dev": true, + "optionalDependencies": { + "msgpackr-extract": "^3.0.2" + } + }, + "node_modules/msgpackr-extract": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.3.tgz", + "integrity": "sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "dependencies": { + "node-gyp-build-optional-packages": "5.2.2" + }, + "bin": { + "download-msgpackr-prebuilds": "bin/download-prebuilds.js" + }, + "optionalDependencies": { + "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.3", + "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.3", + "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.3" + } + }, + "node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.2.2.tgz", + "integrity": "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==", + "dev": true, + "optional": true, + "dependencies": { + "detect-libc": "^2.0.1" + }, + "bin": { + "node-gyp-build-optional-packages": "bin.js", + "node-gyp-build-optional-packages-optional": "optional.js", + "node-gyp-build-optional-packages-test": "build-test.js" + } + }, "node_modules/multicast-dns": { "version": "7.2.5", "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", @@ -14208,15 +14494,15 @@ } }, "node_modules/ngx-cookie-service": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/ngx-cookie-service/-/ngx-cookie-service-17.1.0.tgz", - "integrity": "sha512-m4YI9IEgTaEBDMCz7oeVsO6UX14EmCzg29cTL6yxW8f7oye9wv56egi+3C4wAVSRPkI+cWlqnIOr+XyHwYQYmg==", + "version": "18.0.0", + "resolved": "https://registry.npmjs.org/ngx-cookie-service/-/ngx-cookie-service-18.0.0.tgz", + "integrity": "sha512-hkkUckzZTXXWtFgvVkT2hg6mwYMLXioXDZWBsVCOy9gYkADjsj0N5VViO7eo2izQ0VcMPd/Etog1trf/T4oZMQ==", "dependencies": { "tslib": "^2.6.2" }, "peerDependencies": { - "@angular/common": "^17.0.0", - "@angular/core": "^17.0.0" + "@angular/common": "^18.0.0-rc.0", + "@angular/core": "^18.0.0-rc.0" } }, "node_modules/ngx-file-drop": { @@ -14235,45 +14521,32 @@ "@angular/core": ">=14.0.0" } }, - "node_modules/ngx-filesize": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/ngx-filesize/-/ngx-filesize-3.0.3.tgz", - "integrity": "sha512-qqP2p4WbbF7R+NXC9NqRQdAfWfMAYJ2Ijf4ezRCq7j3tPY6ybSP9AZ3FY1U7/95n1hmOJ2U5oY+oFb7LhHQRBw==", - "dependencies": { - "tslib": "^2.3.0" - }, - "peerDependencies": { - "@angular/common": ">= 14.2.0 < 18.0.0", - "@angular/core": ">= 14.2.0 < 18.0.0", - "filesize": ">= 6.0.0 < 10.0.0" - } - }, - "node_modules/ngx-ui-tour-core": { - "version": "12.0.2", - "resolved": "https://registry.npmjs.org/ngx-ui-tour-core/-/ngx-ui-tour-core-12.0.2.tgz", - "integrity": "sha512-x5TOu4mtjojga+ht5LraQU+vOc4by4gof6TKGXDXsyW3kgWXqf7iJm5GUR+aLk7cr9FWdQYVUU+yTUmlI7XhOQ==", - "dependencies": { - "tslib": "^2.0.0" - }, - "peerDependencies": { - "@angular/common": "^17.0.0", - "@angular/core": "^17.0.0", - "@angular/router": "^17.0.0", - "rxjs": "^7.4.0" - } - }, "node_modules/ngx-ui-tour-ng-bootstrap": { - "version": "14.0.3", - "resolved": "https://registry.npmjs.org/ngx-ui-tour-ng-bootstrap/-/ngx-ui-tour-ng-bootstrap-14.0.3.tgz", - "integrity": "sha512-jc/WSSxApouwVpcuP9gOVMUjB8F7Buu2AXiYC05mYVgEnY8L2lFnC9TU8HtmT0nY9e2rnrQNu+wAeetu2REcDA==", + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/ngx-ui-tour-ng-bootstrap/-/ngx-ui-tour-ng-bootstrap-15.0.0.tgz", + "integrity": "sha512-oaQdQof8Xsrr11CoZ7NlFiczAv60xKqK5ScmUXc96COKp1TY0PehSyqps3OO2ypwbn2tzJwTY+kO1T0h8KvDGA==", "dependencies": { - "ngx-ui-tour-core": "12.0.2", + "ngx-ui-tour-core": "13.0.0", "tslib": "^2.0.0" }, "peerDependencies": { - "@angular/common": "^17.0.0", - "@angular/core": "^17.0.0", - "@ng-bootstrap/ng-bootstrap": "^16.0.0" + "@angular/common": "^18.0.0", + "@angular/core": "^18.0.0", + "@ng-bootstrap/ng-bootstrap": "^17.0.0" + } + }, + "node_modules/ngx-ui-tour-ng-bootstrap/node_modules/ngx-ui-tour-core": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/ngx-ui-tour-core/-/ngx-ui-tour-core-13.0.0.tgz", + "integrity": "sha512-svtp3zMoOnkGPL6eBKtJX3gsIir8aJzVg5KfSKNVO4ZMHGgh+MK55WfvmX8juv3gSJMBCMZta5b/7gjEn2g/Iw==", + "dependencies": { + "tslib": "^2.0.0" + }, + "peerDependencies": { + "@angular/common": "^18.0.0", + "@angular/core": "^18.0.0", + "@angular/router": "^18.0.0", + "rxjs": "^7.4.0" } }, "node_modules/nice-napi": { @@ -14350,9 +14623,9 @@ } }, "node_modules/node-gyp": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.0.1.tgz", - "integrity": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.1.0.tgz", + "integrity": "sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==", "dev": true, "dependencies": { "env-paths": "^2.2.0", @@ -14374,9 +14647,9 @@ } }, "node_modules/node-gyp-build": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.0.tgz", - "integrity": "sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==", + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", + "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", "dev": true, "optional": true, "bin": { @@ -14385,6 +14658,20 @@ "node-gyp-build-test": "build-test.js" } }, + "node_modules/node-gyp-build-optional-packages": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.1.1.tgz", + "integrity": "sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==", + "dev": true, + "dependencies": { + "detect-libc": "^2.0.1" + }, + "bin": { + "node-gyp-build-optional-packages": "bin.js", + "node-gyp-build-optional-packages-optional": "optional.js", + "node-gyp-build-optional-packages-test": "build-test.js" + } + }, "node_modules/node-gyp/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", @@ -14395,22 +14682,22 @@ } }, "node_modules/node-gyp/node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", + "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -14426,9 +14713,9 @@ } }, "node_modules/node-gyp/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -14440,6 +14727,15 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/node-gyp/node_modules/proc-log": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", + "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, "node_modules/node-gyp/node_modules/which": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", @@ -14473,9 +14769,9 @@ "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" }, "node_modules/nopt": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.0.tgz", - "integrity": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==", + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.1.tgz", + "integrity": "sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==", "dev": true, "dependencies": { "abbrev": "^2.0.0" @@ -14488,9 +14784,9 @@ } }, "node_modules/normalize-package-data": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", - "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.1.tgz", + "integrity": "sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==", "dev": true, "dependencies": { "hosted-git-info": "^7.0.0", @@ -14520,9 +14816,9 @@ } }, "node_modules/npm-bundled": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz", - "integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.1.tgz", + "integrity": "sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==", "dev": true, "dependencies": { "npm-normalize-package-bin": "^3.0.0" @@ -14553,13 +14849,13 @@ } }, "node_modules/npm-package-arg": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.1.tgz", - "integrity": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==", + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.2.tgz", + "integrity": "sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==", "dev": true, "dependencies": { "hosted-git-info": "^7.0.0", - "proc-log": "^3.0.0", + "proc-log": "^4.0.0", "semver": "^7.3.5", "validate-npm-package-name": "^5.0.0" }, @@ -14580,9 +14876,9 @@ } }, "node_modules/npm-pick-manifest": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.0.tgz", - "integrity": "sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==", + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.1.tgz", + "integrity": "sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==", "dev": true, "dependencies": { "npm-install-checks": "^6.0.0", @@ -14595,18 +14891,19 @@ } }, "node_modules/npm-registry-fetch": { - "version": "16.1.0", - "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-16.1.0.tgz", - "integrity": "sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==", + "version": "17.1.0", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-17.1.0.tgz", + "integrity": "sha512-5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA==", "dev": true, "dependencies": { + "@npmcli/redact": "^2.0.0", + "jsonparse": "^1.3.1", "make-fetch-happen": "^13.0.0", "minipass": "^7.0.2", "minipass-fetch": "^3.0.0", - "minipass-json-stream": "^1.0.1", "minizlib": "^2.1.2", "npm-package-arg": "^11.0.0", - "proc-log": "^3.0.0" + "proc-log": "^4.0.0" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -14655,17 +14952,17 @@ "dev": true }, "node_modules/nx": { - "version": "17.2.8", - "resolved": "https://registry.npmjs.org/nx/-/nx-17.2.8.tgz", - "integrity": "sha512-rM5zXbuXLEuqQqcjVjClyvHwRJwt+NVImR2A6KFNG40Z60HP6X12wAxxeLHF5kXXTDRU0PFhf/yACibrpbPrAw==", + "version": "19.3.0", + "resolved": "https://registry.npmjs.org/nx/-/nx-19.3.0.tgz", + "integrity": "sha512-WILWiROUkZWwuPJ12tP24Z0NULPEhxFN9i55/fECuVXYaFtkg6FvEne9C4d4bRqhZPcbrz6WhHnzE3NhdjH7XQ==", "dev": true, "hasInstallScript": true, "dependencies": { - "@nrwl/tao": "17.2.8", + "@nrwl/tao": "19.3.0", "@yarnpkg/lockfile": "^1.1.0", "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.5.1", + "@zkochan/js-yaml": "0.0.7", + "axios": "^1.6.0", "chalk": "^4.1.0", "cli-cursor": "3.1.0", "cli-spinners": "2.6.1", @@ -14675,18 +14972,18 @@ "enquirer": "~2.3.6", "figures": "3.2.0", "flat": "^5.0.2", + "front-matter": "^4.0.2", "fs-extra": "^11.1.0", - "glob": "7.1.4", "ignore": "^5.0.4", "jest-diff": "^29.4.1", - "js-yaml": "4.1.0", "jsonc-parser": "3.2.0", "lines-and-columns": "~2.0.3", - "minimatch": "3.0.5", + "minimatch": "9.0.3", "node-machine-id": "1.1.12", "npm-run-path": "^4.0.1", "open": "^8.4.0", - "semver": "7.5.3", + "ora": "5.3.0", + "semver": "^7.5.3", "string-width": "^4.2.3", "strong-log-transformer": "^2.1.0", "tar-stream": "~2.2.0", @@ -14701,19 +14998,19 @@ "nx-cloud": "bin/nx-cloud.js" }, "optionalDependencies": { - "@nx/nx-darwin-arm64": "17.2.8", - "@nx/nx-darwin-x64": "17.2.8", - "@nx/nx-freebsd-x64": "17.2.8", - "@nx/nx-linux-arm-gnueabihf": "17.2.8", - "@nx/nx-linux-arm64-gnu": "17.2.8", - "@nx/nx-linux-arm64-musl": "17.2.8", - "@nx/nx-linux-x64-gnu": "17.2.8", - "@nx/nx-linux-x64-musl": "17.2.8", - "@nx/nx-win32-arm64-msvc": "17.2.8", - "@nx/nx-win32-x64-msvc": "17.2.8" + "@nx/nx-darwin-arm64": "19.3.0", + "@nx/nx-darwin-x64": "19.3.0", + "@nx/nx-freebsd-x64": "19.3.0", + "@nx/nx-linux-arm-gnueabihf": "19.3.0", + "@nx/nx-linux-arm64-gnu": "19.3.0", + "@nx/nx-linux-arm64-musl": "19.3.0", + "@nx/nx-linux-x64-gnu": "19.3.0", + "@nx/nx-linux-x64-musl": "19.3.0", + "@nx/nx-win32-arm64-msvc": "19.3.0", + "@nx/nx-win32-x64-msvc": "19.3.0" }, "peerDependencies": { - "@swc-node/register": "^1.6.7", + "@swc-node/register": "^1.8.0", "@swc/core": "^1.3.85" }, "peerDependenciesMeta": { @@ -14740,11 +15037,14 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/nx/node_modules/argparse": { + "node_modules/nx/node_modules/brace-expansion": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } }, "node_modules/nx/node_modules/chalk": { "version": "4.1.2", @@ -14780,23 +15080,6 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/nx/node_modules/glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - } - }, "node_modules/nx/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -14806,55 +15089,47 @@ "node": ">=8" } }, - "node_modules/nx/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/nx/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } + "node_modules/nx/node_modules/jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "dev": true }, "node_modules/nx/node_modules/minimatch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", - "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "*" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/nx/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", + "node_modules/nx/node_modules/ora": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.3.0.tgz", + "integrity": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "bl": "^4.0.3", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "log-symbols": "^4.0.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" }, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/nx/node_modules/supports-color": { @@ -14869,12 +15144,6 @@ "node": ">=8" } }, - "node_modules/nx/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", @@ -15092,6 +15361,12 @@ "node": ">=8" } }, + "node_modules/ordered-binary": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.5.1.tgz", + "integrity": "sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A==", + "dev": true + }, "node_modules/os-tmpdir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", @@ -15159,16 +15434,20 @@ } }, "node_modules/p-retry": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-6.2.0.tgz", + "integrity": "sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==", "dev": true, "dependencies": { - "@types/retry": "0.12.0", + "@types/retry": "0.12.2", + "is-network-error": "^1.0.0", "retry": "^0.13.1" }, "engines": { - "node": ">=8" + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-retry/node_modules/retry": { @@ -15190,32 +15469,31 @@ } }, "node_modules/pacote": { - "version": "17.0.6", - "resolved": "https://registry.npmjs.org/pacote/-/pacote-17.0.6.tgz", - "integrity": "sha512-cJKrW21VRE8vVTRskJo78c/RCvwJCn1f4qgfxL4w77SOWrTCRcmfkYHlHtS0gqpgjv3zhXflRtgsrUCX5xwNnQ==", + "version": "18.0.6", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-18.0.6.tgz", + "integrity": "sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==", "dev": true, "dependencies": { "@npmcli/git": "^5.0.0", "@npmcli/installed-package-contents": "^2.0.1", + "@npmcli/package-json": "^5.1.0", "@npmcli/promise-spawn": "^7.0.0", - "@npmcli/run-script": "^7.0.0", + "@npmcli/run-script": "^8.0.0", "cacache": "^18.0.0", "fs-minipass": "^3.0.0", "minipass": "^7.0.2", "npm-package-arg": "^11.0.0", "npm-packlist": "^8.0.0", "npm-pick-manifest": "^9.0.0", - "npm-registry-fetch": "^16.0.0", - "proc-log": "^3.0.0", + "npm-registry-fetch": "^17.0.0", + "proc-log": "^4.0.0", "promise-retry": "^2.0.1", - "read-package-json": "^7.0.0", - "read-package-json-fast": "^3.0.0", "sigstore": "^2.2.0", "ssri": "^10.0.0", "tar": "^6.1.11" }, "bin": { - "pacote": "lib/bin.js" + "pacote": "bin/index.js" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -15511,16 +15789,16 @@ "dev": true }, "node_modules/path-scurry": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", - "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "dev": true, "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", + "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -15576,18 +15854,6 @@ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, - "node_modules/picomatch": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.1.tgz", - "integrity": "sha512-xUXwsxNjwTQ8K3GnT4pCJm+xq3RUPQbmkYJTP5aFIfNIvbcc/4MUxgBaaRSZJ6yGJZiGSyYlM6MzwTsRk8SYCg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, "node_modules/pify": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", @@ -15608,9 +15874,9 @@ } }, "node_modules/piscina": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/piscina/-/piscina-4.4.0.tgz", - "integrity": "sha512-+AQduEJefrOApE4bV7KRmp3N2JnnyErlVqq4P/jmko4FPz9Z877BCccl/iB3FdrWSUkvbGV9Kan/KllJgat3Vg==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/piscina/-/piscina-4.5.0.tgz", + "integrity": "sha512-iBaLWI56PFP81cfBSomWTmhOo9W2/yhIOL+Tk8O1vBCpK39cM0tGxB+wgYjG31qq4ohGvysfXSdnj8h7g4rZxA==", "dev": true, "optionalDependencies": { "nice-napi": "^1.0.2" @@ -15758,9 +16024,9 @@ } }, "node_modules/postcss": { - "version": "8.4.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz", - "integrity": "sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==", + "version": "8.4.38", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", + "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", "dev": true, "funding": [ { @@ -15779,7 +16045,7 @@ "dependencies": { "nanoid": "^3.3.7", "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "source-map-js": "^1.2.0" }, "engines": { "node": "^10 || ^12 || >=14" @@ -15823,9 +16089,9 @@ "dev": true }, "node_modules/postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", "dev": true, "engines": { "node": "^10 || ^12 || >= 14" @@ -15835,9 +16101,9 @@ } }, "node_modules/postcss-modules-local-by-default": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.4.tgz", - "integrity": "sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", + "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", "dev": true, "dependencies": { "icss-utils": "^5.0.0", @@ -15852,9 +16118,9 @@ } }, "node_modules/postcss-modules-scope": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.1.1.tgz", - "integrity": "sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", + "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", "dev": true, "dependencies": { "postcss-selector-parser": "^6.0.4" @@ -15882,9 +16148,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.0.15", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", - "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", + "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", "dev": true, "dependencies": { "cssesc": "^3.0.0", @@ -15936,9 +16202,9 @@ } }, "node_modules/proc-log": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", - "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-4.2.0.tgz", + "integrity": "sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==", "dev": true, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" @@ -16136,98 +16402,6 @@ "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "dev": true }, - "node_modules/read-package-json": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-7.0.0.tgz", - "integrity": "sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg==", - "dev": true, - "dependencies": { - "glob": "^10.2.2", - "json-parse-even-better-errors": "^3.0.0", - "normalize-package-data": "^6.0.0", - "npm-normalize-package-bin": "^3.0.0" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/read-package-json-fast": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", - "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", - "dev": true, - "dependencies": { - "json-parse-even-better-errors": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/read-package-json-fast/node_modules/json-parse-even-better-errors": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz", - "integrity": "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/read-package-json/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/read-package-json/node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/read-package-json/node_modules/json-parse-even-better-errors": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz", - "integrity": "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/read-package-json/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", @@ -16502,9 +16676,9 @@ } }, "node_modules/rollup": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.12.0.tgz", - "integrity": "sha512-wz66wn4t1OHIJw3+XU7mJJQV/2NAfw5OAk6G6Hoo3zcvz/XOfQ52Vgi+AN4Uxoxi0KBBwk2g8zPrTDA4btSB/Q==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.18.0.tgz", + "integrity": "sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==", "dev": true, "dependencies": { "@types/estree": "1.0.5" @@ -16517,22 +16691,37 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.12.0", - "@rollup/rollup-android-arm64": "4.12.0", - "@rollup/rollup-darwin-arm64": "4.12.0", - "@rollup/rollup-darwin-x64": "4.12.0", - "@rollup/rollup-linux-arm-gnueabihf": "4.12.0", - "@rollup/rollup-linux-arm64-gnu": "4.12.0", - "@rollup/rollup-linux-arm64-musl": "4.12.0", - "@rollup/rollup-linux-riscv64-gnu": "4.12.0", - "@rollup/rollup-linux-x64-gnu": "4.12.0", - "@rollup/rollup-linux-x64-musl": "4.12.0", - "@rollup/rollup-win32-arm64-msvc": "4.12.0", - "@rollup/rollup-win32-ia32-msvc": "4.12.0", - "@rollup/rollup-win32-x64-msvc": "4.12.0", + "@rollup/rollup-android-arm-eabi": "4.18.0", + "@rollup/rollup-android-arm64": "4.18.0", + "@rollup/rollup-darwin-arm64": "4.18.0", + "@rollup/rollup-darwin-x64": "4.18.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.18.0", + "@rollup/rollup-linux-arm-musleabihf": "4.18.0", + "@rollup/rollup-linux-arm64-gnu": "4.18.0", + "@rollup/rollup-linux-arm64-musl": "4.18.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.18.0", + "@rollup/rollup-linux-riscv64-gnu": "4.18.0", + "@rollup/rollup-linux-s390x-gnu": "4.18.0", + "@rollup/rollup-linux-x64-gnu": "4.18.0", + "@rollup/rollup-linux-x64-musl": "4.18.0", + "@rollup/rollup-win32-arm64-msvc": "4.18.0", + "@rollup/rollup-win32-ia32-msvc": "4.18.0", + "@rollup/rollup-win32-x64-msvc": "4.18.0", "fsevents": "~2.3.2" } }, + "node_modules/run-applescript": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz", + "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/run-async": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/run-async/-/run-async-3.0.0.tgz", @@ -16599,9 +16788,9 @@ "dev": true }, "node_modules/sass": { - "version": "1.71.1", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.71.1.tgz", - "integrity": "sha512-wovtnV2PxzteLlfNzbgm1tFXPLoZILYAMJtvoXXkD7/+1uP41eKkIt1ypWq5/q2uT94qHjXehEYfmjKOvjL9sg==", + "version": "1.77.2", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.2.tgz", + "integrity": "sha512-eb4GZt1C3avsX3heBNlrc7I09nyT00IUuo4eFhAbeXWU2fvA7oXI53SxODVAA+zgZCk9aunAZgO+losjR3fAwA==", "dev": true, "dependencies": { "chokidar": ">=3.0.0 <4.0.0", @@ -16616,9 +16805,9 @@ } }, "node_modules/sass-loader": { - "version": "14.1.1", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-14.1.1.tgz", - "integrity": "sha512-QX8AasDg75monlybel38BZ49JP5Z+uSKfKwF2rO7S74BywaRmGQMUBw9dtkS+ekyM/QnP+NOrRYq8ABMZ9G8jw==", + "version": "14.2.1", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-14.2.1.tgz", + "integrity": "sha512-G0VcnMYU18a4N7VoNDegg2OuMjYtxnqzQWARVWCIVSZwJeiL9kg8QMsuIZOplsJgTzZLF6jGxI3AClj8I9nRdQ==", "dev": true, "dependencies": { "neo-async": "^2.6.2" @@ -16713,12 +16902,9 @@ } }, "node_modules/semver": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", - "dependencies": { - "lru-cache": "^6.0.0" - }, + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", "bin": { "semver": "bin/semver.js" }, @@ -16726,22 +16912,6 @@ "node": ">=10" } }, - "node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, "node_modules/send": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", @@ -16985,17 +17155,17 @@ "devOptional": true }, "node_modules/sigstore": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-2.2.2.tgz", - "integrity": "sha512-2A3WvXkQurhuMgORgT60r6pOWiCOO5LlEqY2ADxGBDGVYLSo5HN0uLtb68YpVpuL/Vi8mLTe7+0Dx2Fq8lLqEg==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-2.3.1.tgz", + "integrity": "sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==", "dev": true, "dependencies": { - "@sigstore/bundle": "^2.2.0", + "@sigstore/bundle": "^2.3.2", "@sigstore/core": "^1.0.0", - "@sigstore/protobuf-specs": "^0.3.0", - "@sigstore/sign": "^2.2.3", - "@sigstore/tuf": "^2.3.1", - "@sigstore/verify": "^1.1.0" + "@sigstore/protobuf-specs": "^0.3.2", + "@sigstore/sign": "^2.3.2", + "@sigstore/tuf": "^2.3.4", + "@sigstore/verify": "^1.2.1" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -17078,9 +17248,9 @@ } }, "node_modules/socks": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.1.tgz", - "integrity": "sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ==", + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", + "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", "dev": true, "dependencies": { "ip-address": "^9.0.5", @@ -17092,12 +17262,12 @@ } }, "node_modules/socks-proxy-agent": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", - "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.3.tgz", + "integrity": "sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==", "dev": true, "dependencies": { - "agent-base": "^7.0.2", + "agent-base": "^7.1.1", "debug": "^4.3.4", "socks": "^2.7.1" }, @@ -17105,6 +17275,25 @@ "node": ">= 14" } }, + "node_modules/sonic-forest": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sonic-forest/-/sonic-forest-1.0.3.tgz", + "integrity": "sha512-dtwajos6IWMEWXdEbW1IkEkyL2gztCAgDplRIX+OT5aRKnEd5e7r7YCxRgXZdhRP1FBdOBf8axeTPhzDv8T4wQ==", + "dev": true, + "dependencies": { + "tree-dump": "^1.0.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, "node_modules/source-map": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", @@ -17115,9 +17304,9 @@ } }, "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", "dev": true, "engines": { "node": ">=0.10.0" @@ -17207,9 +17396,9 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.17", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", - "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", + "version": "3.0.18", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz", + "integrity": "sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==", "dev": true }, "node_modules/spdy": { @@ -17249,9 +17438,9 @@ "dev": true }, "node_modules/ssri": { - "version": "10.0.5", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", - "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", + "version": "10.0.6", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz", + "integrity": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==", "dev": true, "dependencies": { "minipass": "^7.0.3" @@ -17531,9 +17720,9 @@ "devOptional": true }, "node_modules/terser": { - "version": "5.29.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.29.1.tgz", - "integrity": "sha512-lZQ/fyaIGxsbGxApKmoPTODIzELy3++mXhS5hOqaAWZjQtpq/hFHAc+rm29NND1rYRxRWKcjuARNwULNXa5RtQ==", + "version": "5.31.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.0.tgz", + "integrity": "sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==", "dev": true, "dependencies": { "@jridgewell/source-map": "^0.3.3", @@ -17689,6 +17878,18 @@ "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, + "node_modules/thingies": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/thingies/-/thingies-1.21.0.tgz", + "integrity": "sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==", + "dev": true, + "engines": { + "node": ">=10.18" + }, + "peerDependencies": { + "tslib": "^2" + } + }, "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", @@ -17780,6 +17981,22 @@ "node": ">=12" } }, + "node_modules/tree-dump": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.1.tgz", + "integrity": "sha512-WCkcRBVPSlHHq1dc/px9iOfqklvzCbdRwvlNfxGZsrHqf6aZttfPrd7DJTt6oR10dwUfpFFQeVTkPbBIZxX/YA==", + "dev": true, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, "node_modules/tree-kill": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", @@ -17916,14 +18133,14 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/tuf-js": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-2.2.0.tgz", - "integrity": "sha512-ZSDngmP1z6zw+FIkIBjvOp/II/mIub/O7Pp12j1WNsiCpg5R5wAc//i555bBQsE44O94btLt0xM/Zr2LQjwdCg==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-2.2.1.tgz", + "integrity": "sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==", "dev": true, "dependencies": { - "@tufjs/models": "2.0.0", + "@tufjs/models": "2.0.1", "debug": "^4.3.4", - "make-fetch-happen": "^13.0.0" + "make-fetch-happen": "^13.0.1" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -17982,9 +18199,9 @@ "dev": true }, "node_modules/typescript": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", - "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", + "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -17994,12 +18211,12 @@ } }, "node_modules/undici": { - "version": "6.11.1", - "resolved": "https://registry.npmjs.org/undici/-/undici-6.11.1.tgz", - "integrity": "sha512-KyhzaLJnV1qa3BSHdj4AZ2ndqI0QWPxYzaIOio0WzcEJB9gvuysprJSLtpvc2D9mhR9jPDUk7xlJlZbH2KR5iw==", + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.18.0.tgz", + "integrity": "sha512-nT8jjv/fE9Et1ilR6QoW8ingRTY2Pp4l2RUrdzV5Yz35RJDrtPc1DXvuNqcpsJSGIRHFdt3YKKktTzJA6r0fTA==", "dev": true, "engines": { - "node": ">=18.0" + "node": ">=18.17" } }, "node_modules/undici-types": { @@ -18202,13 +18419,10 @@ } }, "node_modules/validate-npm-package-name": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", - "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz", + "integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==", "dev": true, - "dependencies": { - "builtins": "^5.0.0" - }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } @@ -18223,14 +18437,14 @@ } }, "node_modules/vite": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.1.7.tgz", - "integrity": "sha512-sgnEEFTZYMui/sTlH1/XEnVNHMujOahPLGMxn1+5sIT45Xjng1Ec1K78jRP15dSmVgg5WBin9yO81j3o9OxofA==", + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.11.tgz", + "integrity": "sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==", "dev": true, "dependencies": { - "esbuild": "^0.19.3", - "postcss": "^8.4.35", - "rollup": "^4.2.0" + "esbuild": "^0.20.1", + "postcss": "^8.4.38", + "rollup": "^4.13.0" }, "bin": { "vite": "bin/vite.js" @@ -18318,9 +18532,9 @@ } }, "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", + "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", "dev": true, "dependencies": { "glob-to-regexp": "^0.4.1", @@ -18348,6 +18562,12 @@ "defaults": "^1.0.3" } }, + "node_modules/weak-lru-cache": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/weak-lru-cache/-/weak-lru-cache-1.2.2.tgz", + "integrity": "sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==", + "dev": true + }, "node_modules/webidl-conversions": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", @@ -18358,26 +18578,26 @@ } }, "node_modules/webpack": { - "version": "5.90.3", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.90.3.tgz", - "integrity": "sha512-h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA==", + "version": "5.91.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.91.0.tgz", + "integrity": "sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==", "dev": true, "dependencies": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^1.0.5", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", "acorn": "^8.7.1", "acorn-import-assertions": "^1.9.0", "browserslist": "^4.21.10", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.16.0", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", @@ -18385,7 +18605,7 @@ "schema-utils": "^3.2.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.3.10", - "watchpack": "^2.4.0", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { @@ -18405,19 +18625,20 @@ } }, "node_modules/webpack-dev-middleware": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.1.2.tgz", - "integrity": "sha512-Wu+EHmX326YPYUpQLKmKbTyZZJIB8/n6R09pTmB03kJmnMsVPTo9COzHZFr01txwaCAuZvfBJE4ZCHRcKs5JaQ==", + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.2.1.tgz", + "integrity": "sha512-hRLz+jPQXo999Nx9fXVdKlg/aehsw1ajA9skAneGmT03xwmyuhvF93p6HUKKbWhXdcERtGTzUCtIQr+2IQegrA==", "dev": true, "dependencies": { "colorette": "^2.0.10", - "memfs": "^3.4.12", + "memfs": "^4.6.0", "mime-types": "^2.1.31", + "on-finished": "^2.4.1", "range-parser": "^1.2.1", "schema-utils": "^4.0.0" }, "engines": { - "node": ">= 14.15.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", @@ -18433,54 +18654,54 @@ } }, "node_modules/webpack-dev-server": { - "version": "4.15.1", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", - "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.0.4.tgz", + "integrity": "sha512-dljXhUgx3HqKP2d8J/fUMvhxGhzjeNVarDLcbO/EWMSgRizDkxHQDZQaLFL5VJY9tRBj2Gz+rvCEYYvhbqPHNA==", "dev": true, "dependencies": { - "@types/bonjour": "^3.5.9", - "@types/connect-history-api-fallback": "^1.3.5", - "@types/express": "^4.17.13", - "@types/serve-index": "^1.9.1", - "@types/serve-static": "^1.13.10", - "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.5", + "@types/bonjour": "^3.5.13", + "@types/connect-history-api-fallback": "^1.5.4", + "@types/express": "^4.17.21", + "@types/serve-index": "^1.9.4", + "@types/serve-static": "^1.15.5", + "@types/sockjs": "^0.3.36", + "@types/ws": "^8.5.10", "ansi-html-community": "^0.0.8", - "bonjour-service": "^1.0.11", - "chokidar": "^3.5.3", + "bonjour-service": "^1.2.1", + "chokidar": "^3.6.0", "colorette": "^2.0.10", "compression": "^1.7.4", "connect-history-api-fallback": "^2.0.0", "default-gateway": "^6.0.3", "express": "^4.17.3", "graceful-fs": "^4.2.6", - "html-entities": "^2.3.2", + "html-entities": "^2.4.0", "http-proxy-middleware": "^2.0.3", - "ipaddr.js": "^2.0.1", - "launch-editor": "^2.6.0", - "open": "^8.0.9", - "p-retry": "^4.5.0", - "rimraf": "^3.0.2", - "schema-utils": "^4.0.0", - "selfsigned": "^2.1.1", + "ipaddr.js": "^2.1.0", + "launch-editor": "^2.6.1", + "open": "^10.0.3", + "p-retry": "^6.2.0", + "rimraf": "^5.0.5", + "schema-utils": "^4.2.0", + "selfsigned": "^2.4.1", "serve-index": "^1.9.1", "sockjs": "^0.3.24", "spdy": "^4.0.2", - "webpack-dev-middleware": "^5.3.1", - "ws": "^8.13.0" + "webpack-dev-middleware": "^7.1.0", + "ws": "^8.16.0" }, "bin": { "webpack-dev-server": "bin/webpack-dev-server.js" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "webpack": "^4.37.0 || ^5.0.0" + "webpack": "^5.0.0" }, "peerDependenciesMeta": { "webpack": { @@ -18491,27 +18712,137 @@ } } }, - "node_modules/webpack-dev-server/node_modules/webpack-dev-middleware": { - "version": "5.3.4", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", - "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", + "node_modules/webpack-dev-server/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.3", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" - }, + "balanced-match": "^1.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "dev": true, "engines": { - "node": ">= 12.13.0" + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-server/node_modules/glob": { + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", + "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/webpack-dev-server/node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "dev": true, + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" }, "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", + "dev": true, + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-server/node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/webpack-dev-server/node_modules/open": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz", + "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==", + "dev": true, + "dependencies": { + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^3.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-server/node_modules/rimraf": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.7.tgz", + "integrity": "sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==", + "dev": true, + "dependencies": { + "glob": "^10.3.7" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/webpack-merge": { @@ -18846,9 +19177,9 @@ } }, "node_modules/ws": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", - "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz", + "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==", "dev": true, "engines": { "node": ">=10.0.0" diff --git a/src-ui/package.json b/src-ui/package.json index 3e5d5466a..010578bf4 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -11,17 +11,17 @@ }, "private": true, "dependencies": { - "@angular/cdk": "^17.3.10", - "@angular/common": "~17.3.9", - "@angular/compiler": "~17.3.9", - "@angular/core": "~17.3.9", - "@angular/forms": "~17.3.9", - "@angular/localize": "~17.3.9", - "@angular/platform-browser": "~17.3.9", - "@angular/platform-browser-dynamic": "~17.3.9", - "@angular/router": "~17.3.9", - "@ng-bootstrap/ng-bootstrap": "^16.0.0", - "@ng-select/ng-select": "^12.0.7", + "@angular/cdk": "^18.0.3", + "@angular/common": "~18.0.3", + "@angular/compiler": "~18.0.3", + "@angular/core": "~18.0.3", + "@angular/forms": "~18.0.3", + "@angular/localize": "~18.0.3", + "@angular/platform-browser": "~18.0.3", + "@angular/platform-browser-dynamic": "~18.0.3", + "@angular/router": "~18.0.3", + "@ng-bootstrap/ng-bootstrap": "^17.0.0", + "@ng-select/ng-select": "^13.2.0", "@ngneat/dirty-check-forms": "^3.0.3", "@popperjs/core": "^2.11.8", "bootstrap": "^5.3.3", @@ -30,35 +30,37 @@ "ng2-pdf-viewer": "^10.2.2", "ngx-bootstrap-icons": "^1.9.3", "ngx-color": "^9.0.0", - "ngx-cookie-service": "^17.1.0", + "ngx-cookie-service": "^18.0.0", "ngx-file-drop": "^16.0.0", - "ngx-filesize": "^3.0.3", - "ngx-ui-tour-ng-bootstrap": "^14.0.3", + "ngx-ui-tour-ng-bootstrap": "^15.0.0", "rxjs": "^7.8.1", "tslib": "^2.6.2", "uuid": "^9.0.1", "zone.js": "^0.14.4" }, "devDependencies": { - "@angular-builders/jest": "17.0.3", - "@angular-devkit/build-angular": "~17.3.7", - "@angular-eslint/builder": "17.4.1", - "@angular-eslint/eslint-plugin": "17.4.1", - "@angular-eslint/eslint-plugin-template": "17.4.1", - "@angular-eslint/schematics": "17.4.1", - "@angular-eslint/template-parser": "17.4.1", - "@angular/cli": "~17.3.7", - "@angular/compiler-cli": "~17.3.2", + "@angular-builders/jest": "^18.0.0-beta.3", + "@angular-devkit/build-angular": "^18.0.4", + "@angular-devkit/core": "^18.0.4", + "@angular-devkit/schematics": "^18.0.4", + "@angular-eslint/builder": "18.0.1", + "@angular-eslint/eslint-plugin": "18.0.1", + "@angular-eslint/eslint-plugin-template": "18.0.1", + "@angular-eslint/schematics": "18.0.1", + "@angular-eslint/template-parser": "18.0.1", + "@angular/cli": "~18.0.4", + "@angular/compiler-cli": "~18.0.3", "@playwright/test": "^1.42.1", "@types/jest": "^29.5.12", "@types/node": "^20.12.2", "@typescript-eslint/eslint-plugin": "^7.4.0", "@typescript-eslint/parser": "^7.4.0", + "@typescript-eslint/utils": "^7.13.0", "concurrently": "^8.2.2", "eslint": "^8.57.0", "jest": "29.7.0", "jest-environment-jsdom": "^29.7.0", - "jest-preset-angular": "^14.1.0", + "jest-preset-angular": "^14.0.0", "jest-websocket-mock": "^2.5.0", "patch-package": "^8.0.0", "ts-node": "~10.9.1", diff --git a/src-ui/src/app/app.component.spec.ts b/src-ui/src/app/app.component.spec.ts index e5fac4cc5..a2d3d6795 100644 --- a/src-ui/src/app/app.component.spec.ts +++ b/src-ui/src/app/app.component.spec.ts @@ -1,4 +1,4 @@ -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed, @@ -24,6 +24,7 @@ import { NgbModalModule } from '@ng-bootstrap/ng-bootstrap' import { HotKeyService } from './services/hot-key.service' import { PermissionsGuard } from './guards/permissions.guard' import { DirtySavedViewGuard } from './guards/dirty-saved-view.guard' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('AppComponent', () => { let component: AppComponent @@ -39,14 +40,18 @@ describe('AppComponent', () => { beforeEach(async () => { TestBed.configureTestingModule({ declarations: [AppComponent, ToastsComponent, FileDropComponent], - providers: [PermissionsGuard, DirtySavedViewGuard], imports: [ - HttpClientTestingModule, TourNgBootstrapModule, RouterModule.forRoot(routes), NgxFileDropModule, NgbModalModule, ], + providers: [ + PermissionsGuard, + DirtySavedViewGuard, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() tourService = TestBed.inject(TourService) diff --git a/src-ui/src/app/app.module.ts b/src-ui/src/app/app.module.ts index 2232dad19..3c4edc085 100644 --- a/src-ui/src/app/app.module.ts +++ b/src-ui/src/app/app.module.ts @@ -7,7 +7,11 @@ import { NgbDateParserFormatter, NgbModule, } from '@ng-bootstrap/ng-bootstrap' -import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http' +import { + HTTP_INTERCEPTORS, + provideHttpClient, + withInterceptorsFromDi, +} from '@angular/common/http' import { DocumentListComponent } from './components/document-list/document-list.component' import { DocumentDetailComponent } from './components/document-detail/document-detail.component' import { DashboardComponent } from './components/dashboard/dashboard.component' @@ -115,7 +119,6 @@ import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons' import { ConfirmButtonComponent } from './components/common/confirm-button/confirm-button.component' import { MonetaryComponent } from './components/common/input/monetary/monetary.component' import { SystemStatusDialogComponent } from './components/common/system-status-dialog/system-status-dialog.component' -import { NgxFilesizeModule } from 'ngx-filesize' import { RotateConfirmDialogComponent } from './components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component' import { MergeConfirmDialogComponent } from './components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component' import { SplitConfirmDialogComponent } from './components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component' @@ -500,11 +503,11 @@ function initializeApp(settings: SettingsService) { DeletePagesConfirmDialogComponent, TrashComponent, ], + bootstrap: [AppComponent], imports: [ BrowserModule, AppRoutingModule, NgbModule, - HttpClientModule, FormsModule, ReactiveFormsModule, PdfViewerModule, @@ -514,7 +517,6 @@ function initializeApp(settings: SettingsService) { TourNgBootstrapModule, DragDropModule, NgxBootstrapIconsModule.pick(icons), - NgxFilesizeModule, ], providers: [ { @@ -543,7 +545,7 @@ function initializeApp(settings: SettingsService) { DirtyDocGuard, DirtySavedViewGuard, UsernamePipe, + provideHttpClient(withInterceptorsFromDi()), ], - bootstrap: [AppComponent], }) export class AppModule {} diff --git a/src-ui/src/app/components/admin/config/config.component.spec.ts b/src-ui/src/app/components/admin/config/config.component.spec.ts index abc7da322..1eb9ea8a9 100644 --- a/src-ui/src/app/components/admin/config/config.component.spec.ts +++ b/src-ui/src/app/components/admin/config/config.component.spec.ts @@ -5,7 +5,7 @@ import { ConfigService } from 'src/app/services/config.service' import { ToastService } from 'src/app/services/toast.service' import { of, throwError } from 'rxjs' import { OutputTypeConfig } from 'src/app/data/paperless-config' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { BrowserModule } from '@angular/platform-browser' import { NgbModule } from '@ng-bootstrap/ng-bootstrap' import { NgSelectModule } from '@ng-select/ng-select' @@ -18,6 +18,7 @@ import { SelectComponent } from '../../common/input/select/select.component' import { FileComponent } from '../../common/input/file/file.component' import { SettingsService } from 'src/app/services/settings.service' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('ConfigComponent', () => { let component: ConfigComponent @@ -38,7 +39,6 @@ describe('ConfigComponent', () => { PageHeaderComponent, ], imports: [ - HttpClientTestingModule, BrowserModule, NgbModule, NgSelectModule, @@ -46,6 +46,10 @@ describe('ConfigComponent', () => { ReactiveFormsModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() configService = TestBed.inject(ConfigService) diff --git a/src-ui/src/app/components/admin/logs/logs.component.spec.ts b/src-ui/src/app/components/admin/logs/logs.component.spec.ts index d58823fe3..482eebb66 100644 --- a/src-ui/src/app/components/admin/logs/logs.component.spec.ts +++ b/src-ui/src/app/components/admin/logs/logs.component.spec.ts @@ -8,10 +8,11 @@ import { LogService } from 'src/app/services/rest/log.service' import { PageHeaderComponent } from '../../common/page-header/page-header.component' import { LogsComponent } from './logs.component' import { of, throwError } from 'rxjs' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { NgbModule, NgbNavLink } from '@ng-bootstrap/ng-bootstrap' import { BrowserModule, By } from '@angular/platform-browser' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const paperless_logs = [ '[2023-05-29 03:05:01,224] [DEBUG] [paperless.tasks] Training data unchanged.', @@ -37,13 +38,15 @@ describe('LogsComponent', () => { beforeEach(async () => { TestBed.configureTestingModule({ declarations: [LogsComponent, PageHeaderComponent], - providers: [], imports: [ - HttpClientTestingModule, BrowserModule, NgbModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() logService = TestBed.inject(LogService) diff --git a/src-ui/src/app/components/admin/settings/settings.component.spec.ts b/src-ui/src/app/components/admin/settings/settings.component.spec.ts index 47581ddba..98d8e2d72 100644 --- a/src-ui/src/app/components/admin/settings/settings.component.spec.ts +++ b/src-ui/src/app/components/admin/settings/settings.component.spec.ts @@ -1,5 +1,5 @@ import { ViewportScroller, DatePipe } from '@angular/common' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { By } from '@angular/platform-browser' @@ -50,6 +50,7 @@ import { } from 'src/app/data/system-status' import { DragDropSelectComponent } from '../../common/input/drag-drop-select/drag-drop-select.component' import { DragDropModule } from '@angular/cdk/drag-drop' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const savedViews = [ { id: 1, name: 'view1', show_in_sidebar: true, show_on_dashboard: true }, @@ -100,10 +101,8 @@ describe('SettingsComponent', () => { ConfirmButtonComponent, DragDropSelectComponent, ], - providers: [CustomDatePipe, DatePipe, PermissionsGuard], imports: [ NgbModule, - HttpClientTestingModule, RouterTestingModule.withRoutes(routes), FormsModule, ReactiveFormsModule, @@ -113,6 +112,13 @@ describe('SettingsComponent', () => { NgbModalModule, DragDropModule, ], + providers: [ + CustomDatePipe, + DatePipe, + PermissionsGuard, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() router = TestBed.inject(Router) diff --git a/src-ui/src/app/components/admin/tasks/tasks.component.spec.ts b/src-ui/src/app/components/admin/tasks/tasks.component.spec.ts index 2bed5930c..1ad2d5311 100644 --- a/src-ui/src/app/components/admin/tasks/tasks.component.spec.ts +++ b/src-ui/src/app/components/admin/tasks/tasks.component.spec.ts @@ -1,7 +1,7 @@ import { DatePipe } from '@angular/common' import { HttpTestingController, - HttpClientTestingModule, + provideHttpClientTesting, } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { By } from '@angular/platform-browser' @@ -30,6 +30,7 @@ import { TasksComponent } from './tasks.component' import { PermissionsGuard } from 'src/app/guards/permissions.guard' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { FormsModule } from '@angular/forms' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const tasks: PaperlessTask[] = [ { @@ -125,6 +126,12 @@ describe('TasksComponent', () => { CustomDatePipe, ConfirmDialogComponent, ], + imports: [ + NgbModule, + RouterTestingModule.withRoutes(routes), + NgxBootstrapIconsModule.pick(allIcons), + FormsModule, + ], providers: [ { provide: PermissionsService, @@ -135,13 +142,8 @@ describe('TasksComponent', () => { CustomDatePipe, DatePipe, PermissionsGuard, - ], - imports: [ - NgbModule, - HttpClientTestingModule, - RouterTestingModule.withRoutes(routes), - NgxBootstrapIconsModule.pick(allIcons), - FormsModule, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/admin/trash/trash.component.spec.ts b/src-ui/src/app/components/admin/trash/trash.component.spec.ts index 063d4bb8f..57d4b4237 100644 --- a/src-ui/src/app/components/admin/trash/trash.component.spec.ts +++ b/src-ui/src/app/components/admin/trash/trash.component.spec.ts @@ -14,6 +14,7 @@ import { TrashService } from 'src/app/services/trash.service' import { of } from 'rxjs' import { ConfirmDialogComponent } from '../../common/confirm-dialog/confirm-dialog.component' import { By } from '@angular/platform-browser' +import { SafeHtmlPipe } from 'src/app/pipes/safehtml.pipe' const documentsInTrash = [ { @@ -42,6 +43,7 @@ describe('TrashComponent', () => { TrashComponent, PageHeaderComponent, ConfirmDialogComponent, + SafeHtmlPipe, ], imports: [ HttpClientTestingModule, diff --git a/src-ui/src/app/components/admin/users-groups/users-groups.component.spec.ts b/src-ui/src/app/components/admin/users-groups/users-groups.component.spec.ts index 79bc569dd..f166ad662 100644 --- a/src-ui/src/app/components/admin/users-groups/users-groups.component.spec.ts +++ b/src-ui/src/app/components/admin/users-groups/users-groups.component.spec.ts @@ -1,5 +1,5 @@ import { DatePipe } from '@angular/common' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed, @@ -44,6 +44,7 @@ import { UsersAndGroupsComponent } from './users-groups.component' import { User } from 'src/app/data/user' import { Group } from 'src/app/data/group' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const users = [ { id: 1, username: 'user1', is_superuser: false }, @@ -84,10 +85,8 @@ describe('UsersAndGroupsComponent', () => { PermissionsGroupComponent, IfOwnerDirective, ], - providers: [CustomDatePipe, DatePipe, PermissionsGuard], imports: [ NgbModule, - HttpClientTestingModule, RouterTestingModule.withRoutes(routes), FormsModule, ReactiveFormsModule, @@ -95,6 +94,13 @@ describe('UsersAndGroupsComponent', () => { NgSelectModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + CustomDatePipe, + DatePipe, + PermissionsGuard, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() fixture = TestBed.createComponent(UsersAndGroupsComponent) settingsService = TestBed.inject(SettingsService) diff --git a/src-ui/src/app/components/app-frame/app-frame.component.spec.ts b/src-ui/src/app/components/app-frame/app-frame.component.spec.ts index 1091e67f4..c1b53d63d 100644 --- a/src-ui/src/app/components/app-frame/app-frame.component.spec.ts +++ b/src-ui/src/app/components/app-frame/app-frame.component.spec.ts @@ -1,6 +1,6 @@ import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { AppFrameComponent } from './app-frame.component' import { @@ -37,6 +37,7 @@ import { SavedView } from 'src/app/data/saved-view' import { ProfileEditDialogComponent } from '../common/profile-edit-dialog/profile-edit-dialog.component' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { GlobalSearchComponent } from './global-search/global-search.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const saved_views = [ { @@ -100,7 +101,6 @@ describe('AppFrameComponent', () => { GlobalSearchComponent, ], imports: [ - HttpClientTestingModule, BrowserModule, RouterTestingModule.withRoutes(routes), NgbModule, @@ -150,6 +150,8 @@ describe('AppFrameComponent', () => { }, }, PermissionsGuard, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/app-frame/global-search/global-search.component.spec.ts b/src-ui/src/app/components/app-frame/global-search/global-search.component.spec.ts index f2a1ac3a6..a951319d7 100644 --- a/src-ui/src/app/components/app-frame/global-search/global-search.component.spec.ts +++ b/src-ui/src/app/components/app-frame/global-search/global-search.component.spec.ts @@ -17,7 +17,7 @@ import { import { CorrespondentEditDialogComponent } from '../../common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component' import { UserEditDialogComponent } from '../../common/edit-dialog/user-edit-dialog/user-edit-dialog.component' import { DocumentListViewService } from 'src/app/services/document-list-view.service' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { FILTER_FULLTEXT_QUERY, @@ -40,6 +40,7 @@ import { DataType } from 'src/app/data/datatype' import { queryParamsFromFilterRules } from 'src/app/utils/query-params' import { SettingsService } from 'src/app/services/settings.service' import { GlobalSearchType, SETTINGS_KEYS } from 'src/app/data/ui-settings' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const searchResults = { total: 11, @@ -139,13 +140,16 @@ describe('GlobalSearchComponent', () => { await TestBed.configureTestingModule({ declarations: [GlobalSearchComponent], imports: [ - HttpClientTestingModule, NgbModalModule, NgbDropdownModule, FormsModule, ReactiveFormsModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() searchService = TestBed.inject(SearchService) diff --git a/src-ui/src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.spec.ts b/src-ui/src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.spec.ts index 78fab8c8d..eec1c7349 100644 --- a/src-ui/src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.spec.ts @@ -1,11 +1,12 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { DeletePagesConfirmDialogComponent } from './delete-pages-confirm-dialog.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { SafeHtmlPipe } from 'src/app/pipes/safehtml.pipe' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { PdfViewerComponent } from 'ng2-pdf-viewer' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('DeletePagesConfirmDialogComponent', () => { let component: DeletePagesConfirmDialogComponent @@ -14,13 +15,17 @@ describe('DeletePagesConfirmDialogComponent', () => { beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [DeletePagesConfirmDialogComponent, PdfViewerComponent], - providers: [NgbActiveModal, SafeHtmlPipe], imports: [ - HttpClientTestingModule, NgxBootstrapIconsModule.pick(allIcons), FormsModule, ReactiveFormsModule, ], + providers: [ + NgbActiveModal, + SafeHtmlPipe, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() fixture = TestBed.createComponent(DeletePagesConfirmDialogComponent) component = fixture.componentInstance diff --git a/src-ui/src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.spec.ts b/src-ui/src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.spec.ts index c4da71817..d2fe17813 100644 --- a/src-ui/src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.spec.ts @@ -1,11 +1,12 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' import { MergeConfirmDialogComponent } from './merge-confirm-dialog.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { of } from 'rxjs' import { DocumentService } from 'src/app/services/rest/document.service' import { FormsModule, ReactiveFormsModule } from '@angular/forms' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('MergeConfirmDialogComponent', () => { let component: MergeConfirmDialogComponent @@ -15,13 +16,16 @@ describe('MergeConfirmDialogComponent', () => { beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [MergeConfirmDialogComponent], - providers: [NgbActiveModal], imports: [ - HttpClientTestingModule, NgxBootstrapIconsModule.pick(allIcons), ReactiveFormsModule, FormsModule, ], + providers: [ + NgbActiveModal, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() fixture = TestBed.createComponent(MergeConfirmDialogComponent) diff --git a/src-ui/src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.spec.ts b/src-ui/src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.spec.ts index d70e73747..041f6e1a9 100644 --- a/src-ui/src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.spec.ts @@ -2,8 +2,9 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { RotateConfirmDialogComponent } from './rotate-confirm-dialog.component' import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' import { SafeHtmlPipe } from 'src/app/pipes/safehtml.pipe' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('RotateConfirmDialogComponent', () => { let component: RotateConfirmDialogComponent @@ -12,10 +13,12 @@ describe('RotateConfirmDialogComponent', () => { beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [RotateConfirmDialogComponent, SafeHtmlPipe], - providers: [NgbActiveModal, SafeHtmlPipe], - imports: [ - HttpClientTestingModule, - NgxBootstrapIconsModule.pick(allIcons), + imports: [NgxBootstrapIconsModule.pick(allIcons)], + providers: [ + NgbActiveModal, + SafeHtmlPipe, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.spec.ts b/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.spec.ts index c010702fa..66bf2bf71 100644 --- a/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.spec.ts @@ -1,13 +1,14 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { SplitConfirmDialogComponent } from './split-confirm-dialog.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ReactiveFormsModule, FormsModule } from '@angular/forms' import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { DocumentService } from 'src/app/services/rest/document.service' import { PdfViewerModule } from 'ng2-pdf-viewer' import { of } from 'rxjs' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('SplitConfirmDialogComponent', () => { let component: SplitConfirmDialogComponent @@ -17,14 +18,17 @@ describe('SplitConfirmDialogComponent', () => { beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [SplitConfirmDialogComponent], - providers: [NgbActiveModal], imports: [ - HttpClientTestingModule, NgxBootstrapIconsModule.pick(allIcons), ReactiveFormsModule, FormsModule, PdfViewerModule, ], + providers: [ + NgbActiveModal, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() fixture = TestBed.createComponent(SplitConfirmDialogComponent) diff --git a/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.spec.ts b/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.spec.ts index 738198335..e347d2189 100644 --- a/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.spec.ts +++ b/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.spec.ts @@ -4,8 +4,9 @@ import { CustomField, CustomFieldDataType } from 'src/app/data/custom-field' import { DocumentService } from 'src/app/services/rest/document.service' import { CustomFieldDisplayComponent } from './custom-field-display.component' import { DisplayField, Document } from 'src/app/data/document' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { CustomFieldsService } from 'src/app/services/rest/custom-fields.service' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const customFields: CustomField[] = [ { id: 1, name: 'Field 1', data_type: CustomFieldDataType.String }, @@ -31,8 +32,12 @@ describe('CustomFieldDisplayComponent', () => { beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [CustomFieldDisplayComponent], - providers: [DocumentService], - imports: [HttpClientTestingModule], + imports: [], + providers: [ + DocumentService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() }) diff --git a/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.spec.ts b/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.spec.ts index 121591ef1..7cf568b5f 100644 --- a/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.spec.ts +++ b/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.spec.ts @@ -5,7 +5,7 @@ import { tick, } from '@angular/core/testing' import { CustomFieldsDropdownComponent } from './custom-fields-dropdown.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ToastService } from 'src/app/services/toast.service' import { CustomFieldsService } from 'src/app/services/rest/custom-fields.service' import { of } from 'rxjs' @@ -22,6 +22,7 @@ import { import { CustomFieldEditDialogComponent } from '../edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component' import { By } from '@angular/platform-browser' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const fields: CustomField[] = [ { @@ -47,7 +48,6 @@ describe('CustomFieldsDropdownComponent', () => { TestBed.configureTestingModule({ declarations: [CustomFieldsDropdownComponent, SelectComponent], imports: [ - HttpClientTestingModule, NgSelectModule, FormsModule, ReactiveFormsModule, @@ -55,6 +55,10 @@ describe('CustomFieldsDropdownComponent', () => { NgbDropdownModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) customFieldService = TestBed.inject(CustomFieldsService) toastService = TestBed.inject(ToastService) diff --git a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.spec.ts b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.spec.ts index 03338f014..19a327f17 100644 --- a/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.spec.ts +++ b/src-ui/src/app/components/common/dates-dropdown/dates-dropdown.component.spec.ts @@ -10,7 +10,7 @@ import { DateSelection, RelativeDate, } from './dates-dropdown.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { NgbModule } from '@ng-bootstrap/ng-bootstrap' import { SettingsService } from 'src/app/services/settings.service' import { ClearableBadgeComponent } from '../clearable-badge/clearable-badge.component' @@ -18,6 +18,7 @@ import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { CustomDatePipe } from 'src/app/pipes/custom-date.pipe' import { DatePipe } from '@angular/common' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('DatesDropdownComponent', () => { let component: DatesDropdownComponent @@ -31,14 +32,19 @@ describe('DatesDropdownComponent', () => { ClearableBadgeComponent, CustomDatePipe, ], - providers: [SettingsService, CustomDatePipe, DatePipe], imports: [ - HttpClientTestingModule, NgbModule, FormsModule, ReactiveFormsModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + SettingsService, + CustomDatePipe, + DatePipe, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() settingsService = TestBed.inject(SettingsService) diff --git a/src-ui/src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.spec.ts b/src-ui/src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.spec.ts index 9de47367c..608fff4fb 100644 --- a/src-ui/src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.spec.ts @@ -1,4 +1,4 @@ -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { NgbActiveModal, NgbModule } from '@ng-bootstrap/ng-bootstrap' @@ -11,6 +11,7 @@ import { SelectComponent } from '../../input/select/select.component' import { TextComponent } from '../../input/text/text.component' import { EditDialogMode } from '../edit-dialog.component' import { CorrespondentEditDialogComponent } from './correspondent-edit-dialog.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('CorrespondentEditDialogComponent', () => { let component: CorrespondentEditDialogComponent @@ -27,13 +28,11 @@ describe('CorrespondentEditDialogComponent', () => { TextComponent, PermissionsFormComponent, ], - providers: [NgbActiveModal], - imports: [ - HttpClientTestingModule, - FormsModule, - ReactiveFormsModule, - NgSelectModule, - NgbModule, + imports: [FormsModule, ReactiveFormsModule, NgSelectModule, NgbModule], + providers: [ + NgbActiveModal, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.spec.ts b/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.spec.ts index 9570cfc58..98fe73dc8 100644 --- a/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.spec.ts @@ -1,7 +1,7 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { CustomFieldEditDialogComponent } from './custom-field-edit-dialog.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { NgbActiveModal, NgbModule } from '@ng-bootstrap/ng-bootstrap' import { NgSelectModule } from '@ng-select/ng-select' @@ -12,6 +12,7 @@ import { SettingsService } from 'src/app/services/settings.service' import { SelectComponent } from '../../input/select/select.component' import { TextComponent } from '../../input/text/text.component' import { EditDialogMode } from '../edit-dialog.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('CustomFieldEditDialogComponent', () => { let component: CustomFieldEditDialogComponent @@ -28,13 +29,11 @@ describe('CustomFieldEditDialogComponent', () => { TextComponent, SafeHtmlPipe, ], - providers: [NgbActiveModal], - imports: [ - HttpClientTestingModule, - FormsModule, - ReactiveFormsModule, - NgSelectModule, - NgbModule, + imports: [FormsModule, ReactiveFormsModule, NgSelectModule, NgbModule], + providers: [ + NgbActiveModal, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.spec.ts b/src-ui/src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.spec.ts index 021953e31..0a0d32e65 100644 --- a/src-ui/src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.spec.ts @@ -1,4 +1,4 @@ -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { NgbActiveModal, NgbModule } from '@ng-bootstrap/ng-bootstrap' @@ -11,6 +11,7 @@ import { SelectComponent } from '../../input/select/select.component' import { TextComponent } from '../../input/text/text.component' import { EditDialogMode } from '../edit-dialog.component' import { DocumentTypeEditDialogComponent } from './document-type-edit-dialog.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('DocumentTypeEditDialogComponent', () => { let component: DocumentTypeEditDialogComponent @@ -27,13 +28,11 @@ describe('DocumentTypeEditDialogComponent', () => { TextComponent, PermissionsFormComponent, ], - providers: [NgbActiveModal], - imports: [ - HttpClientTestingModule, - FormsModule, - ReactiveFormsModule, - NgSelectModule, - NgbModule, + imports: [FormsModule, ReactiveFormsModule, NgSelectModule, NgbModule], + providers: [ + NgbActiveModal, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/edit-dialog/edit-dialog.component.spec.ts b/src-ui/src/app/components/common/edit-dialog/edit-dialog.component.spec.ts index 76b8706f4..48a45e693 100644 --- a/src-ui/src/app/components/common/edit-dialog/edit-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/edit-dialog/edit-dialog.component.spec.ts @@ -1,6 +1,6 @@ import { HttpTestingController, - HttpClientTestingModule, + provideHttpClientTesting, } from '@angular/common/http/testing' import { Component } from '@angular/core' import { @@ -30,6 +30,7 @@ import { UserService } from 'src/app/services/rest/user.service' import { SettingsService } from 'src/app/services/settings.service' import { environment } from 'src/environments/environment' import { EditDialogComponent, EditDialogMode } from './edit-dialog.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' @Component({ template: ` @@ -96,6 +97,7 @@ describe('EditDialogComponent', () => { beforeEach(async () => { TestBed.configureTestingModule({ declarations: [TestComponent], + imports: [FormsModule, ReactiveFormsModule], providers: [ NgbActiveModal, { @@ -114,8 +116,9 @@ describe('EditDialogComponent', () => { }, SettingsService, TagService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], - imports: [HttpClientTestingModule, FormsModule, ReactiveFormsModule], }).compileComponents() tagService = TestBed.inject(TagService) diff --git a/src-ui/src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.spec.ts b/src-ui/src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.spec.ts index 8f0ee46db..2111ebdfd 100644 --- a/src-ui/src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.spec.ts @@ -1,4 +1,4 @@ -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { NgbActiveModal, NgbModule } from '@ng-bootstrap/ng-bootstrap' @@ -12,6 +12,7 @@ import { TextComponent } from '../../input/text/text.component' import { PermissionsSelectComponent } from '../../permissions-select/permissions-select.component' import { EditDialogMode } from '../edit-dialog.component' import { GroupEditDialogComponent } from './group-edit-dialog.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('GroupEditDialogComponent', () => { let component: GroupEditDialogComponent @@ -29,13 +30,11 @@ describe('GroupEditDialogComponent', () => { PermissionsFormComponent, PermissionsSelectComponent, ], - providers: [NgbActiveModal], - imports: [ - HttpClientTestingModule, - FormsModule, - ReactiveFormsModule, - NgSelectModule, - NgbModule, + imports: [FormsModule, ReactiveFormsModule, NgSelectModule, NgbModule], + providers: [ + NgbActiveModal, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.spec.ts b/src-ui/src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.spec.ts index 46c4903f5..83262464b 100644 --- a/src-ui/src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.spec.ts @@ -1,6 +1,6 @@ import { HttpTestingController, - HttpClientTestingModule, + provideHttpClientTesting, } from '@angular/common/http/testing' import { ComponentFixture, @@ -23,6 +23,7 @@ import { SelectComponent } from '../../input/select/select.component' import { TextComponent } from '../../input/text/text.component' import { EditDialogMode } from '../edit-dialog.component' import { MailAccountEditDialogComponent } from './mail-account-edit-dialog.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('MailAccountEditDialogComponent', () => { let component: MailAccountEditDialogComponent @@ -42,13 +43,11 @@ describe('MailAccountEditDialogComponent', () => { PermissionsFormComponent, PasswordComponent, ], - providers: [NgbActiveModal], - imports: [ - HttpClientTestingModule, - FormsModule, - ReactiveFormsModule, - NgSelectModule, - NgbModule, + imports: [FormsModule, ReactiveFormsModule, NgSelectModule, NgbModule], + providers: [ + NgbActiveModal, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.spec.ts b/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.spec.ts index 8b2c398c9..53546a55d 100644 --- a/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.spec.ts @@ -1,4 +1,4 @@ -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { NgbActiveModal, NgbModule } from '@ng-bootstrap/ng-bootstrap' @@ -23,6 +23,7 @@ import { TagsComponent } from '../../input/tags/tags.component' import { TextComponent } from '../../input/text/text.component' import { EditDialogMode } from '../edit-dialog.component' import { MailRuleEditDialogComponent } from './mail-rule-edit-dialog.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('MailRuleEditDialogComponent', () => { let component: MailRuleEditDialogComponent @@ -43,6 +44,7 @@ describe('MailRuleEditDialogComponent', () => { SafeHtmlPipe, CheckComponent, ], + imports: [FormsModule, ReactiveFormsModule, NgSelectModule, NgbModule], providers: [ NgbActiveModal, { @@ -63,13 +65,8 @@ describe('MailRuleEditDialogComponent', () => { listAll: () => of([]), }, }, - ], - imports: [ - HttpClientTestingModule, - FormsModule, - ReactiveFormsModule, - NgSelectModule, - NgbModule, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.spec.ts b/src-ui/src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.spec.ts index f76f8996a..a042f2b4e 100644 --- a/src-ui/src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.spec.ts @@ -1,4 +1,4 @@ -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { NgbActiveModal, NgbModule } from '@ng-bootstrap/ng-bootstrap' @@ -12,6 +12,7 @@ import { SelectComponent } from '../../input/select/select.component' import { TextComponent } from '../../input/text/text.component' import { EditDialogMode } from '../edit-dialog.component' import { StoragePathEditDialogComponent } from './storage-path-edit-dialog.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('StoragePathEditDialogComponent', () => { let component: StoragePathEditDialogComponent @@ -29,13 +30,11 @@ describe('StoragePathEditDialogComponent', () => { PermissionsFormComponent, SafeHtmlPipe, ], - providers: [NgbActiveModal], - imports: [ - HttpClientTestingModule, - FormsModule, - ReactiveFormsModule, - NgSelectModule, - NgbModule, + imports: [FormsModule, ReactiveFormsModule, NgSelectModule, NgbModule], + providers: [ + NgbActiveModal, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.spec.ts b/src-ui/src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.spec.ts index c78c9d7c5..7107226ef 100644 --- a/src-ui/src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.spec.ts @@ -1,4 +1,4 @@ -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { NgbActiveModal, NgbModule } from '@ng-bootstrap/ng-bootstrap' @@ -14,6 +14,7 @@ import { TextComponent } from '../../input/text/text.component' import { EditDialogMode } from '../edit-dialog.component' import { TagEditDialogComponent } from './tag-edit-dialog.component' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('TagEditDialogComponent', () => { let component: TagEditDialogComponent @@ -32,15 +33,19 @@ describe('TagEditDialogComponent', () => { ColorComponent, CheckComponent, ], - providers: [NgbActiveModal, SettingsService], imports: [ - HttpClientTestingModule, FormsModule, ReactiveFormsModule, NgSelectModule, NgbModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + NgbActiveModal, + SettingsService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() fixture = TestBed.createComponent(TagEditDialogComponent) diff --git a/src-ui/src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.spec.ts b/src-ui/src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.spec.ts index afac0eabc..f6fc9a5f8 100644 --- a/src-ui/src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.spec.ts @@ -1,4 +1,4 @@ -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, @@ -19,6 +19,7 @@ import { TextComponent } from '../../input/text/text.component' import { PermissionsSelectComponent } from '../../permissions-select/permissions-select.component' import { EditDialogMode } from '../edit-dialog.component' import { UserEditDialogComponent } from './user-edit-dialog.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('UserEditDialogComponent', () => { let component: UserEditDialogComponent @@ -37,6 +38,7 @@ describe('UserEditDialogComponent', () => { PermissionsFormComponent, PermissionsSelectComponent, ], + imports: [FormsModule, ReactiveFormsModule, NgSelectModule, NgbModule], providers: [ NgbActiveModal, { @@ -54,13 +56,8 @@ describe('UserEditDialogComponent', () => { }, }, SettingsService, - ], - imports: [ - HttpClientTestingModule, - FormsModule, - ReactiveFormsModule, - NgSelectModule, - NgbModule, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.spec.ts b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.spec.ts index 8d8ef6850..39925f2f9 100644 --- a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.spec.ts @@ -1,4 +1,4 @@ -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { NgbActiveModal, NgbModule } from '@ng-bootstrap/ng-bootstrap' @@ -39,6 +39,7 @@ import { } from 'src/app/data/workflow-action' import { MATCHING_ALGORITHMS, MATCH_AUTO } from 'src/app/data/matching-model' import { ConfirmButtonComponent } from '../../confirm-button/confirm-button.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const workflow: Workflow = { name: 'Workflow 1', @@ -88,6 +89,7 @@ describe('WorkflowEditDialogComponent', () => { SafeHtmlPipe, ConfirmButtonComponent, ], + imports: [FormsModule, ReactiveFormsModule, NgSelectModule, NgbModule], providers: [ NgbActiveModal, { @@ -150,13 +152,8 @@ describe('WorkflowEditDialogComponent', () => { }), }, }, - ], - imports: [ - HttpClientTestingModule, - FormsModule, - ReactiveFormsModule, - NgSelectModule, - NgbModule, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/input/date/date.component.spec.ts b/src-ui/src/app/components/common/input/date/date.component.spec.ts index 5e73643f0..d0bd219d0 100644 --- a/src-ui/src/app/components/common/input/date/date.component.spec.ts +++ b/src-ui/src/app/components/common/input/date/date.component.spec.ts @@ -5,7 +5,7 @@ import { ReactiveFormsModule, } from '@angular/forms' import { DateComponent } from './date.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { NgbDateParserFormatter, NgbDatepickerModule, @@ -13,6 +13,7 @@ import { import { RouterTestingModule } from '@angular/router/testing' import { LocalizedDateParserFormatter } from 'src/app/utils/ngb-date-parser-formatter' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('DateComponent', () => { let component: DateComponent @@ -22,19 +23,20 @@ describe('DateComponent', () => { beforeEach(async () => { TestBed.configureTestingModule({ declarations: [DateComponent], + imports: [ + FormsModule, + ReactiveFormsModule, + NgbDatepickerModule, + RouterTestingModule, + NgxBootstrapIconsModule.pick(allIcons), + ], providers: [ { provide: NgbDateParserFormatter, useClass: LocalizedDateParserFormatter, }, - ], - imports: [ - FormsModule, - ReactiveFormsModule, - HttpClientTestingModule, - NgbDatepickerModule, - RouterTestingModule, - NgxBootstrapIconsModule.pick(allIcons), + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/input/document-link/document-link.component.spec.ts b/src-ui/src/app/components/common/input/document-link/document-link.component.spec.ts index a8686bb05..14f4747d4 100644 --- a/src-ui/src/app/components/common/input/document-link/document-link.component.spec.ts +++ b/src-ui/src/app/components/common/input/document-link/document-link.component.spec.ts @@ -1,4 +1,4 @@ -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, @@ -10,6 +10,7 @@ import { of, throwError } from 'rxjs' import { DocumentService } from 'src/app/services/rest/document.service' import { DocumentLinkComponent } from './document-link.component' import { FILTER_TITLE } from 'src/app/data/filter-rule-type' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const documents = [ { @@ -38,11 +39,10 @@ describe('DocumentLinkComponent', () => { beforeEach(() => { TestBed.configureTestingModule({ declarations: [DocumentLinkComponent], - imports: [ - HttpClientTestingModule, - NgSelectModule, - FormsModule, - ReactiveFormsModule, + imports: [NgSelectModule, FormsModule, ReactiveFormsModule], + providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }) documentService = TestBed.inject(DocumentService) diff --git a/src-ui/src/app/components/common/input/file/file.component.spec.ts b/src-ui/src/app/components/common/input/file/file.component.spec.ts index 86d135188..e5572643a 100644 --- a/src-ui/src/app/components/common/input/file/file.component.spec.ts +++ b/src-ui/src/app/components/common/input/file/file.component.spec.ts @@ -1,8 +1,9 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { FileComponent } from './file.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('FileComponent', () => { let component: FileComponent @@ -11,7 +12,11 @@ describe('FileComponent', () => { beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [FileComponent], - imports: [FormsModule, ReactiveFormsModule, HttpClientTestingModule], + imports: [FormsModule, ReactiveFormsModule], + providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() fixture = TestBed.createComponent(FileComponent) diff --git a/src-ui/src/app/components/common/input/monetary/monetary.component.spec.ts b/src-ui/src/app/components/common/input/monetary/monetary.component.spec.ts index 30b78dde7..e0872be44 100644 --- a/src-ui/src/app/components/common/input/monetary/monetary.component.spec.ts +++ b/src-ui/src/app/components/common/input/monetary/monetary.component.spec.ts @@ -4,9 +4,10 @@ import { NG_VALUE_ACCESSOR, ReactiveFormsModule, } from '@angular/forms' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { CurrencyPipe } from '@angular/common' import { MonetaryComponent } from './monetary.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('MonetaryComponent', () => { let component: MonetaryComponent @@ -15,8 +16,12 @@ describe('MonetaryComponent', () => { beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [MonetaryComponent], - providers: [CurrencyPipe], - imports: [FormsModule, ReactiveFormsModule, HttpClientTestingModule], + imports: [FormsModule, ReactiveFormsModule], + providers: [ + CurrencyPipe, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() fixture = TestBed.createComponent(MonetaryComponent) diff --git a/src-ui/src/app/components/common/input/number/number.component.spec.ts b/src-ui/src/app/components/common/input/number/number.component.spec.ts index df775a5ba..58c4c22b9 100644 --- a/src-ui/src/app/components/common/input/number/number.component.spec.ts +++ b/src-ui/src/app/components/common/input/number/number.component.spec.ts @@ -6,8 +6,9 @@ import { } from '@angular/forms' import { NumberComponent } from './number.component' import { DocumentService } from 'src/app/services/rest/document.service' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { of } from 'rxjs' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('NumberComponent', () => { let component: NumberComponent @@ -18,8 +19,12 @@ describe('NumberComponent', () => { beforeEach(async () => { TestBed.configureTestingModule({ declarations: [NumberComponent], - providers: [DocumentService], - imports: [FormsModule, ReactiveFormsModule, HttpClientTestingModule], + imports: [FormsModule, ReactiveFormsModule], + providers: [ + DocumentService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() fixture = TestBed.createComponent(NumberComponent) diff --git a/src-ui/src/app/components/common/input/permissions/permissions-form/permissions-form.component.spec.ts b/src-ui/src/app/components/common/input/permissions/permissions-form/permissions-form.component.spec.ts index bad414a8d..4c39353ac 100644 --- a/src-ui/src/app/components/common/input/permissions/permissions-form/permissions-form.component.spec.ts +++ b/src-ui/src/app/components/common/input/permissions/permissions-form/permissions-form.component.spec.ts @@ -9,8 +9,9 @@ import { SelectComponent } from '../../select/select.component' import { NgbAccordionModule } from '@ng-bootstrap/ng-bootstrap' import { PermissionsGroupComponent } from '../permissions-group/permissions-group.component' import { PermissionsUserComponent } from '../permissions-user/permissions-user.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { NgSelectModule } from '@ng-select/ng-select' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('PermissionsFormComponent', () => { let component: PermissionsFormComponent @@ -24,14 +25,16 @@ describe('PermissionsFormComponent', () => { PermissionsGroupComponent, PermissionsUserComponent, ], - providers: [], imports: [ FormsModule, ReactiveFormsModule, NgbAccordionModule, - HttpClientTestingModule, NgSelectModule, ], + providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() fixture = TestBed.createComponent(PermissionsFormComponent) diff --git a/src-ui/src/app/components/common/input/permissions/permissions-group/permissions-group.component.spec.ts b/src-ui/src/app/components/common/input/permissions/permissions-group/permissions-group.component.spec.ts index 7de1490ee..0cd5a58da 100644 --- a/src-ui/src/app/components/common/input/permissions/permissions-group/permissions-group.component.spec.ts +++ b/src-ui/src/app/components/common/input/permissions/permissions-group/permissions-group.component.spec.ts @@ -5,10 +5,11 @@ import { ReactiveFormsModule, } from '@angular/forms' import { PermissionsGroupComponent } from './permissions-group.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { NgSelectModule } from '@ng-select/ng-select' import { GroupService } from 'src/app/services/rest/group.service' import { of } from 'rxjs' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('PermissionsGroupComponent', () => { let component: PermissionsGroupComponent @@ -19,12 +20,11 @@ describe('PermissionsGroupComponent', () => { beforeEach(async () => { TestBed.configureTestingModule({ declarations: [PermissionsGroupComponent], - providers: [GroupService], - imports: [ - FormsModule, - ReactiveFormsModule, - HttpClientTestingModule, - NgSelectModule, + imports: [FormsModule, ReactiveFormsModule, NgSelectModule], + providers: [ + GroupService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/input/permissions/permissions-user/permissions-user.component.spec.ts b/src-ui/src/app/components/common/input/permissions/permissions-user/permissions-user.component.spec.ts index f30c009e0..51e1c32ed 100644 --- a/src-ui/src/app/components/common/input/permissions/permissions-user/permissions-user.component.spec.ts +++ b/src-ui/src/app/components/common/input/permissions/permissions-user/permissions-user.component.spec.ts @@ -5,11 +5,12 @@ import { ReactiveFormsModule, } from '@angular/forms' import { PermissionsUserComponent } from './permissions-user.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { NgSelectModule } from '@ng-select/ng-select' import { GroupService } from 'src/app/services/rest/group.service' import { of } from 'rxjs' import { UserService } from 'src/app/services/rest/user.service' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('PermissionsUserComponent', () => { let component: PermissionsUserComponent @@ -20,12 +21,11 @@ describe('PermissionsUserComponent', () => { beforeEach(async () => { TestBed.configureTestingModule({ declarations: [PermissionsUserComponent], - providers: [UserService], - imports: [ - FormsModule, - ReactiveFormsModule, - HttpClientTestingModule, - NgSelectModule, + imports: [FormsModule, ReactiveFormsModule, NgSelectModule], + providers: [ + UserService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/input/tags/tags.component.html b/src-ui/src/app/components/common/input/tags/tags.component.html index 8184bbbfa..c7516a838 100644 --- a/src-ui/src/app/components/common/input/tags/tags.component.html +++ b/src-ui/src/app/components/common/input/tags/tags.component.html @@ -49,7 +49,7 @@ @if (getSuggestions().length > 0) { Suggestions:  - @for (tag of getSuggestions(); track tag) { + @for (tag of getSuggestions(); track tag.id) { {{tag?.name}}  } 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 f08fed4f8..804e58974 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 @@ -12,7 +12,7 @@ import { } from 'src/app/data/matching-model' import { NgSelectModule } from '@ng-select/ng-select' import { RouterTestingModule } from '@angular/router/testing' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { of } from 'rxjs' import { TagService } from 'src/app/services/rest/tag.service' import { @@ -31,6 +31,7 @@ import { PermissionsFormComponent } from '../permissions/permissions-form/permis import { SelectComponent } from '../select/select.component' import { SettingsService } from 'src/app/services/settings.service' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const tags: Tag[] = [ { @@ -74,6 +75,16 @@ describe('TagsComponent', () => { ColorComponent, CheckComponent, ], + imports: [ + FormsModule, + ReactiveFormsModule, + NgSelectModule, + RouterTestingModule, + NgbModalModule, + NgbAccordionModule, + NgbPopoverModule, + NgxBootstrapIconsModule.pick(allIcons), + ], providers: [ { provide: TagService, @@ -90,17 +101,8 @@ describe('TagsComponent', () => { }), }, }, - ], - imports: [ - FormsModule, - ReactiveFormsModule, - NgSelectModule, - RouterTestingModule, - HttpClientTestingModule, - NgbModalModule, - NgbAccordionModule, - NgbPopoverModule, - NgxBootstrapIconsModule.pick(allIcons), + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/logo/logo.component.spec.ts b/src-ui/src/app/components/common/logo/logo.component.spec.ts index 5b64177a4..201e19eb9 100644 --- a/src-ui/src/app/components/common/logo/logo.component.spec.ts +++ b/src-ui/src/app/components/common/logo/logo.component.spec.ts @@ -2,9 +2,10 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { LogoComponent } from './logo.component' import { By } from '@angular/platform-browser' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { SettingsService } from 'src/app/services/settings.service' import { SETTINGS_KEYS } from 'src/app/data/ui-settings' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('LogoComponent', () => { let component: LogoComponent @@ -14,7 +15,11 @@ describe('LogoComponent', () => { beforeEach(() => { TestBed.configureTestingModule({ declarations: [LogoComponent], - imports: [HttpClientTestingModule], + imports: [], + providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) settingsService = TestBed.inject(SettingsService) fixture = TestBed.createComponent(LogoComponent) diff --git a/src-ui/src/app/components/common/permissions-dialog/permissions-dialog.component.spec.ts b/src-ui/src/app/components/common/permissions-dialog/permissions-dialog.component.spec.ts index bc8ccdecb..dc4821ce0 100644 --- a/src-ui/src/app/components/common/permissions-dialog/permissions-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/permissions-dialog/permissions-dialog.component.spec.ts @@ -1,7 +1,7 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { PermissionsDialogComponent } from './permissions-dialog.component' import { NgbActiveModal, NgbModule } from '@ng-bootstrap/ng-bootstrap' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { SafeHtmlPipe } from 'src/app/pipes/safehtml.pipe' import { UserService } from 'src/app/services/rest/user.service' import { of } from 'rxjs' @@ -12,6 +12,7 @@ import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { PermissionsUserComponent } from '../input/permissions/permissions-user/permissions-user.component' import { PermissionsGroupComponent } from '../input/permissions/permissions-group/permissions-group.component' import { SwitchComponent } from '../input/switch/switch.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const set_permissions = { owner: 10, @@ -43,6 +44,7 @@ describe('PermissionsDialogComponent', () => { PermissionsUserComponent, PermissionsGroupComponent, ], + imports: [NgSelectModule, FormsModule, ReactiveFormsModule, NgbModule], providers: [ NgbActiveModal, { @@ -63,13 +65,8 @@ describe('PermissionsDialogComponent', () => { }), }, }, - ], - imports: [ - HttpClientTestingModule, - NgSelectModule, - FormsModule, - ReactiveFormsModule, - NgbModule, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.spec.ts b/src-ui/src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.spec.ts index eb9dfed7b..b55d2d250 100644 --- a/src-ui/src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.spec.ts +++ b/src-ui/src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.spec.ts @@ -1,4 +1,4 @@ -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { NgbModule } from '@ng-bootstrap/ng-bootstrap' @@ -15,6 +15,7 @@ import { ClearableBadgeComponent } from '../clearable-badge/clearable-badge.comp import { SettingsService } from 'src/app/services/settings.service' import { IfPermissionsDirective } from 'src/app/directives/if-permissions.directive' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const currentUserID = 13 @@ -30,6 +31,13 @@ describe('PermissionsFilterDropdownComponent', () => { ClearableBadgeComponent, IfPermissionsDirective, ], + imports: [ + NgSelectModule, + FormsModule, + ReactiveFormsModule, + NgbModule, + NgxBootstrapIconsModule.pick(allIcons), + ], providers: [ { provide: UserService, @@ -63,14 +71,8 @@ describe('PermissionsFilterDropdownComponent', () => { }, }, }, - ], - imports: [ - HttpClientTestingModule, - NgSelectModule, - FormsModule, - ReactiveFormsModule, - NgbModule, - NgxBootstrapIconsModule.pick(allIcons), + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/permissions-select/permissions-select.component.spec.ts b/src-ui/src/app/components/common/permissions-select/permissions-select.component.spec.ts index 879a4d9bf..4cad74f2e 100644 --- a/src-ui/src/app/components/common/permissions-select/permissions-select.component.spec.ts +++ b/src-ui/src/app/components/common/permissions-select/permissions-select.component.spec.ts @@ -14,7 +14,8 @@ import { By } from '@angular/platform-browser' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { SettingsService } from 'src/app/services/settings.service' import { SETTINGS_KEYS } from 'src/app/data/ui-settings' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const permissions = [ 'add_document', @@ -36,13 +37,15 @@ describe('PermissionsSelectComponent', () => { beforeEach(async () => { TestBed.configureTestingModule({ declarations: [PermissionsSelectComponent], - providers: [], imports: [ FormsModule, ReactiveFormsModule, NgbModule, NgxBootstrapIconsModule.pick(allIcons), - HttpClientTestingModule, + ], + providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/common/preview-popup/preview-popup.component.spec.ts b/src-ui/src/app/components/common/preview-popup/preview-popup.component.spec.ts index 6f638bb89..c23cb6124 100644 --- a/src-ui/src/app/components/common/preview-popup/preview-popup.component.spec.ts +++ b/src-ui/src/app/components/common/preview-popup/preview-popup.component.spec.ts @@ -5,10 +5,11 @@ import { By } from '@angular/platform-browser' import { SafeUrlPipe } from 'src/app/pipes/safeurl.pipe' import { SettingsService } from 'src/app/services/settings.service' import { SETTINGS_KEYS } from 'src/app/data/ui-settings' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { DocumentService } from 'src/app/services/rest/document.service' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { PdfViewerModule } from 'ng2-pdf-viewer' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const doc = { id: 10, @@ -26,10 +27,10 @@ describe('PreviewPopupComponent', () => { beforeEach(() => { TestBed.configureTestingModule({ declarations: [PreviewPopupComponent, SafeUrlPipe], - imports: [ - HttpClientTestingModule, - NgxBootstrapIconsModule.pick(allIcons), - PdfViewerModule, + imports: [NgxBootstrapIconsModule.pick(allIcons), PdfViewerModule], + providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }) settingsService = TestBed.inject(SettingsService) diff --git a/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.spec.ts b/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.spec.ts index b57cf07f2..d0af0f2ad 100644 --- a/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.spec.ts @@ -14,7 +14,7 @@ import { NgbModalModule, NgbPopoverModule, } from '@ng-bootstrap/ng-bootstrap' -import { HttpClientModule } from '@angular/common/http' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' import { TextComponent } from '../input/text/text.component' import { PasswordComponent } from '../input/password/password.component' import { of, throwError } from 'rxjs' @@ -55,9 +55,7 @@ describe('ProfileEditDialogComponent', () => { PasswordComponent, ConfirmButtonComponent, ], - providers: [NgbActiveModal], imports: [ - HttpClientModule, ReactiveFormsModule, FormsModule, NgbModalModule, @@ -65,6 +63,7 @@ describe('ProfileEditDialogComponent', () => { NgxBootstrapIconsModule.pick(allIcons), NgbPopoverModule, ], + providers: [NgbActiveModal, provideHttpClient(withInterceptorsFromDi())], }) profileService = TestBed.inject(ProfileService) toastService = TestBed.inject(ToastService) diff --git a/src-ui/src/app/components/common/share-links-dropdown/share-links-dropdown.component.spec.ts b/src-ui/src/app/components/common/share-links-dropdown/share-links-dropdown.component.spec.ts index 8c53ee52e..81573eb98 100644 --- a/src-ui/src/app/components/common/share-links-dropdown/share-links-dropdown.component.spec.ts +++ b/src-ui/src/app/components/common/share-links-dropdown/share-links-dropdown.component.spec.ts @@ -1,6 +1,6 @@ import { HttpTestingController, - HttpClientTestingModule, + provideHttpClientTesting, } from '@angular/common/http/testing' import { ComponentFixture, @@ -18,6 +18,7 @@ import { ShareLinksDropdownComponent } from './share-links-dropdown.component' import { Clipboard } from '@angular/cdk/clipboard' import { By } from '@angular/platform-browser' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('ShareLinksDropdownComponent', () => { let component: ShareLinksDropdownComponent @@ -31,11 +32,14 @@ describe('ShareLinksDropdownComponent', () => { TestBed.configureTestingModule({ declarations: [ShareLinksDropdownComponent], imports: [ - HttpClientTestingModule, FormsModule, ReactiveFormsModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) fixture = TestBed.createComponent(ShareLinksDropdownComponent) diff --git a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.html b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.html index 713ae06ee..2dc934df4 100644 --- a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.html +++ b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -28,7 +28,7 @@
Media Storage
- {{status.storage.available | filesize}} available ({{status.storage.total | filesize}} total) + {{status.storage.available | fileSize}} available ({{status.storage.total | fileSize}} total)
diff --git a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.spec.ts b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.spec.ts index b515bb622..43e336adb 100644 --- a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.spec.ts @@ -17,9 +17,10 @@ import { InstallType, SystemStatus, } from 'src/app/data/system-status' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' -import { NgxFilesizeModule } from 'ngx-filesize' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' +import { FileSizePipe } from 'src/app/pipes/file-size.pipe' const status: SystemStatus = { pngx_version: '2.4.3', @@ -57,17 +58,19 @@ describe('SystemStatusDialogComponent', () => { beforeEach(async () => { await TestBed.configureTestingModule({ - declarations: [SystemStatusDialogComponent], - providers: [NgbActiveModal], + declarations: [SystemStatusDialogComponent, FileSizePipe], imports: [ NgbModalModule, ClipboardModule, - HttpClientTestingModule, NgxBootstrapIconsModule.pick(allIcons), - NgxFilesizeModule, NgbPopoverModule, NgbProgressbarModule, ], + providers: [ + NgbActiveModal, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() fixture = TestBed.createComponent(SystemStatusDialogComponent) diff --git a/src-ui/src/app/components/common/toasts/toasts.component.spec.ts b/src-ui/src/app/components/common/toasts/toasts.component.spec.ts index 2eeaef43e..0ddfb61d5 100644 --- a/src-ui/src/app/components/common/toasts/toasts.component.spec.ts +++ b/src-ui/src/app/components/common/toasts/toasts.component.spec.ts @@ -8,11 +8,12 @@ import { import { ToastService } from 'src/app/services/toast.service' import { ToastsComponent } from './toasts.component' import { ComponentFixture } from '@angular/core/testing' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { of } from 'rxjs' import { NgbModule } from '@ng-bootstrap/ng-bootstrap' import { Clipboard } from '@angular/cdk/clipboard' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const toasts = [ { @@ -46,11 +47,7 @@ describe('ToastsComponent', () => { beforeEach(async () => { TestBed.configureTestingModule({ declarations: [ToastsComponent], - imports: [ - HttpClientTestingModule, - NgbModule, - NgxBootstrapIconsModule.pick(allIcons), - ], + imports: [NgbModule, NgxBootstrapIconsModule.pick(allIcons)], providers: [ { provide: ToastService, @@ -58,6 +55,8 @@ describe('ToastsComponent', () => { getToasts: () => of(toasts), }, }, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/dashboard/dashboard.component.spec.ts b/src-ui/src/app/components/dashboard/dashboard.component.spec.ts index d85fa810b..ba13f0949 100644 --- a/src-ui/src/app/components/dashboard/dashboard.component.spec.ts +++ b/src-ui/src/app/components/dashboard/dashboard.component.spec.ts @@ -2,7 +2,7 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { NgbAlertModule } from '@ng-bootstrap/ng-bootstrap' import { PermissionsGuard } from 'src/app/guards/permissions.guard' import { DashboardComponent } from './dashboard.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { SettingsService } from 'src/app/services/settings.service' import { StatisticsWidgetComponent } from './widgets/statistics-widget/statistics-widget.component' import { PageHeaderComponent } from '../common/page-header/page-header.component' @@ -22,6 +22,7 @@ import { SETTINGS_KEYS } from 'src/app/data/ui-settings' import { CdkDragDrop, DragDropModule } from '@angular/cdk/drag-drop' import { SavedView } from 'src/app/data/saved-view' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const saved_views = [ { @@ -81,6 +82,13 @@ describe('DashboardComponent', () => { SavedViewWidgetComponent, LogoComponent, ], + imports: [ + NgbAlertModule, + RouterTestingModule, + TourNgBootstrapModule, + DragDropModule, + NgxBootstrapIconsModule.pick(allIcons), + ], providers: [ PermissionsGuard, { @@ -101,14 +109,8 @@ describe('DashboardComponent', () => { dashboardViews: saved_views.filter((v) => v.show_on_dashboard), }, }, - ], - imports: [ - NgbAlertModule, - HttpClientTestingModule, - RouterTestingModule, - TourNgBootstrapModule, - DragDropModule, - NgxBootstrapIconsModule.pick(allIcons), + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.spec.ts b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.spec.ts index 432c686c3..cb120bb64 100644 --- a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.spec.ts +++ b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.spec.ts @@ -1,5 +1,5 @@ import { DatePipe } from '@angular/common' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed, @@ -41,6 +41,7 @@ import { CustomFieldsService } from 'src/app/services/rest/custom-fields.service import { CustomFieldDataType } from 'src/app/data/custom-field' import { CustomFieldDisplayComponent } from 'src/app/components/common/custom-field-display/custom-field-display.component' import { DisplayMode, DisplayField } from 'src/app/data/document' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const savedView: SavedView = { id: 1, @@ -125,6 +126,12 @@ describe('SavedViewWidgetComponent', () => { PreviewPopupComponent, CustomFieldDisplayComponent, ], + imports: [ + NgbModule, + RouterTestingModule.withRoutes(routes), + DragDropModule, + NgxBootstrapIconsModule.pick(allIcons), + ], providers: [ PermissionsGuard, DocumentService, @@ -163,13 +170,8 @@ describe('SavedViewWidgetComponent', () => { }), }, }, - ], - imports: [ - HttpClientTestingModule, - NgbModule, - RouterTestingModule.withRoutes(routes), - DragDropModule, - NgxBootstrapIconsModule.pick(allIcons), + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.spec.ts b/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.spec.ts index 7d14af6ad..95d1a2265 100644 --- a/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.spec.ts +++ b/src-ui/src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.spec.ts @@ -2,8 +2,8 @@ import { TestBed } from '@angular/core/testing' import { StatisticsWidgetComponent } from './statistics-widget.component' import { ComponentFixture } from '@angular/core/testing' import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { NgbModule } from '@ng-bootstrap/ng-bootstrap' import { WidgetFrameComponent } from '../widget-frame/widget-frame.component' @@ -18,6 +18,7 @@ import { } from 'src/app/services/consumer-status.service' import { Subject } from 'rxjs' import { DragDropModule } from '@angular/cdk/drag-drop' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('StatisticsWidgetComponent', () => { let component: StatisticsWidgetComponent @@ -33,13 +34,16 @@ describe('StatisticsWidgetComponent', () => { WidgetFrameComponent, IfPermissionsDirective, ], - providers: [PermissionsGuard], imports: [ - HttpClientTestingModule, NgbModule, RouterTestingModule.withRoutes(routes), DragDropModule, ], + providers: [ + PermissionsGuard, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() fixture = TestBed.createComponent(StatisticsWidgetComponent) diff --git a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html index 60ee4eda9..6402392b3 100644 --- a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html +++ b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html @@ -39,7 +39,7 @@ Show all

} -
+
@for (status of getStatusHidden(); track status) {
diff --git a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.spec.ts b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.spec.ts index 688dc8cd6..0cfdf6e98 100644 --- a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.spec.ts +++ b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.spec.ts @@ -1,4 +1,4 @@ -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed, @@ -27,6 +27,7 @@ import { WidgetFrameComponent } from '../widget-frame/widget-frame.component' import { UploadFileWidgetComponent } from './upload-file-widget.component' import { DragDropModule } from '@angular/cdk/drag-drop' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const FAILED_STATUSES = [new FileStatus()] const WORKING_STATUSES = [new FileStatus(), new FileStatus()] @@ -59,6 +60,13 @@ describe('UploadFileWidgetComponent', () => { WidgetFrameComponent, IfPermissionsDirective, ], + imports: [ + NgbModule, + RouterTestingModule.withRoutes(routes), + NgbAlertModule, + DragDropModule, + NgxBootstrapIconsModule.pick(allIcons), + ], providers: [ PermissionsGuard, { @@ -67,14 +75,8 @@ describe('UploadFileWidgetComponent', () => { currentUserCan: () => true, }, }, - ], - imports: [ - HttpClientTestingModule, - NgbModule, - RouterTestingModule.withRoutes(routes), - NgbAlertModule, - DragDropModule, - NgxBootstrapIconsModule.pick(allIcons), + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/document-detail/document-detail.component.spec.ts b/src-ui/src/app/components/document-detail/document-detail.component.spec.ts index 0a6eb3a5f..1a1ba44ad 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.spec.ts +++ b/src-ui/src/app/components/document-detail/document-detail.component.spec.ts @@ -1,7 +1,7 @@ import { DatePipe } from '@angular/common' import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { ComponentFixture, @@ -83,6 +83,8 @@ import { SplitConfirmDialogComponent } from '../common/confirm-dialog/split-conf import { DeletePagesConfirmDialogComponent } from '../common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component' import { PdfViewerModule } from 'ng2-pdf-viewer' import { DataType } from 'src/app/data/datatype' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' +import { TagService } from 'src/app/services/rest/tag.service' const doc: Document = { id: 3, @@ -182,8 +184,51 @@ describe('DocumentDetailComponent', () => { RotateConfirmDialogComponent, DeletePagesConfirmDialogComponent, ], + imports: [ + RouterModule.forRoot(routes), + NgbModule, + NgSelectModule, + FormsModule, + ReactiveFormsModule, + NgbModalModule, + NgxBootstrapIconsModule.pick(allIcons), + PdfViewerModule, + ], providers: [ DocumentTitlePipe, + { + provide: TagService, + useValue: { + listAll: () => + of({ + count: 3, + all: [41, 42, 43], + results: [ + { + id: 41, + name: 'Tag41', + is_inbox_tag: true, + color: '#ff0000', + text_color: '#000000', + }, + { + id: 42, + name: 'Tag42', + is_inbox_tag: true, + color: '#ff0000', + text_color: '#000000', + }, + { + id: 43, + name: 'Tag43', + is_inbox_tag: true, + color: '#ff0000', + text_color: '#000000', + }, + ], + }), + }, + }, { provide: CorrespondentService, useValue: { @@ -257,17 +302,8 @@ describe('DocumentDetailComponent', () => { PermissionsGuard, CustomDatePipe, DatePipe, - ], - imports: [ - RouterModule.forRoot(routes), - HttpClientTestingModule, - NgbModule, - NgSelectModule, - FormsModule, - ReactiveFormsModule, - NgbModalModule, - NgxBootstrapIconsModule.pick(allIcons), - PdfViewerModule, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() @@ -989,10 +1025,10 @@ describe('DocumentDetailComponent', () => { it('should get suggestions', () => { const suggestionsSpy = jest.spyOn(documentService, 'getSuggestions') - suggestionsSpy.mockReturnValue(of({ tags: [1, 2] })) + suggestionsSpy.mockReturnValue(of({ tags: [42, 43] })) initNormally() expect(suggestionsSpy).toHaveBeenCalled() - expect(component.suggestions).toEqual({ tags: [1, 2] }) + expect(component.suggestions).toEqual({ tags: [42, 43] }) }) it('should show error if needed for get suggestions', () => { diff --git a/src-ui/src/app/components/document-detail/metadata-collapse/metadata-collapse.component.html b/src-ui/src/app/components/document-detail/metadata-collapse/metadata-collapse.component.html index 3f325eae9..bc76e70fd 100644 --- a/src-ui/src/app/components/document-detail/metadata-collapse/metadata-collapse.component.html +++ b/src-ui/src/app/components/document-detail/metadata-collapse/metadata-collapse.component.html @@ -11,7 +11,7 @@ {{title}} -
+
@for (m of metadata; track m) { diff --git a/src-ui/src/app/components/document-history/document-history.component.spec.ts b/src-ui/src/app/components/document-history/document-history.component.spec.ts index 57133ed74..53023f4af 100644 --- a/src-ui/src/app/components/document-history/document-history.component.spec.ts +++ b/src-ui/src/app/components/document-history/document-history.component.spec.ts @@ -4,11 +4,12 @@ import { DocumentHistoryComponent } from './document-history.component' import { DocumentService } from 'src/app/services/rest/document.service' import { of } from 'rxjs' import { AuditLogAction } from 'src/app/data/auditlog-entry' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { CustomDatePipe } from 'src/app/pipes/custom-date.pipe' import { DatePipe } from '@angular/common' import { NgbCollapseModule, NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' import { CorrespondentService } from 'src/app/services/rest/correspondent.service' import { DocumentTypeService } from 'src/app/services/rest/document-type.service' import { StoragePathService } from 'src/app/services/rest/storage-path.service' @@ -27,13 +28,16 @@ describe('DocumentHistoryComponent', () => { beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [DocumentHistoryComponent, CustomDatePipe], - providers: [DatePipe], imports: [ - HttpClientTestingModule, NgbCollapseModule, NgxBootstrapIconsModule.pick(allIcons), NgbTooltipModule, ], + providers: [ + DatePipe, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() fixture = TestBed.createComponent(DocumentHistoryComponent) diff --git a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.spec.ts b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.spec.ts index 6a58abf1e..0dd056cfd 100644 --- a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.spec.ts +++ b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.spec.ts @@ -1,6 +1,6 @@ import { HttpTestingController, - HttpClientTestingModule, + provideHttpClientTesting, } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' @@ -58,6 +58,7 @@ import { MergeConfirmDialogComponent } from '../../common/confirm-dialog/merge-c import { CustomFieldsService } from 'src/app/services/rest/custom-fields.service' import { CustomField, CustomFieldDataType } from 'src/app/data/custom-field' import { CustomFieldEditDialogComponent } from '../../common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const selectionData: SelectionData = { selected_tags: [ @@ -112,6 +113,14 @@ describe('BulkEditorComponent', () => { IsNumberPipe, MergeConfirmDialogComponent, ], + imports: [ + FormsModule, + ReactiveFormsModule, + NgbModule, + NgbModalModule, + NgSelectModule, + NgxBootstrapIconsModule.pick(allIcons), + ], providers: [ PermissionsService, { @@ -188,15 +197,8 @@ describe('BulkEditorComponent', () => { }), }, }, - ], - imports: [ - HttpClientTestingModule, - FormsModule, - ReactiveFormsModule, - NgbModule, - NgbModalModule, - NgSelectModule, - NgxBootstrapIconsModule.pick(allIcons), + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.spec.ts b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.spec.ts index 20da1cfad..a3f047f03 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.spec.ts +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.spec.ts @@ -1,5 +1,5 @@ import { DatePipe } from '@angular/common' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed, @@ -22,6 +22,7 @@ import { IsNumberPipe } from 'src/app/pipes/is-number.pipe' import { PreviewPopupComponent } from '../../common/preview-popup/preview-popup.component' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { CustomFieldDisplayComponent } from '../../common/custom-field-display/custom-field-display.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const doc = { id: 10, @@ -56,15 +57,18 @@ describe('DocumentCardLargeComponent', () => { PreviewPopupComponent, CustomFieldDisplayComponent, ], - providers: [DatePipe], imports: [ - HttpClientTestingModule, RouterTestingModule, NgbPopoverModule, NgbTooltipModule, NgbProgressbarModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + DatePipe, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() fixture = TestBed.createComponent(DocumentCardLargeComponent) diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.spec.ts b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.spec.ts index 2e4b927c3..fc15453be 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.spec.ts +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.spec.ts @@ -1,5 +1,5 @@ import { DatePipe } from '@angular/common' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed, @@ -25,6 +25,7 @@ import { IsNumberPipe } from 'src/app/pipes/is-number.pipe' import { PreviewPopupComponent } from '../../common/preview-popup/preview-popup.component' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { CustomFieldDisplayComponent } from '../../common/custom-field-display/custom-field-display.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const doc = { id: 10, @@ -70,15 +71,18 @@ describe('DocumentCardSmallComponent', () => { PreviewPopupComponent, CustomFieldDisplayComponent, ], - providers: [DatePipe], imports: [ - HttpClientTestingModule, RouterTestingModule, NgbPopoverModule, NgbTooltipModule, NgbProgressbarModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + DatePipe, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() fixture = TestBed.createComponent(DocumentCardSmallComponent) diff --git a/src-ui/src/app/components/document-list/document-list.component.spec.ts b/src-ui/src/app/components/document-list/document-list.component.spec.ts index 984b27c69..26758b3c0 100644 --- a/src-ui/src/app/components/document-list/document-list.component.spec.ts +++ b/src-ui/src/app/components/document-list/document-list.component.spec.ts @@ -1,6 +1,6 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { DocumentListComponent } from './document-list.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { RouterTestingModule } from '@angular/router/testing' import { routes } from 'src/app/app-routing.module' import { FilterEditorComponent } from './filter-editor/filter-editor.component' @@ -60,7 +60,11 @@ import { SafeHtmlPipe } from 'src/app/pipes/safehtml.pipe' import { SaveViewConfigDialogComponent } from './save-view-config-dialog/save-view-config-dialog.component' import { TextComponent } from '../common/input/text/text.component' import { CheckComponent } from '../common/input/check/check.component' -import { HttpErrorResponse } from '@angular/common/http' +import { + HttpErrorResponse, + provideHttpClient, + withInterceptorsFromDi, +} from '@angular/common/http' import { PermissionsGuard } from 'src/app/guards/permissions.guard' import { SettingsService } from 'src/app/services/settings.service' import { SETTINGS_KEYS } from 'src/app/data/ui-settings' @@ -134,17 +138,7 @@ describe('DocumentListComponent', () => { SafeHtmlPipe, IsNumberPipe, ], - providers: [ - FilterPipe, - CustomDatePipe, - DatePipe, - DocumentTitlePipe, - UsernamePipe, - SafeHtmlPipe, - PermissionsGuard, - ], imports: [ - HttpClientTestingModule, RouterTestingModule.withRoutes(routes), FormsModule, ReactiveFormsModule, @@ -156,6 +150,17 @@ describe('DocumentListComponent', () => { NgSelectModule, NgbTypeaheadModule, ], + providers: [ + FilterPipe, + CustomDatePipe, + DatePipe, + DocumentTitlePipe, + UsernamePipe, + SafeHtmlPipe, + PermissionsGuard, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() documentListService = TestBed.inject(DocumentListViewService) diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.spec.ts b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.spec.ts index 0fcbbc299..5b95d4407 100644 --- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.spec.ts +++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.spec.ts @@ -1,7 +1,7 @@ import { DatePipe } from '@angular/common' import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { ComponentFixture, @@ -94,6 +94,7 @@ import { CustomField, CustomFieldDataType } from 'src/app/data/custom-field' import { CustomFieldsService } from 'src/app/services/rest/custom-fields.service' import { RouterModule } from '@angular/router' import { SearchService } from 'src/app/services/rest/search.service' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const tags: Tag[] = [ { @@ -181,6 +182,15 @@ describe('FilterEditorComponent', () => { DatesDropdownComponent, CustomDatePipe, ], + imports: [ + RouterModule, + NgbDropdownModule, + FormsModule, + ReactiveFormsModule, + NgbDatepickerModule, + NgxBootstrapIconsModule.pick(allIcons), + NgbTypeaheadModule, + ], providers: [ FilterPipe, CustomDatePipe, @@ -222,16 +232,8 @@ describe('FilterEditorComponent', () => { }, }, SettingsService, - ], - imports: [ - HttpClientTestingModule, - RouterModule, - NgbDropdownModule, - FormsModule, - ReactiveFormsModule, - NgbDatepickerModule, - NgxBootstrapIconsModule.pick(allIcons), - NgbTypeaheadModule, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/document-notes/document-notes.component.spec.ts b/src-ui/src/app/components/document-notes/document-notes.component.spec.ts index 4472d5ca5..3853d9fda 100644 --- a/src-ui/src/app/components/document-notes/document-notes.component.spec.ts +++ b/src-ui/src/app/components/document-notes/document-notes.component.spec.ts @@ -6,7 +6,7 @@ import { of, throwError } from 'rxjs' import { DocumentNotesService } from 'src/app/services/rest/document-notes.service' import { ToastService } from 'src/app/services/toast.service' import { DocumentNote } from 'src/app/data/document-note' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { CustomDatePipe } from 'src/app/pipes/custom-date.pipe' import { IfPermissionsDirective } from 'src/app/directives/if-permissions.directive' import { DatePipe } from '@angular/common' @@ -14,6 +14,7 @@ import { By } from '@angular/platform-browser' import { PermissionsService } from 'src/app/services/permissions.service' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const notes: DocumentNote[] = [ { @@ -61,6 +62,11 @@ describe('DocumentNotesComponent', () => { CustomDatePipe, IfPermissionsDirective, ], + imports: [ + FormsModule, + ReactiveFormsModule, + NgxBootstrapIconsModule.pick(allIcons), + ], providers: [ { provide: UserService, @@ -94,12 +100,8 @@ describe('DocumentNotesComponent', () => { }, CustomDatePipe, DatePipe, - ], - imports: [ - HttpClientTestingModule, - FormsModule, - ReactiveFormsModule, - NgxBootstrapIconsModule.pick(allIcons), + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/components/file-drop/file-drop.component.spec.ts b/src-ui/src/app/components/file-drop/file-drop.component.spec.ts index d35bf54d9..c58a64708 100644 --- a/src-ui/src/app/components/file-drop/file-drop.component.spec.ts +++ b/src-ui/src/app/components/file-drop/file-drop.component.spec.ts @@ -1,4 +1,4 @@ -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed, @@ -15,6 +15,7 @@ import { UploadDocumentsService } from 'src/app/services/upload-documents.servic import { ToastsComponent } from '../common/toasts/toasts.component' import { FileDropComponent } from './file-drop.component' import { NgxFileDropEntry, NgxFileDropModule } from 'ngx-file-drop' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('FileDropComponent', () => { let component: FileDropComponent @@ -27,8 +28,11 @@ describe('FileDropComponent', () => { beforeEach(() => { TestBed.configureTestingModule({ declarations: [FileDropComponent, ToastsComponent], - providers: [], - imports: [HttpClientTestingModule, NgxFileDropModule], + imports: [NgxFileDropModule], + providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() permissionsService = TestBed.inject(PermissionsService) diff --git a/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.spec.ts b/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.spec.ts index ff6618197..788f6e368 100644 --- a/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.spec.ts +++ b/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.spec.ts @@ -1,6 +1,6 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { CorrespondentListComponent } from './correspondent-list.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { DatePipe } from '@angular/common' import { SortableDirective } from 'src/app/directives/sortable.directive' import { NgbPaginationModule } from '@ng-bootstrap/ng-bootstrap' @@ -10,6 +10,7 @@ import { IfPermissionsDirective } from 'src/app/directives/if-permissions.direct import { CorrespondentService } from 'src/app/services/rest/correspondent.service' import { of } from 'rxjs' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('CorrespondentListComponent', () => { let component: CorrespondentListComponent @@ -24,14 +25,17 @@ describe('CorrespondentListComponent', () => { PageHeaderComponent, IfPermissionsDirective, ], - providers: [DatePipe], imports: [ - HttpClientTestingModule, NgbPaginationModule, FormsModule, ReactiveFormsModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + DatePipe, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() correspondentsService = TestBed.inject(CorrespondentService) }) diff --git a/src-ui/src/app/components/manage/custom-fields/custom-fields.component.spec.ts b/src-ui/src/app/components/manage/custom-fields/custom-fields.component.spec.ts index 8797d6803..2bb6c82d7 100644 --- a/src-ui/src/app/components/manage/custom-fields/custom-fields.component.spec.ts +++ b/src-ui/src/app/components/manage/custom-fields/custom-fields.component.spec.ts @@ -3,7 +3,7 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { CustomFieldsComponent } from './custom-fields.component' import { CustomField, CustomFieldDataType } from 'src/app/data/custom-field' import { CustomFieldsService } from 'src/app/services/rest/custom-fields.service' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { By } from '@angular/platform-browser' import { @@ -21,6 +21,7 @@ import { ConfirmDialogComponent } from '../../common/confirm-dialog/confirm-dial import { PageHeaderComponent } from '../../common/page-header/page-header.component' import { CustomFieldEditDialogComponent } from '../../common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const fields: CustomField[] = [ { @@ -50,6 +51,14 @@ describe('CustomFieldsComponent', () => { PageHeaderComponent, ConfirmDialogComponent, ], + imports: [ + NgbPaginationModule, + FormsModule, + ReactiveFormsModule, + NgbModalModule, + NgbPopoverModule, + NgxBootstrapIconsModule.pick(allIcons), + ], providers: [ { provide: PermissionsService, @@ -59,15 +68,8 @@ describe('CustomFieldsComponent', () => { currentUserOwnsObject: () => true, }, }, - ], - imports: [ - HttpClientTestingModule, - NgbPaginationModule, - FormsModule, - ReactiveFormsModule, - NgbModalModule, - NgbPopoverModule, - NgxBootstrapIconsModule.pick(allIcons), + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }) diff --git a/src-ui/src/app/components/manage/document-type-list/document-type-list.component.spec.ts b/src-ui/src/app/components/manage/document-type-list/document-type-list.component.spec.ts index 31287477a..06e66ed07 100644 --- a/src-ui/src/app/components/manage/document-type-list/document-type-list.component.spec.ts +++ b/src-ui/src/app/components/manage/document-type-list/document-type-list.component.spec.ts @@ -1,5 +1,5 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { DatePipe } from '@angular/common' import { SortableDirective } from 'src/app/directives/sortable.directive' import { NgbPaginationModule } from '@ng-bootstrap/ng-bootstrap' @@ -10,6 +10,7 @@ import { of } from 'rxjs' import { DocumentTypeListComponent } from './document-type-list.component' import { DocumentTypeService } from 'src/app/services/rest/document-type.service' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('DocumentTypeListComponent', () => { let component: DocumentTypeListComponent @@ -24,14 +25,17 @@ describe('DocumentTypeListComponent', () => { PageHeaderComponent, IfPermissionsDirective, ], - providers: [DatePipe], imports: [ - HttpClientTestingModule, NgbPaginationModule, FormsModule, ReactiveFormsModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + DatePipe, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() documentTypeService = TestBed.inject(DocumentTypeService) diff --git a/src-ui/src/app/components/manage/mail/mail.component.spec.ts b/src-ui/src/app/components/manage/mail/mail.component.spec.ts index fcc5bcc6b..e72b49b0f 100644 --- a/src-ui/src/app/components/manage/mail/mail.component.spec.ts +++ b/src-ui/src/app/components/manage/mail/mail.component.spec.ts @@ -2,7 +2,7 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { MailComponent } from './mail.component' import { DatePipe } from '@angular/common' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { RouterTestingModule } from '@angular/router/testing' import { NgbModule, @@ -42,6 +42,7 @@ import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { EditDialogMode } from '../../common/edit-dialog/edit-dialog.component' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { SwitchComponent } from '../../common/input/switch/switch.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const mailAccounts = [ { id: 1, name: 'account1' }, @@ -85,10 +86,8 @@ describe('MailComponent', () => { PermissionsFormComponent, SwitchComponent, ], - providers: [CustomDatePipe, DatePipe, PermissionsGuard], imports: [ NgbModule, - HttpClientTestingModule, RouterTestingModule.withRoutes(routes), FormsModule, ReactiveFormsModule, @@ -96,6 +95,13 @@ describe('MailComponent', () => { NgSelectModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + CustomDatePipe, + DatePipe, + PermissionsGuard, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() mailAccountService = TestBed.inject(MailAccountService) diff --git a/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts b/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts index c349fa935..557d5f388 100644 --- a/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts +++ b/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts @@ -1,5 +1,5 @@ import { DatePipe } from '@angular/common' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed, @@ -41,6 +41,7 @@ import { MATCH_LITERAL } from 'src/app/data/matching-model' import { PermissionsDialogComponent } from '../../common/permissions-dialog/permissions-dialog.component' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { BulkEditObjectOperation } from 'src/app/services/rest/abstract-name-filter-service' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const tags: Tag[] = [ { @@ -81,9 +82,7 @@ describe('ManagementListComponent', () => { ConfirmDialogComponent, PermissionsDialogComponent, ], - providers: [DatePipe, PermissionsGuard], imports: [ - HttpClientTestingModule, NgbPaginationModule, FormsModule, ReactiveFormsModule, @@ -91,6 +90,12 @@ describe('ManagementListComponent', () => { RouterTestingModule.withRoutes(routes), NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + DatePipe, + PermissionsGuard, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() tagService = TestBed.inject(TagService) diff --git a/src-ui/src/app/components/manage/storage-path-list/storage-path-list.component.spec.ts b/src-ui/src/app/components/manage/storage-path-list/storage-path-list.component.spec.ts index 7acdacb13..0816dae7d 100644 --- a/src-ui/src/app/components/manage/storage-path-list/storage-path-list.component.spec.ts +++ b/src-ui/src/app/components/manage/storage-path-list/storage-path-list.component.spec.ts @@ -1,5 +1,5 @@ import { DatePipe } from '@angular/common' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { NgbPaginationModule } from '@ng-bootstrap/ng-bootstrap' @@ -10,6 +10,7 @@ import { StoragePathService } from 'src/app/services/rest/storage-path.service' import { PageHeaderComponent } from '../../common/page-header/page-header.component' import { StoragePathListComponent } from './storage-path-list.component' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('StoragePathListComponent', () => { let component: StoragePathListComponent @@ -24,14 +25,17 @@ describe('StoragePathListComponent', () => { PageHeaderComponent, IfPermissionsDirective, ], - providers: [DatePipe], imports: [ - HttpClientTestingModule, NgbPaginationModule, FormsModule, ReactiveFormsModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + DatePipe, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() storagePathService = TestBed.inject(StoragePathService) diff --git a/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts b/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts index ed79a3650..33cf36e7c 100644 --- a/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts +++ b/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts @@ -1,5 +1,5 @@ import { DatePipe } from '@angular/common' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { NgbPaginationModule } from '@ng-bootstrap/ng-bootstrap' @@ -11,6 +11,7 @@ import { PageHeaderComponent } from '../../common/page-header/page-header.compon import { TagListComponent } from './tag-list.component' import { SafeHtmlPipe } from 'src/app/pipes/safehtml.pipe' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('TagListComponent', () => { let component: TagListComponent @@ -26,14 +27,17 @@ describe('TagListComponent', () => { IfPermissionsDirective, SafeHtmlPipe, ], - providers: [DatePipe], imports: [ - HttpClientTestingModule, NgbPaginationModule, FormsModule, ReactiveFormsModule, NgxBootstrapIconsModule.pick(allIcons), ], + providers: [ + DatePipe, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }).compileComponents() tagService = TestBed.inject(TagService) diff --git a/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts b/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts index 51e0eda72..5a73b07b0 100644 --- a/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts +++ b/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts @@ -1,4 +1,4 @@ -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { By } from '@angular/platform-browser' @@ -25,6 +25,7 @@ import { } from 'src/app/data/workflow-trigger' import { WorkflowActionType } from 'src/app/data/workflow-action' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const workflows: Workflow[] = [ { @@ -85,6 +86,14 @@ describe('WorkflowsComponent', () => { PageHeaderComponent, ConfirmDialogComponent, ], + imports: [ + NgbPaginationModule, + FormsModule, + ReactiveFormsModule, + NgbModalModule, + NgbPopoverModule, + NgxBootstrapIconsModule.pick(allIcons), + ], providers: [ { provide: PermissionsService, @@ -94,15 +103,8 @@ describe('WorkflowsComponent', () => { currentUserOwnsObject: () => true, }, }, - ], - imports: [ - HttpClientTestingModule, - NgbPaginationModule, - FormsModule, - ReactiveFormsModule, - NgbModalModule, - NgbPopoverModule, - NgxBootstrapIconsModule.pick(allIcons), + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }) diff --git a/src-ui/src/app/components/not-found/not-found.component.spec.ts b/src-ui/src/app/components/not-found/not-found.component.spec.ts index bf42fb409..6d4a70aca 100644 --- a/src-ui/src/app/components/not-found/not-found.component.spec.ts +++ b/src-ui/src/app/components/not-found/not-found.component.spec.ts @@ -2,8 +2,9 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { NotFoundComponent } from './not-found.component' import { By } from '@angular/platform-browser' import { LogoComponent } from '../common/logo/logo.component' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('NotFoundComponent', () => { let component: NotFoundComponent @@ -12,9 +13,10 @@ describe('NotFoundComponent', () => { beforeEach(async () => { TestBed.configureTestingModule({ declarations: [NotFoundComponent, LogoComponent], - imports: [ - HttpClientTestingModule, - NgxBootstrapIconsModule.pick(allIcons), + imports: [NgxBootstrapIconsModule.pick(allIcons)], + providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], }).compileComponents() diff --git a/src-ui/src/app/guards/dirty-saved-view.guard.spec.ts b/src-ui/src/app/guards/dirty-saved-view.guard.spec.ts index f4388d91f..07ac5e08a 100644 --- a/src-ui/src/app/guards/dirty-saved-view.guard.spec.ts +++ b/src-ui/src/app/guards/dirty-saved-view.guard.spec.ts @@ -5,8 +5,9 @@ import { SettingsService } from '../services/settings.service' import { DocumentListComponent } from '../components/document-list/document-list.component' import { RouterTestingModule } from '@angular/router/testing' import { routes } from '../app-routing.module' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { ConfirmDialogComponent } from '../components/common/confirm-dialog/confirm-dialog.component' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('DirtySavedViewGuard', () => { let guard: DirtySavedViewGuard @@ -16,17 +17,16 @@ describe('DirtySavedViewGuard', () => { beforeEach(() => { TestBed.configureTestingModule({ + declarations: [ConfirmDialogComponent], + imports: [RouterTestingModule.withRoutes(routes)], providers: [ DirtySavedViewGuard, SettingsService, NgbModal, DocumentListComponent, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), ], - imports: [ - RouterTestingModule.withRoutes(routes), - HttpClientTestingModule, - ], - declarations: [ConfirmDialogComponent], }) settingsService = TestBed.inject(SettingsService) diff --git a/src-ui/src/app/pipes/custom-date.pipe.spec.ts b/src-ui/src/app/pipes/custom-date.pipe.spec.ts index 32505fa7c..0877d9157 100644 --- a/src-ui/src/app/pipes/custom-date.pipe.spec.ts +++ b/src-ui/src/app/pipes/custom-date.pipe.spec.ts @@ -1,16 +1,23 @@ import { TestBed } from '@angular/core/testing' import { CustomDatePipe } from './custom-date.pipe' import { SettingsService } from '../services/settings.service' -import { HttpClientTestingModule } from '@angular/common/http/testing' +import { provideHttpClientTesting } from '@angular/common/http/testing' import { DatePipe } from '@angular/common' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('CustomDatePipe', () => { let datePipe: CustomDatePipe beforeEach(() => { TestBed.configureTestingModule({ - providers: [CustomDatePipe, SettingsService, DatePipe], - imports: [HttpClientTestingModule], + imports: [], + providers: [ + CustomDatePipe, + SettingsService, + DatePipe, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) datePipe = TestBed.inject(CustomDatePipe) diff --git a/src-ui/src/app/pipes/username.pipe.spec.ts b/src-ui/src/app/pipes/username.pipe.spec.ts index cab2116d6..58eeaccde 100644 --- a/src-ui/src/app/pipes/username.pipe.spec.ts +++ b/src-ui/src/app/pipes/username.pipe.spec.ts @@ -1,12 +1,13 @@ import { TestBed } from '@angular/core/testing' import { UsernamePipe } from './username.pipe' import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { environment } from 'src/environments/environment' import { PermissionsService } from '../services/permissions.service' import { UserService } from '../services/rest/user.service' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('UsernamePipe', () => { let pipe: UsernamePipe @@ -15,8 +16,13 @@ describe('UsernamePipe', () => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [UsernamePipe, PermissionsService], - imports: [HttpClientTestingModule], + imports: [], + providers: [ + UsernamePipe, + PermissionsService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) httpTestingController = TestBed.inject(HttpTestingController) diff --git a/src-ui/src/app/services/config.service.spec.ts b/src-ui/src/app/services/config.service.spec.ts index 4fb24727f..91c90e734 100644 --- a/src-ui/src/app/services/config.service.spec.ts +++ b/src-ui/src/app/services/config.service.spec.ts @@ -2,11 +2,12 @@ import { TestBed } from '@angular/core/testing' import { ConfigService } from './config.service' import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { environment } from 'src/environments/environment' import { OutputTypeConfig, PaperlessConfig } from '../data/paperless-config' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('ConfigService', () => { let service: ConfigService @@ -14,7 +15,11 @@ describe('ConfigService', () => { beforeEach(() => { TestBed.configureTestingModule({ - imports: [HttpClientTestingModule], + imports: [], + providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) service = TestBed.inject(ConfigService) httpTestingController = TestBed.inject(HttpTestingController) diff --git a/src-ui/src/app/services/consumer-status.service.spec.ts b/src-ui/src/app/services/consumer-status.service.spec.ts index b9066bbc0..a39a9a145 100644 --- a/src-ui/src/app/services/consumer-status.service.spec.ts +++ b/src-ui/src/app/services/consumer-status.service.spec.ts @@ -5,12 +5,17 @@ import { FileStatusPhase, } from './consumer-status.service' import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { environment } from 'src/environments/environment' import { DocumentService } from './rest/document.service' -import { HttpEventType, HttpResponse } from '@angular/common/http' +import { + HttpEventType, + HttpResponse, + provideHttpClient, + withInterceptorsFromDi, +} from '@angular/common/http' import WS from 'jest-websocket-mock' import { SettingsService } from './settings.service' @@ -27,8 +32,14 @@ describe('ConsumerStatusService', () => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [ConsumerStatusService, DocumentService, SettingsService], - imports: [HttpClientTestingModule], + imports: [], + providers: [ + ConsumerStatusService, + DocumentService, + SettingsService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) httpTestingController = TestBed.inject(HttpTestingController) diff --git a/src-ui/src/app/services/document-list-view.service.spec.ts b/src-ui/src/app/services/document-list-view.service.spec.ts index 73d0bc429..74ef8e5a1 100644 --- a/src-ui/src/app/services/document-list-view.service.spec.ts +++ b/src-ui/src/app/services/document-list-view.service.spec.ts @@ -1,8 +1,8 @@ import { TestBed } from '@angular/core/testing' import { DocumentListViewService } from './document-list-view.service' import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { environment } from 'src/environments/environment' import { Subscription } from 'rxjs' @@ -24,6 +24,7 @@ import { DisplayField, DEFAULT_DISPLAY_FIELDS, } from '../data/document' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const documents = [ { @@ -91,13 +92,16 @@ describe('DocumentListViewService', () => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [DocumentListViewService, PermissionsGuard, SettingsService], - imports: [ - HttpClientTestingModule, - RouterTestingModule.withRoutes(routes), - ], declarations: [ConfirmDialogComponent], teardown: { destroyAfterEach: true }, + imports: [RouterTestingModule.withRoutes(routes)], + providers: [ + DocumentListViewService, + PermissionsGuard, + SettingsService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) sessionStorage.clear() diff --git a/src-ui/src/app/services/open-documents.service.spec.ts b/src-ui/src/app/services/open-documents.service.spec.ts index 21d5d91a8..3dc7f9c3f 100644 --- a/src-ui/src/app/services/open-documents.service.spec.ts +++ b/src-ui/src/app/services/open-documents.service.spec.ts @@ -1,8 +1,8 @@ import { TestBed } from '@angular/core/testing' import { OpenDocumentsService } from './open-documents.service' import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { environment } from 'src/environments/environment' import { Subscription, throwError } from 'rxjs' @@ -10,6 +10,7 @@ import { NgbModal } from '@ng-bootstrap/ng-bootstrap' import { ConfirmDialogComponent } from '../components/common/confirm-dialog/confirm-dialog.component' import { OPEN_DOCUMENT_SERVICE } from '../data/storage-keys' import { wind } from 'ngx-bootstrap-icons' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const documents = [ { @@ -56,9 +57,14 @@ describe('OpenDocumentsService', () => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [OpenDocumentsService, NgbModal], - imports: [HttpClientTestingModule], declarations: [ConfirmDialogComponent], + imports: [], + providers: [ + OpenDocumentsService, + NgbModal, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) sessionStorage.clear() diff --git a/src-ui/src/app/services/profile.service.spec.ts b/src-ui/src/app/services/profile.service.spec.ts index 538911ac3..beb7e9ad5 100644 --- a/src-ui/src/app/services/profile.service.spec.ts +++ b/src-ui/src/app/services/profile.service.spec.ts @@ -2,10 +2,11 @@ import { TestBed } from '@angular/core/testing' import { ProfileService } from './profile.service' import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { environment } from 'src/environments/environment' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('ProfileService', () => { let httpTestingController: HttpTestingController @@ -13,8 +14,12 @@ describe('ProfileService', () => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [ProfileService], - imports: [HttpClientTestingModule], + imports: [], + providers: [ + ProfileService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) httpTestingController = TestBed.inject(HttpTestingController) diff --git a/src-ui/src/app/services/rest/abstract-paperless-service.spec.ts b/src-ui/src/app/services/rest/abstract-paperless-service.spec.ts index 0cabcef02..38549c0bc 100644 --- a/src-ui/src/app/services/rest/abstract-paperless-service.spec.ts +++ b/src-ui/src/app/services/rest/abstract-paperless-service.spec.ts @@ -1,11 +1,12 @@ import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { AbstractPaperlessService } from './abstract-paperless-service' import { Subscription } from 'rxjs' import { TestBed } from '@angular/core/testing' import { environment } from 'src/environments/environment' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' let httpTestingController: HttpTestingController let service: AbstractPaperlessService @@ -115,9 +116,13 @@ export const commonAbstractPaperlessServiceTests = (endpoint, ServiceClass) => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [ServiceClass], - imports: [HttpClientTestingModule], teardown: { destroyAfterEach: true }, + imports: [], + providers: [ + ServiceClass, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) httpTestingController = TestBed.inject(HttpTestingController) diff --git a/src-ui/src/app/services/rest/document.service.spec.ts b/src-ui/src/app/services/rest/document.service.spec.ts index b08051a79..3bea435fc 100644 --- a/src-ui/src/app/services/rest/document.service.spec.ts +++ b/src-ui/src/app/services/rest/document.service.spec.ts @@ -1,6 +1,6 @@ import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { Subscription } from 'rxjs' import { TestBed } from '@angular/core/testing' @@ -14,6 +14,7 @@ import { DOCUMENT_SORT_FIELDS_FULLTEXT, } from 'src/app/data/document' import { PermissionsService } from '../permissions.service' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' let httpTestingController: HttpTestingController let service: DocumentService @@ -45,8 +46,12 @@ const documents = [ beforeEach(() => { TestBed.configureTestingModule({ - providers: [DocumentService], - imports: [HttpClientTestingModule], + imports: [], + providers: [ + DocumentService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) httpTestingController = TestBed.inject(HttpTestingController) diff --git a/src-ui/src/app/services/rest/log.service.spec.ts b/src-ui/src/app/services/rest/log.service.spec.ts index 234c94b6c..ec0bf094a 100644 --- a/src-ui/src/app/services/rest/log.service.spec.ts +++ b/src-ui/src/app/services/rest/log.service.spec.ts @@ -1,11 +1,12 @@ import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { Subscription } from 'rxjs' import { TestBed } from '@angular/core/testing' import { environment } from 'src/environments/environment' import { LogService } from './log.service' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' let httpTestingController: HttpTestingController let service: LogService @@ -15,8 +16,12 @@ const endpoint = 'logs' describe('LogService', () => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [LogService], - imports: [HttpClientTestingModule], + imports: [], + providers: [ + LogService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) httpTestingController = TestBed.inject(HttpTestingController) diff --git a/src-ui/src/app/services/rest/remote-version.service.spec.ts b/src-ui/src/app/services/rest/remote-version.service.spec.ts index f816e2d93..2390dd5c5 100644 --- a/src-ui/src/app/services/rest/remote-version.service.spec.ts +++ b/src-ui/src/app/services/rest/remote-version.service.spec.ts @@ -1,11 +1,12 @@ import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { Subscription } from 'rxjs' import { TestBed } from '@angular/core/testing' import { environment } from 'src/environments/environment' import { RemoteVersionService } from './remote-version.service' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' let httpTestingController: HttpTestingController let service: RemoteVersionService @@ -15,8 +16,12 @@ const endpoint = 'remote_version' describe('RemoteVersionService', () => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [RemoteVersionService], - imports: [HttpClientTestingModule], + imports: [], + providers: [ + RemoteVersionService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) httpTestingController = TestBed.inject(HttpTestingController) diff --git a/src-ui/src/app/services/rest/search.service.spec.ts b/src-ui/src/app/services/rest/search.service.spec.ts index 346b8a092..7705fb481 100644 --- a/src-ui/src/app/services/rest/search.service.spec.ts +++ b/src-ui/src/app/services/rest/search.service.spec.ts @@ -1,6 +1,6 @@ import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { Subscription } from 'rxjs' import { TestBed } from '@angular/core/testing' @@ -8,6 +8,7 @@ import { environment } from 'src/environments/environment' import { SearchService } from './search.service' import { SettingsService } from '../settings.service' import { SETTINGS_KEYS } from 'src/app/data/ui-settings' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' let httpTestingController: HttpTestingController let service: SearchService @@ -18,8 +19,12 @@ const endpoint = 'search/autocomplete' describe('SearchService', () => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [SearchService], - imports: [HttpClientTestingModule], + imports: [], + providers: [ + SearchService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) httpTestingController = TestBed.inject(HttpTestingController) diff --git a/src-ui/src/app/services/settings.service.spec.ts b/src-ui/src/app/services/settings.service.spec.ts index ae8976726..6b4d713c8 100644 --- a/src-ui/src/app/services/settings.service.spec.ts +++ b/src-ui/src/app/services/settings.service.spec.ts @@ -1,6 +1,6 @@ import { HttpTestingController, - HttpClientTestingModule, + provideHttpClientTesting, } from '@angular/common/http/testing' import { TestBed } from '@angular/core/testing' import { FormsModule, ReactiveFormsModule } from '@angular/forms' @@ -17,6 +17,7 @@ import { CustomFieldsService } from './rest/custom-fields.service' import { CustomFieldDataType } from '../data/custom-field' import { PermissionsService } from './permissions.service' import { DEFAULT_DISPLAY_FIELDS, DisplayField } from '../data/document' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' const customFields = [ { @@ -84,15 +85,19 @@ describe('SettingsService', () => { beforeEach(() => { TestBed.configureTestingModule({ declarations: [], - providers: [SettingsService, CookieService], imports: [ - HttpClientTestingModule, RouterTestingModule, NgbModule, FormsModule, ReactiveFormsModule, AppModule, ], + providers: [ + SettingsService, + CookieService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) httpTestingController = TestBed.inject(HttpTestingController) diff --git a/src-ui/src/app/services/system-status.service.spec.ts b/src-ui/src/app/services/system-status.service.spec.ts index dd0eb3a88..29c510197 100644 --- a/src-ui/src/app/services/system-status.service.spec.ts +++ b/src-ui/src/app/services/system-status.service.spec.ts @@ -2,10 +2,11 @@ import { TestBed } from '@angular/core/testing' import { SystemStatusService } from './system-status.service' import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { environment } from 'src/environments/environment' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('SystemStatusService', () => { let httpTestingController: HttpTestingController @@ -13,8 +14,12 @@ describe('SystemStatusService', () => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [SystemStatusService], - imports: [HttpClientTestingModule], + imports: [], + providers: [ + SystemStatusService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) httpTestingController = TestBed.inject(HttpTestingController) diff --git a/src-ui/src/app/services/tasks.service.spec.ts b/src-ui/src/app/services/tasks.service.spec.ts index c41b69f24..76a07c34e 100644 --- a/src-ui/src/app/services/tasks.service.spec.ts +++ b/src-ui/src/app/services/tasks.service.spec.ts @@ -1,12 +1,13 @@ import { TestBed } from '@angular/core/testing' import { TasksService } from './tasks.service' import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { environment } from 'src/environments/environment' import { PaperlessTaskType } from '../data/paperless-task' import { PaperlessTaskStatus } from '../data/paperless-task' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('TasksService', () => { let httpTestingController: HttpTestingController @@ -14,8 +15,12 @@ describe('TasksService', () => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [TasksService], - imports: [HttpClientTestingModule], + imports: [], + providers: [ + TasksService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) httpTestingController = TestBed.inject(HttpTestingController) diff --git a/src-ui/src/app/services/upload-documents.service.spec.ts b/src-ui/src/app/services/upload-documents.service.spec.ts index f1e1ae8b5..60a00d461 100644 --- a/src-ui/src/app/services/upload-documents.service.spec.ts +++ b/src-ui/src/app/services/upload-documents.service.spec.ts @@ -1,11 +1,15 @@ import { TestBed } from '@angular/core/testing' import { UploadDocumentsService } from './upload-documents.service' import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' import { environment } from 'src/environments/environment' -import { HttpEventType } from '@angular/common/http' +import { + HttpEventType, + provideHttpClient, + withInterceptorsFromDi, +} from '@angular/common/http' import { ConsumerStatusService, FileStatusPhase, @@ -45,8 +49,13 @@ describe('UploadDocumentsService', () => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [UploadDocumentsService, ConsumerStatusService], - imports: [HttpClientTestingModule], + imports: [], + providers: [ + UploadDocumentsService, + ConsumerStatusService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) httpTestingController = TestBed.inject(HttpTestingController) diff --git a/src-ui/src/app/utils/ngb-date-parser-formatter.spec.ts b/src-ui/src/app/utils/ngb-date-parser-formatter.spec.ts index b8531bbb3..a245b0f48 100644 --- a/src-ui/src/app/utils/ngb-date-parser-formatter.spec.ts +++ b/src-ui/src/app/utils/ngb-date-parser-formatter.spec.ts @@ -2,9 +2,10 @@ import { TestBed } from '@angular/core/testing' import { LocalizedDateParserFormatter } from './ngb-date-parser-formatter' import { SettingsService } from '../services/settings.service' import { - HttpClientTestingModule, HttpTestingController, + provideHttpClientTesting, } from '@angular/common/http/testing' +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' describe('LocalizedDateParserFormatter', () => { let dateParserFormatter: LocalizedDateParserFormatter @@ -13,8 +14,13 @@ describe('LocalizedDateParserFormatter', () => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [LocalizedDateParserFormatter, SettingsService], - imports: [HttpClientTestingModule], + imports: [], + providers: [ + LocalizedDateParserFormatter, + SettingsService, + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), + ], }) dateParserFormatter = TestBed.inject(LocalizedDateParserFormatter) From a3c468a00407a43c75a8476687944abeeb27d287 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 04:33:27 +0000 Subject: [PATCH 08/39] Chore(deps-dev): Bump ws from 8.17.0 to 8.17.1 in /src-ui (#7114) Bumps [ws](https://github.com/websockets/ws) from 8.17.0 to 8.17.1. - [Release notes](https://github.com/websockets/ws/releases) - [Commits](https://github.com/websockets/ws/compare/8.17.0...8.17.1) --- updated-dependencies: - dependency-name: ws dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src-ui/package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src-ui/package-lock.json b/src-ui/package-lock.json index b5a8e9c80..5859ee126 100644 --- a/src-ui/package-lock.json +++ b/src-ui/package-lock.json @@ -19177,9 +19177,9 @@ } }, "node_modules/ws": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz", - "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==", + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", + "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", "dev": true, "engines": { "node": ">=10.0.0" From f01283c30993af1b7a6ffdcf62006425e6a8605d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 19:06:37 +0000 Subject: [PATCH 09/39] Chore(deps-dev): Bump ruff from 0.4.9 to 0.5.0 in the development group across 1 directory (#7120) * Chore(deps-dev): Bump ruff in the development group across 1 directory Bumps the development group with 1 update in the / directory: [ruff](https://github.com/astral-sh/ruff). Updates `ruff` from 0.4.9 to 0.5.0 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.4.9...0.5.0) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development ... Signed-off-by: dependabot[bot] * Update .pre-commit-config.yaml * Lets ruff fix this new lint --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Trenton H <797416+stumpylog@users.noreply.github.com> --- .pre-commit-config.yaml | 2 +- Pipfile.lock | 37 +++++++++++++++++++------------------ src/paperless/settings.py | 2 +- 3 files changed, 21 insertions(+), 20 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 15689d6e2..c57f18c8e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -47,7 +47,7 @@ repos: exclude: "(^Pipfile\\.lock$)" # Python hooks - repo: https://github.com/astral-sh/ruff-pre-commit - rev: 'v0.4.9' + rev: 'v0.5.0' hooks: - id: ruff - id: ruff-format diff --git a/Pipfile.lock b/Pipfile.lock index a79f6db12..e2ff50137 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -3591,27 +3591,28 @@ }, "ruff": { "hashes": [ - "sha256:06b60f91bfa5514bb689b500a25ba48e897d18fea14dce14b48a0c40d1635893", - "sha256:0e8e7b95673f22e0efd3571fb5b0cf71a5eaaa3cc8a776584f3b2cc878e46bff", - "sha256:2d45ddc6d82e1190ea737341326ecbc9a61447ba331b0a8962869fcada758505", - "sha256:4555056049d46d8a381f746680db1c46e67ac3b00d714606304077682832998e", - "sha256:5d5460f789ccf4efd43f265a58538a2c24dbce15dbf560676e430375f20a8198", - "sha256:673bddb893f21ab47a8334c8e0ea7fd6598ecc8e698da75bcd12a7b9d0a3206e", - "sha256:732dd550bfa5d85af8c3c6cbc47ba5b67c6aed8a89e2f011b908fc88f87649db", - "sha256:784d3ec9bd6493c3b720a0b76f741e6c2d7d44f6b2be87f5eef1ae8cc1d54c84", - "sha256:78de3fdb95c4af084087628132336772b1c5044f6e710739d440fc0bccf4d321", - "sha256:8064590fd1a50dcf4909c268b0e7c2498253273309ad3d97e4a752bb9df4f521", - "sha256:88bffe9c6a454bf8529f9ab9091c99490578a593cc9f9822b7fc065ee0712a06", - "sha256:8c1aff58c31948cc66d0b22951aa19edb5af0a3af40c936340cd32a8b1ab7438", - "sha256:98ec2775fd2d856dc405635e5ee4ff177920f2141b8e2d9eb5bd6efd50e80317", - "sha256:b262ed08d036ebe162123170b35703aaf9daffecb698cd367a8d585157732991", - "sha256:e0a22c4157e53d006530c902107c7f550b9233e9706313ab57b892d7197d8e52", - "sha256:e91175fbe48f8a2174c9aad70438fe9cb0a5732c4159b2a10a3565fea2d94cde", - "sha256:f1cb0828ac9533ba0135d148d214e284711ede33640465e706772645483427e3" + "sha256:2c4dfcd8d34b143916994b3876b63d53f56724c03f8c1a33a253b7b1e6bf2a7d", + "sha256:38f3b8327b3cb43474559d435f5fa65dacf723351c159ed0dc567f7ab735d1b6", + "sha256:46e193b36f2255729ad34a49c9a997d506e58f08555366b2108783b3064a0e1e", + "sha256:49141d267100f5ceff541b4e06552e98527870eafa1acc9dec9139c9ec5af64c", + "sha256:7594f8df5404a5c5c8f64b8311169879f6cf42142da644c7e0ba3c3f14130370", + "sha256:81e5facfc9f4a674c6a78c64d38becfbd5e4f739c31fcd9ce44c849f1fad9e4c", + "sha256:9dc5cfd3558f14513ed0d5b70ce531e28ea81a8a3b1b07f0f48421a3d9e7d80a", + "sha256:adc7012d6ec85032bc4e9065110df205752d64010bed5f958d25dbee9ce35de3", + "sha256:b1a321c4f68809fddd9b282fab6a8d8db796b270fff44722589a8b946925a2a8", + "sha256:cd096e23c6a4f9c819525a437fa0a99d1c67a1b6bb30948d46f33afbc53596cf", + "sha256:d2ffbc3715a52b037bcb0f6ff524a9367f642cdc5817944f6af5479bbb2eb50e", + "sha256:d505fb93b0fabef974b168d9b27c3960714d2ecda24b6ffa6a87ac432905ea38", + "sha256:db3ca35265de239a1176d56a464b51557fce41095c37d6c406e658cf80bbb362", + "sha256:e589e27971c2a3efff3fadafb16e5aef7ff93250f0134ec4b52052b673cf988d", + "sha256:e9118f60091047444c1b90952736ee7b1792910cab56e9b9a9ac20af94cd0440", + "sha256:eb641b5873492cf9bd45bc9c5ae5320648218e04386a5f0c264ad6ccce8226a1", + "sha256:ed5c4df5c1fb4518abcb57725b576659542bdbe93366f4f329e8f398c4b71178", + "sha256:ee770ea8ab38918f34e7560a597cc0a8c9a193aaa01bfbd879ef43cb06bd9c4c" ], "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==0.4.9" + "version": "==0.5.0" }, "scipy": { "hashes": [ diff --git a/src/paperless/settings.py b/src/paperless/settings.py index d941b7572..e2aab9dbb 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -522,7 +522,7 @@ if DEBUG: CORS_ALLOWED_ORIGINS.append("http://localhost:4200") ALLOWED_HOSTS = __get_list("PAPERLESS_ALLOWED_HOSTS", ["*"]) -if ["*"] != ALLOWED_HOSTS: +if ALLOWED_HOSTS != ["*"]: # always allow localhost. Necessary e.g. for healthcheck in docker. ALLOWED_HOSTS.append("localhost") From ac0ed0def8ed1b7f6df0138598098e31538dc78d Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 27 Jun 2024 13:33:39 -0700 Subject: [PATCH 10/39] Fix: handle errors for trash actions and only show documents user can restore or delete (#7119) --- src-ui/messages.xlf | 57 +++++++++++++----- .../admin/trash/trash.component.spec.ts | 45 ++++++++++++-- .../components/admin/trash/trash.component.ts | 60 ++++++++++++++----- src/documents/filters.py | 14 +++++ src/documents/tests/test_api_trash.py | 57 ++++++++++++++++-- src/documents/views.py | 5 +- 6 files changed, 195 insertions(+), 43 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 492c160c9..60ef72870 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -1437,7 +1437,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -2153,7 +2153,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2179,7 +2179,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2214,42 +2214,74 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 + + + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 + + + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 + + + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 + + + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 @@ -6073,13 +6105,6 @@ 716 - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Reprocess confirm diff --git a/src-ui/src/app/components/admin/trash/trash.component.spec.ts b/src-ui/src/app/components/admin/trash/trash.component.spec.ts index 57d4b4237..c9e797a1f 100644 --- a/src-ui/src/app/components/admin/trash/trash.component.spec.ts +++ b/src-ui/src/app/components/admin/trash/trash.component.spec.ts @@ -11,10 +11,11 @@ import { import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { TrashService } from 'src/app/services/trash.service' -import { of } from 'rxjs' +import { of, throwError } from 'rxjs' import { ConfirmDialogComponent } from '../../common/confirm-dialog/confirm-dialog.component' import { By } from '@angular/platform-browser' import { SafeHtmlPipe } from 'src/app/pipes/safehtml.pipe' +import { ToastService } from 'src/app/services/toast.service' const documentsInTrash = [ { @@ -36,6 +37,7 @@ describe('TrashComponent', () => { let fixture: ComponentFixture let trashService: TrashService let modalService: NgbModal + let toastService: ToastService beforeEach(async () => { await TestBed.configureTestingModule({ @@ -58,6 +60,7 @@ describe('TrashComponent', () => { fixture = TestBed.createComponent(TrashComponent) trashService = TestBed.inject(TrashService) modalService = TestBed.inject(NgbModal) + toastService = TestBed.inject(ToastService) component = fixture.componentInstance fixture.detectChanges() }) @@ -76,12 +79,20 @@ describe('TrashComponent', () => { expect(component.documentsInTrash).toEqual(documentsInTrash) }) - it('should support delete document', () => { + it('should support delete document, show error if needed', () => { const trashSpy = jest.spyOn(trashService, 'emptyTrash') let modal modalService.activeInstances.subscribe((instances) => { modal = instances[0] }) + const toastErrorSpy = jest.spyOn(toastService, 'showError') + + // fail first + trashSpy.mockReturnValue(throwError(() => 'Error')) + component.delete(documentsInTrash[0]) + modal.componentInstance.confirmClicked.next() + expect(toastErrorSpy).toHaveBeenCalled() + trashSpy.mockReturnValue(of('OK')) component.delete(documentsInTrash[0]) expect(modal).toBeDefined() @@ -89,12 +100,20 @@ describe('TrashComponent', () => { expect(trashSpy).toHaveBeenCalled() }) - it('should support empty trash', () => { + it('should support empty trash, show error if needed', () => { const trashSpy = jest.spyOn(trashService, 'emptyTrash') let modal modalService.activeInstances.subscribe((instances) => { modal = instances[instances.length - 1] }) + const toastErrorSpy = jest.spyOn(toastService, 'showError') + + // fail first + trashSpy.mockReturnValue(throwError(() => 'Error')) + component.emptyTrash() + modal.componentInstance.confirmClicked.next() + expect(toastErrorSpy).toHaveBeenCalled() + trashSpy.mockReturnValue(of('OK')) component.emptyTrash() expect(modal).toBeDefined() @@ -106,18 +125,34 @@ describe('TrashComponent', () => { expect(trashSpy).toHaveBeenCalledWith([1, 2]) }) - it('should support restore document', () => { + it('should support restore document, show error if needed', () => { const restoreSpy = jest.spyOn(trashService, 'restoreDocuments') const reloadSpy = jest.spyOn(component, 'reload') + const toastErrorSpy = jest.spyOn(toastService, 'showError') + + // fail first + restoreSpy.mockReturnValue(throwError(() => 'Error')) + component.restore(documentsInTrash[0]) + expect(toastErrorSpy).toHaveBeenCalled() + expect(reloadSpy).not.toHaveBeenCalled() + restoreSpy.mockReturnValue(of('OK')) component.restore(documentsInTrash[0]) expect(restoreSpy).toHaveBeenCalledWith([documentsInTrash[0].id]) expect(reloadSpy).toHaveBeenCalled() }) - it('should support restore all documents', () => { + it('should support restore all documents, show error if needed', () => { const restoreSpy = jest.spyOn(trashService, 'restoreDocuments') const reloadSpy = jest.spyOn(component, 'reload') + const toastErrorSpy = jest.spyOn(toastService, 'showError') + + // fail first + restoreSpy.mockReturnValue(throwError(() => 'Error')) + component.restoreAll() + expect(toastErrorSpy).toHaveBeenCalled() + expect(reloadSpy).not.toHaveBeenCalled() + restoreSpy.mockReturnValue(of('OK')) component.restoreAll() expect(restoreSpy).toHaveBeenCalled() diff --git a/src-ui/src/app/components/admin/trash/trash.component.ts b/src-ui/src/app/components/admin/trash/trash.component.ts index b867f1706..cf807e831 100644 --- a/src-ui/src/app/components/admin/trash/trash.component.ts +++ b/src-ui/src/app/components/admin/trash/trash.component.ts @@ -59,10 +59,16 @@ export class TrashComponent implements OnDestroy { .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe(() => { modal.componentInstance.buttonsEnabled = false - this.trashService.emptyTrash([document.id]).subscribe(() => { - this.toastService.showInfo($localize`Document deleted`) - modal.close() - this.reload() + this.trashService.emptyTrash([document.id]).subscribe({ + next: () => { + this.toastService.showInfo($localize`Document deleted`) + modal.close() + this.reload() + }, + error: (err) => { + this.toastService.showError($localize`Error deleting document`, err) + modal.close() + }, }) }) } @@ -83,29 +89,51 @@ export class TrashComponent implements OnDestroy { .subscribe(() => { this.trashService .emptyTrash(documents ? Array.from(documents) : null) - .subscribe(() => { - this.toastService.showInfo($localize`Document(s) deleted`) - this.allToggled = false - modal.close() - this.reload() + .subscribe({ + next: () => { + this.toastService.showInfo($localize`Document(s) deleted`) + this.allToggled = false + modal.close() + this.reload() + }, + error: (err) => { + this.toastService.showError( + $localize`Error deleting document(s)`, + err + ) + modal.close() + }, }) }) } restore(document: Document) { - this.trashService.restoreDocuments([document.id]).subscribe(() => { - this.toastService.showInfo($localize`Document restored`) - this.reload() + this.trashService.restoreDocuments([document.id]).subscribe({ + next: () => { + this.toastService.showInfo($localize`Document restored`) + this.reload() + }, + error: (err) => { + this.toastService.showError($localize`Error restoring document`, err) + }, }) } restoreAll(documents: Set = null) { this.trashService .restoreDocuments(documents ? Array.from(documents) : null) - .subscribe(() => { - this.toastService.showInfo($localize`Document(s) restored`) - this.allToggled = false - this.reload() + .subscribe({ + next: () => { + this.toastService.showInfo($localize`Document(s) restored`) + this.allToggled = false + this.reload() + }, + error: (err) => { + this.toastService.showError( + $localize`Error restoring document(s)`, + err + ) + }, }) } diff --git a/src/documents/filters.py b/src/documents/filters.py index c548cfa22..2c8baa62f 100644 --- a/src/documents/filters.py +++ b/src/documents/filters.py @@ -276,3 +276,17 @@ class ObjectOwnedOrGrantedPermissionsFilter(ObjectPermissionsFilter): objects_owned = queryset.filter(owner=request.user) objects_unowned = queryset.filter(owner__isnull=True) return objects_with_perms | objects_owned | objects_unowned + + +class ObjectOwnedPermissionsFilter(ObjectPermissionsFilter): + """ + A filter backend that limits results to those where the requesting user + owns the objects or objects without an owner (for backwards compat) + """ + + def filter_queryset(self, request, queryset, view): + if request.user.is_superuser: + return queryset + objects_owned = queryset.filter(owner=request.user) + objects_unowned = queryset.filter(owner__isnull=True) + return objects_owned | objects_unowned diff --git a/src/documents/tests/test_api_trash.py b/src/documents/tests/test_api_trash.py index 90d78610f..ab4e96773 100644 --- a/src/documents/tests/test_api_trash.py +++ b/src/documents/tests/test_api_trash.py @@ -1,3 +1,4 @@ +from django.contrib.auth.models import Permission from django.contrib.auth.models import User from django.core.cache import cache from rest_framework import status @@ -10,7 +11,8 @@ class TestTrashAPI(APITestCase): def setUp(self): super().setUp() - self.user = User.objects.create_superuser(username="temp_admin") + self.user = User.objects.create_user(username="temp_admin") + self.user.user_permissions.add(*Permission.objects.all()) self.client.force_authenticate(user=self.user) cache.clear() @@ -97,6 +99,56 @@ class TestTrashAPI(APITestCase): self.assertEqual(resp.status_code, status.HTTP_200_OK) self.assertEqual(Document.global_objects.count(), 0) + def test_api_trash_show_owned_only(self): + """ + GIVEN: + - Existing documents in trash + WHEN: + - API request to show documents in trash for regular user + - API request to show documents in trash for superuser + THEN: + - Only owned documents are returned + """ + + document_u1 = Document.objects.create( + title="Title", + content="content", + checksum="checksum", + mime_type="application/pdf", + owner=self.user, + ) + document_u1.delete() + document_not_owned = Document.objects.create( + title="Title2", + content="content2", + checksum="checksum2", + mime_type="application/pdf", + ) + document_not_owned.delete() + user2 = User.objects.create_user(username="user2") + document_u2 = Document.objects.create( + title="Title3", + content="content3", + checksum="checksum3", + mime_type="application/pdf", + owner=user2, + ) + document_u2.delete() + + # user only sees their own documents or unowned documents + resp = self.client.get("/api/trash/") + self.assertEqual(resp.status_code, status.HTTP_200_OK) + self.assertEqual(resp.data["count"], 2) + self.assertEqual(resp.data["results"][0]["id"], document_not_owned.pk) + self.assertEqual(resp.data["results"][1]["id"], document_u1.pk) + + # superuser sees all documents + superuser = User.objects.create_superuser(username="superuser") + self.client.force_authenticate(user=superuser) + resp = self.client.get("/api/trash/") + self.assertEqual(resp.status_code, status.HTTP_200_OK) + self.assertEqual(resp.data["count"], 3) + def test_api_trash_insufficient_permissions(self): """ GIVEN: @@ -107,9 +159,6 @@ class TestTrashAPI(APITestCase): - 403 Forbidden """ - user1 = User.objects.create_user(username="user1") - self.client.force_authenticate(user=user1) - self.client.force_login(user=user1) user2 = User.objects.create_user(username="user2") document = Document.objects.create( title="Title", diff --git a/src/documents/views.py b/src/documents/views.py index 7457ce12f..2862809f9 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -96,6 +96,7 @@ from documents.filters import CustomFieldFilterSet from documents.filters import DocumentFilterSet from documents.filters import DocumentTypeFilterSet from documents.filters import ObjectOwnedOrGrantedPermissionsFilter +from documents.filters import ObjectOwnedPermissionsFilter from documents.filters import ShareLinkFilterSet from documents.filters import StoragePathFilterSet from documents.filters import TagFilterSet @@ -2060,7 +2061,7 @@ class SystemStatusView(PassUserMixin): class TrashView(ListModelMixin, PassUserMixin): permission_classes = (IsAuthenticated,) serializer_class = TrashSerializer - filter_backends = (ObjectOwnedOrGrantedPermissionsFilter,) + filter_backends = (ObjectOwnedPermissionsFilter,) pagination_class = StandardPagination model = Document @@ -2079,7 +2080,7 @@ class TrashView(ListModelMixin, PassUserMixin): docs = ( Document.global_objects.filter(id__in=doc_ids) if doc_ids is not None - else Document.deleted_objects.all() + else self.filter_queryset(self.get_queryset()).all() ) for doc in docs: if not has_perms_owner_aware(request.user, "delete_document", doc): From e799d757c29cee758af3d9e3e73972c42d96240e Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Thu, 27 Jun 2024 13:40:16 -0700 Subject: [PATCH 11/39] Ignores DRF 3.15.2 (#7122) --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cf9d7201c..d6f6b4efd 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -53,6 +53,7 @@ updates: versions: - "3.15.0" - "3.15.1" + - "3.15.2" groups: development: patterns: From a64d457c30da0b3a7aa6cd57b1666914c61e751e Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 27 Jun 2024 13:46:49 -0700 Subject: [PATCH 12/39] Enhancement: use request user as owner of split / merge docs (#7112) --- src/documents/bulk_edit.py | 14 +++++++++++++- src/documents/tests/test_api_bulk_edit.py | 3 +++ src/documents/tests/test_bulk_edit.py | 6 ++++-- src/documents/views.py | 5 +++++ 4 files changed, 25 insertions(+), 3 deletions(-) diff --git a/src/documents/bulk_edit.py b/src/documents/bulk_edit.py index 7f56a1207..1f7a2a403 100644 --- a/src/documents/bulk_edit.py +++ b/src/documents/bulk_edit.py @@ -10,6 +10,7 @@ from celery import chord from celery import group from celery import shared_task from django.conf import settings +from django.contrib.auth.models import User from django.db.models import Q from documents.data_models import ConsumableDocument @@ -243,6 +244,7 @@ def merge( doc_ids: list[int], metadata_document_id: Optional[int] = None, delete_originals: bool = False, + user: User = None, ): logger.info( f"Attempting to merge {len(doc_ids)} documents into a single document.", @@ -285,6 +287,9 @@ def merge( else: overrides = DocumentMetadataOverrides() + if user is not None: + overrides.owner_id = user.id + logger.info("Adding merged document to the task queue.") consume_task = consume_file.s( @@ -306,7 +311,12 @@ def merge( return "OK" -def split(doc_ids: list[int], pages: list[list[int]], delete_originals: bool = False): +def split( + doc_ids: list[int], + pages: list[list[int]], + delete_originals: bool = False, + user: User = None, +): logger.info( f"Attempting to split document {doc_ids[0]} into {len(pages)} documents", ) @@ -331,6 +341,8 @@ def split(doc_ids: list[int], pages: list[list[int]], delete_originals: bool = F overrides = DocumentMetadataOverrides().from_document(doc) overrides.title = f"{doc.title} (split {idx + 1})" + if user is not None: + overrides.owner_id = user.id logger.info( f"Adding split document with pages {split_doc} to the task queue.", ) diff --git a/src/documents/tests/test_api_bulk_edit.py b/src/documents/tests/test_api_bulk_edit.py index ebef6a329..ba0e1139f 100644 --- a/src/documents/tests/test_api_bulk_edit.py +++ b/src/documents/tests/test_api_bulk_edit.py @@ -20,6 +20,7 @@ class TestBulkEditAPI(DirectoriesMixin, APITestCase): super().setUp() user = User.objects.create_superuser(username="temp_admin") + self.user = user self.client.force_authenticate(user=user) patcher = mock.patch("documents.bulk_edit.bulk_update_documents.delay") @@ -993,6 +994,7 @@ class TestBulkEditAPI(DirectoriesMixin, APITestCase): args, kwargs = m.call_args self.assertCountEqual(args[0], [self.doc2.id, self.doc3.id]) self.assertEqual(kwargs["metadata_document_id"], self.doc3.id) + self.assertEqual(kwargs["user"], self.user) @mock.patch("documents.serialisers.bulk_edit.merge") def test_merge_and_delete_insufficient_permissions(self, m): @@ -1092,6 +1094,7 @@ class TestBulkEditAPI(DirectoriesMixin, APITestCase): args, kwargs = m.call_args self.assertCountEqual(args[0], [self.doc2.id]) self.assertEqual(kwargs["pages"], [[1], [2, 3, 4], [5, 6], [7]]) + self.assertEqual(kwargs["user"], self.user) def test_split_invalid_params(self): response = self.client.post( diff --git a/src/documents/tests/test_bulk_edit.py b/src/documents/tests/test_bulk_edit.py index 37ebc35fc..fed93cd01 100644 --- a/src/documents/tests/test_bulk_edit.py +++ b/src/documents/tests/test_bulk_edit.py @@ -422,8 +422,9 @@ class TestPDFActions(DirectoriesMixin, TestCase): """ doc_ids = [self.doc1.id, self.doc2.id, self.doc3.id] metadata_document_id = self.doc1.id + user = User.objects.create(username="test_user") - result = bulk_edit.merge(doc_ids) + result = bulk_edit.merge(doc_ids, None, False, user) expected_filename = ( f"{'_'.join([str(doc_id) for doc_id in doc_ids])[:100]}_merged.pdf" @@ -525,7 +526,8 @@ class TestPDFActions(DirectoriesMixin, TestCase): """ doc_ids = [self.doc2.id] pages = [[1, 2], [3]] - result = bulk_edit.split(doc_ids, pages) + user = User.objects.create(username="test_user") + result = bulk_edit.split(doc_ids, pages, False, user) self.assertEqual(mock_consume_file.call_count, 2) consume_file_args, _ = mock_consume_file.call_args self.assertEqual(consume_file_args[1].title, "B (split 2)") diff --git a/src/documents/views.py b/src/documents/views.py index 2862809f9..575b1666b 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -961,6 +961,11 @@ class BulkEditView(PassUserMixin): method = serializer.validated_data.get("method") parameters = serializer.validated_data.get("parameters") documents = serializer.validated_data.get("documents") + if method in [ + bulk_edit.split, + bulk_edit.merge, + ]: + parameters["user"] = user if not user.is_superuser: document_objs = Document.objects.select_related("owner").filter( From fcc9847bc39ea02e70fbcf7b11b0c1bae434df5f Mon Sep 17 00:00:00 2001 From: phail Date: Fri, 28 Jun 2024 00:13:55 +0200 Subject: [PATCH 13/39] Development: Add VS Code Devcontainer Configuration (#7041) --- .devcontainer/Dockerfile | 180 ++++++++++++++++++ .devcontainer/README.md | 117 ++++++++++++ .devcontainer/devcontainer.json | 16 ++ ...ocker-compose.devcontainer.sqlite-tika.yml | 84 ++++++++ .devcontainer/vscode/launch.json | 43 +++++ .devcontainer/vscode/settings.json | 11 ++ .devcontainer/vscode/tasks.json | 136 +++++++++++++ .gitignore | 2 + 8 files changed, 589 insertions(+) create mode 100644 .devcontainer/Dockerfile create mode 100644 .devcontainer/README.md create mode 100644 .devcontainer/devcontainer.json create mode 100644 .devcontainer/docker-compose.devcontainer.sqlite-tika.yml create mode 100644 .devcontainer/vscode/launch.json create mode 100644 .devcontainer/vscode/settings.json create mode 100644 .devcontainer/vscode/tasks.json diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 000000000..2aecc45a1 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,180 @@ +# syntax=docker/dockerfile:1 + +FROM --platform=$BUILDPLATFORM docker.io/node:20-bookworm-slim as main-app + +ARG DEBIAN_FRONTEND=noninteractive + +# Buildx provided, must be defined to use though +ARG TARGETARCH + +# Can be workflow provided, defaults set for manual building +ARG JBIG2ENC_VERSION=0.29 +ARG QPDF_VERSION=11.9.0 +ARG GS_VERSION=10.03.1 + +# Set Python environment variables +ENV PYTHONDONTWRITEBYTECODE=1 \ + PYTHONUNBUFFERED=1 \ + # Ignore warning from Whitenoise + PYTHONWARNINGS="ignore:::django.http.response:517" \ + PNGX_CONTAINERIZED=1 + +# +# Begin installation and configuration +# Order the steps below from least often changed to most +# + +# Packages need for running +ARG RUNTIME_PACKAGES="\ + # General utils + curl \ + # Docker specific + gosu \ + # Timezones support + tzdata \ + # fonts for text file thumbnail generation + fonts-liberation \ + gettext \ + ghostscript \ + gnupg \ + icc-profiles-free \ + imagemagick \ + # PostgreSQL + postgresql-client \ + # MySQL / MariaDB + mariadb-client \ + # OCRmyPDF dependencies + tesseract-ocr \ + tesseract-ocr-eng \ + tesseract-ocr-deu \ + tesseract-ocr-fra \ + tesseract-ocr-ita \ + tesseract-ocr-spa \ + unpaper \ + pngquant \ + jbig2dec \ + # lxml + libxml2 \ + libxslt1.1 \ + # itself + qpdf \ + # Mime type detection + file \ + libmagic1 \ + media-types \ + zlib1g \ + # Barcode splitter + libzbar0 \ + poppler-utils \ + htop \ + sudo" + +# Install basic runtime packages. +# These change very infrequently +RUN set -eux \ + echo "Installing system packages" \ + && apt-get update \ + && apt-get install --yes --quiet --no-install-recommends ${RUNTIME_PACKAGES} + +ARG PYTHON_PACKAGES="\ + python3 \ + python3-pip \ + python3-wheel \ + pipenv \ + ca-certificates" + +RUN set -eux \ + echo "Installing python packages" \ + && apt-get update \ + && apt-get install --yes --quiet ${PYTHON_PACKAGES} + +RUN set -eux \ + && echo "Installing pre-built updates" \ + && echo "Installing qpdf ${QPDF_VERSION}" \ + && curl --fail --silent --show-error --location \ + --output libqpdf29_${QPDF_VERSION}-1_${TARGETARCH}.deb \ + https://github.com/paperless-ngx/builder/releases/download/qpdf-${QPDF_VERSION}/libqpdf29_${QPDF_VERSION}-1_${TARGETARCH}.deb \ + && curl --fail --silent --show-error --location \ + --output qpdf_${QPDF_VERSION}-1_${TARGETARCH}.deb \ + https://github.com/paperless-ngx/builder/releases/download/qpdf-${QPDF_VERSION}/qpdf_${QPDF_VERSION}-1_${TARGETARCH}.deb \ + && dpkg --install ./libqpdf29_${QPDF_VERSION}-1_${TARGETARCH}.deb \ + && dpkg --install ./qpdf_${QPDF_VERSION}-1_${TARGETARCH}.deb \ + && echo "Installing Ghostscript ${GS_VERSION}" \ + && curl --fail --silent --show-error --location \ + --output libgs10_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ + https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/libgs10_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ + && curl --fail --silent --show-error --location \ + --output ghostscript_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ + https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/ghostscript_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ + && curl --fail --silent --show-error --location \ + --output libgs10-common_${GS_VERSION}.dfsg-1_all.deb \ + https://github.com/paperless-ngx/builder/releases/download/ghostscript-${GS_VERSION}/libgs10-common_${GS_VERSION}.dfsg-1_all.deb \ + && dpkg --install ./libgs10-common_${GS_VERSION}.dfsg-1_all.deb \ + && dpkg --install ./libgs10_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ + && dpkg --install ./ghostscript_${GS_VERSION}.dfsg-1_${TARGETARCH}.deb \ + && echo "Installing jbig2enc" \ + && curl --fail --silent --show-error --location \ + --output jbig2enc_${JBIG2ENC_VERSION}-1_${TARGETARCH}.deb \ + https://github.com/paperless-ngx/builder/releases/download/jbig2enc-${JBIG2ENC_VERSION}/jbig2enc_${JBIG2ENC_VERSION}-1_${TARGETARCH}.deb \ + && dpkg --install ./jbig2enc_${JBIG2ENC_VERSION}-1_${TARGETARCH}.deb + +# setup docker-specific things +# These change sometimes, but rarely +WORKDIR /usr/src/paperless/src/docker/ + +COPY [ \ + "docker/imagemagick-policy.xml", \ + "./" \ +] + +RUN set -eux \ + && echo "Configuring ImageMagick" \ + && mv imagemagick-policy.xml /etc/ImageMagick-6/policy.xml + +# Packages needed only for building a few quick Python +# dependencies +ARG BUILD_PACKAGES="\ + build-essential \ + git \ + # https://www.psycopg.org/docs/install.html#prerequisites + libpq-dev \ + # https://github.com/PyMySQL/mysqlclient#linux + default-libmysqlclient-dev \ + pkg-config \ + pre-commit" + +# hadolint ignore=DL3042 +RUN --mount=type=cache,target=/root/.cache/pip/,id=pip-cache \ + set -eux \ + && echo "Installing build system packages" \ + && apt-get update \ + && apt-get install --yes --quiet ${BUILD_PACKAGES} + +RUN set -eux \ + && npm update npm -g + +# add users, setup scripts +# Mount the compiled frontend to expected location +RUN set -eux \ + && echo "Setting up user/group" \ + && groupmod --new-name paperless node \ + && usermod --login paperless --home /usr/src/paperless node \ + && usermod -s /bin/bash paperless \ + && echo "paperless ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers \ + && echo "Creating volume directories" \ + && mkdir --parents --verbose /usr/src/paperless/paperless-ngx/data \ + && mkdir --parents --verbose /usr/src/paperless/paperless-ngx/media \ + && mkdir --parents --verbose /usr/src/paperless/paperless-ngx/consume \ + && mkdir --parents --verbose /usr/src/paperless/paperless-ngx/export \ + && mkdir --parents --verbose /usr/src/paperless/paperless-ngx/.venv \ + && echo "Adjusting all permissions" \ + && chown --from root:root --changes --recursive paperless:paperless /usr/src/paperless +# && echo "Collecting static files" \ +# && gosu paperless python3 manage.py collectstatic --clear --no-input --link \ +# && gosu paperless python3 manage.py compilemessages + +VOLUME ["/usr/src/paperless/paperless-ngx/data", \ + "/usr/src/paperless/paperless-ngx/media", \ + "/usr/src/paperless/paperless-ngx/consume", \ + "/usr/src/paperless/paperless-ngx/export", \ + "/usr/src/paperless/paperless-ngx/.venv"] diff --git a/.devcontainer/README.md b/.devcontainer/README.md new file mode 100644 index 000000000..3644d90c3 --- /dev/null +++ b/.devcontainer/README.md @@ -0,0 +1,117 @@ +# Paperless NGX Development Environment + +## Overview + +Welcome to the Paperless NGX development environment! This setup uses VSCode DevContainers to provide a consistent and seamless development experience. + +### What are DevContainers? + +DevContainers are a feature in VSCode that allows you to develop within a Docker container. This ensures that your development environment is consistent across different machines and setups. By defining a containerized environment, you can eliminate the "works on my machine" problem. + +### Advantages of DevContainers + +- **Consistency**: Same environment for all developers. +- **Isolation**: Separate development environment from your local machine. +- **Reproducibility**: Easily recreate the environment on any machine. +- **Pre-configured Tools**: Include all necessary tools and dependencies in the container. + +## DevContainer Setup + +The DevContainer configuration provides up all the necessary services for Paperless NGX, including: + +- Redis +- Gotenberg +- Tika + +Data is stored using Docker volumes to ensure persistence across container restarts. + +## Configuration Files + +The setup includes debugging configurations (`launch.json`) and tasks (`tasks.json`) to help you manage and debug various parts of the project: + +- **Backend Debugging:** + - `manage.py runserver` + - `manage.py document-consumer` + - `celery` +- **Maintenance Tasks:** + - Create superuser + - Run migrations + - Recreate virtual environment (`.venv` with pipenv) + - Compile frontend assets + +## Getting Started + +### Step 1: Running the DevContainer + +To start the DevContainer: + +1. Open VSCode. +2. Open the project folder. +3. Open the command palette: + - **Windows/Linux**: `Ctrl+Shift+P` + - **Mac**: `Cmd+Shift+P` +4. Type and select `Dev Containers: Rebuild and Reopen in Container`. + +VSCode will build and start the DevContainer environment. + +### Step 2: Initial Setup + +Once the DevContainer is up and running, perform the following steps: + +1. **Compile Frontend Assets**: + + - Open the command palette: + - **Windows/Linux**: `Ctrl+Shift+P` + - **Mac**: `Cmd+Shift+P` + - Select `Tasks: Run Task`. + - Choose `Frontend Compile`. + +2. **Run Database Migrations**: + + - Open the command palette: + - **Windows/Linux**: `Ctrl+Shift+P` + - **Mac**: `Cmd+Shift+P` + - Select `Tasks: Run Task`. + - Choose `Migrate Database`. + +3. **Create Superuser**: + - Open the command palette: + - **Windows/Linux**: `Ctrl+Shift+P` + - **Mac**: `Cmd+Shift+P` + - Select `Tasks: Run Task`. + - Choose `Create Superuser`. + +### Debugging and Running Services + +You can start and debug backend services either as debugging sessions via `launch.json` or as tasks. + +#### Using `launch.json`: + +1. Press `F5` or go to the **Run and Debug** view in VSCode. +2. Select the desired configuration: + - `Runserver` + - `Document Consumer` + - `Celery` + +#### Using Tasks: + +1. Open the command palette: + - **Windows/Linux**: `Ctrl+Shift+P` + - **Mac**: `Cmd+Shift+P` +2. Select `Tasks: Run Task`. +3. Choose the desired task: + - `Runserver` + - `Document Consumer` + - `Celery` + +### Additional Maintenance Tasks + +Additional tasks are available for common maintenance operations: + +- **Recreate .venv**: For setting up the virtual environment using pipenv. +- **Migrate Database**: To apply database migrations. +- **Create Superuser**: To create an admin user for the application. + +## Let's Get Started! + +Follow the steps above to get your development environment up and running. Happy coding! diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..e0fa56109 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,16 @@ +{ + "name": "Paperless Development", + "dockerComposeFile": "docker-compose.devcontainer.sqlite-tika.yml", + "service": "paperless-development", + "workspaceFolder": "/usr/src/paperless/paperless-ngx", + "postCreateCommand": "/bin/bash -c pre-commit install && pipenv install --dev", + "customizations": { + "vscode": { + "extensions": [ + "mhutchie.git-graph", + "ms-python.python" + ] + } + }, + "remoteUser": "paperless" + } diff --git a/.devcontainer/docker-compose.devcontainer.sqlite-tika.yml b/.devcontainer/docker-compose.devcontainer.sqlite-tika.yml new file mode 100644 index 000000000..cd978ebcb --- /dev/null +++ b/.devcontainer/docker-compose.devcontainer.sqlite-tika.yml @@ -0,0 +1,84 @@ +# Docker Compose file for developing Paperless NGX in VSCode DevContainers. +# This file contains everything Paperless NGX needs to run. +# Paperless supports amd64, arm, and arm64 hardware. +# All compose files of Paperless configure it in the following way: +# +# - Paperless is (re)started on system boot if it was running before shutdown. +# - Docker volumes for storing data are managed by Docker. +# - Folders for importing and exporting files are created in the same directory +# as this file and mounted to the correct folders inside the container. +# - Paperless listens on port 8000. +# +# SQLite is used as the database. The SQLite file is stored in the data volume. +# +# In addition, this Docker Compose file adds the following optional +# configurations: +# +# - Apache Tika and Gotenberg servers are started with Paperless NGX and Paperless +# is configured to use these services. These provide support for consuming +# Office documents (Word, Excel, PowerPoint, and their LibreOffice counterparts). +# +# This file is intended only to be used through VSCOde devcontainers. See README.md +# in the folder .devcontainer. + + +services: + broker: + image: docker.io/library/redis:7 + restart: unless-stopped + volumes: + - redisdata:/data + + # No ports need to be exposed; the VSCode DevContainer plugin manages them. + paperless-development: + image: paperless-ngx + build: + context: ../ # Dockerfile cannot access files from parent directories if context is not set. + dockerfile: ./.devcontainer/Dockerfile + restart: unless-stopped + depends_on: + - broker + - gotenberg + - tika + volumes: + - ..:/usr/src/paperless/paperless-ngx:delegated + - ../.devcontainer/vscode:/usr/src/paperless/paperless-ngx/.vscode:delegated # VSCode config files + - pipenv:/usr/src/paperless/paperless-ngx/.venv # Pipenv environment persisted in volume + - /usr/src/paperless/paperless-ngx/src/documents/static/frontend # Static frontend files exist only in container + - /usr/src/paperless/paperless-ngx/src/.pytest_cache + - /usr/src/paperless/paperless-ngx/.ruff_cache + - /usr/src/paperless/paperless-ngx/htmlcov + - /usr/src/paperless/paperless-ngx/.coverage + - data:/usr/src/paperless/paperless-ngx/data + - media:/usr/src/paperless/paperless-ngx/media + environment: + PAPERLESS_REDIS: redis://broker:6379 + PAPERLESS_TIKA_ENABLED: 1 + PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000 + PAPERLESS_TIKA_ENDPOINT: http://tika:9998 + PAPERLESS_STATICDIR: ./src/documents/static + PAPERLESS_DEBUG: true + + # Overrides default command so things don't shut down after the process ends. + command: /bin/sh -c "chown -R paperless:paperless /usr/src/paperless/paperless-ngx/src/documents/static/frontend && chown -R paperless:paperless /usr/src/paperless/paperless-ngx/.ruff_cache && while sleep 1000; do :; done" + + gotenberg: + image: docker.io/gotenberg/gotenberg:7.10 + restart: unless-stopped + + # The Gotenberg Chromium route is used to convert .eml files. We do not + # want to allow external content like tracking pixels or even JavaScript. + command: + - "gotenberg" + - "--chromium-disable-javascript=true" + - "--chromium-allow-list=file:///tmp/.*" + + tika: + image: docker.io/apache/tika:latest + restart: unless-stopped + +volumes: + data: + media: + redisdata: + pipenv: diff --git a/.devcontainer/vscode/launch.json b/.devcontainer/vscode/launch.json new file mode 100644 index 000000000..2c50af44b --- /dev/null +++ b/.devcontainer/vscode/launch.json @@ -0,0 +1,43 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "manage.py runserver", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/src/manage.py", + "console": "integratedTerminal", + "justMyCode": true, + "args": ["runserver"], + "django": true + }, + { + "name": "manage.py document_consumer", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/src/manage.py", + "console": "integratedTerminal", + "justMyCode": true, + "args": ["document_consumer"], + "django": true + }, + { + "name": "celery", + "type": "python", + "cwd": "${workspaceFolder}/src", + "request": "launch", + "module": "celery", + "console": "integratedTerminal", + "env": { + "PYTHONPATH": "${workspaceFolder}/src" + }, + "args": [ + "-A", + "paperless", + "worker", + "-l", + "DEBUG" + ] + } + ] +} diff --git a/.devcontainer/vscode/settings.json b/.devcontainer/vscode/settings.json new file mode 100644 index 000000000..86c718cad --- /dev/null +++ b/.devcontainer/vscode/settings.json @@ -0,0 +1,11 @@ +{ + "python.testing.pytestArgs": [ + "src" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true, + "files.watcherExclude": { + "**/.venv/**": true, + "**/pytest_cache/**": true + } +} diff --git a/.devcontainer/vscode/tasks.json b/.devcontainer/vscode/tasks.json new file mode 100644 index 000000000..fa27ba6bc --- /dev/null +++ b/.devcontainer/vscode/tasks.json @@ -0,0 +1,136 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "manage.py document_consumer", + "type": "shell", + "command": "pipenv run python manage.py document_consumer", + "group": "build", + "presentation": { + "echo": true, + "reveal": "always", + "focus": false, + "panel": "shared", + "showReuseMessage": false, + "clear": true, + "revealProblems": "onProblem" + }, + "options": { + "cwd": "${workspaceFolder}/src" + } + + }, + { + "label": "manage.py runserver", + "type": "shell", + "command": "pipenv run python manage.py runserver", + "group": "build", + "presentation": { + "echo": true, + "reveal": "always", + "focus": false, + "panel": "shared", + "showReuseMessage": false, + "clear": true, + "revealProblems": "onProblem" + }, + "options": { + "cwd": "${workspaceFolder}/src" + } + + }, + { + "label": "Maintenance: manage.py migrate", + "type": "shell", + "command": "pipenv run python manage.py migrate", + "group": "none", + "presentation": { + "echo": true, + "reveal": "always", + "focus": true, + "panel": "shared", + "showReuseMessage": false, + "clear": true, + "revealProblems": "onProblem" + }, + "options": { + "cwd": "${workspaceFolder}/src" + } + }, + { + "label": "Maintenance: manage.py createsuperuser", + "type": "shell", + "command": "pipenv run python manage.py createsuperuser", + "group": "none", + "presentation": { + "echo": true, + "reveal": "always", + "focus": true, + "panel": "shared", + "showReuseMessage": false, + "clear": true, + "revealProblems": "onProblem" + }, + "options": { + "cwd": "${workspaceFolder}/src" + } + }, + { + "label": "compile frontend", + "type": "shell", + "command": "npm ci && ./node_modules/.bin/ng build --configuration production", + "group": "none", + "presentation": { + "echo": true, + "reveal": "always", + "focus": true, + "panel": "shared", + "showReuseMessage": false, + "clear": true, + "revealProblems": "onProblem" + }, + "options": { + "cwd": "${workspaceFolder}/src-ui" + } + }, + { + "label": "Maintenance: recreate .venv", + "type": "shell", + "command": "rm -R -v .venv/* || pipenv install --dev", + "group": "none", + "presentation": { + "echo": true, + "reveal": "always", + "focus": true, + "panel": "shared", + "showReuseMessage": false, + "clear": true, + "revealProblems": "onProblem" + }, + "options": { + "cwd": "${workspaceFolder}" + } + }, + { + "label": "Celery Worker", + "type": "shell", + "command": "pipenv run celery --app paperless worker -l DEBUG", + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "echo": true, + "reveal": "always", + "focus": true, + "panel": "shared", + "showReuseMessage": false, + "clear": true, + "revealProblems": "onProblem" + }, + "options": { + "cwd": "${workspaceFolder}/src" + } + } + ] + } diff --git a/.gitignore b/.gitignore index f5bf2de6a..3351a924b 100644 --- a/.gitignore +++ b/.gitignore @@ -66,6 +66,8 @@ target/ .vscode /src-ui/.vscode /docs/.vscode +.vscode-server +*CommandMarker # Other stuff that doesn't belong .virtualenv From faab8a5560d3254846c9be8c949e4679b29eae67 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 15:14:32 -0700 Subject: [PATCH 14/39] Chore(deps): Bump the frontend-angular-dependencies group (#7126) Bumps the frontend-angular-dependencies group in /src-ui with 16 updates: | Package | From | To | | --- | --- | --- | | [@angular/cdk](https://github.com/angular/components) | `18.0.3` | `18.0.5` | | [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) | `18.0.3` | `18.0.5` | | [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) | `18.0.3` | `18.0.5` | | [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) | `18.0.3` | `18.0.5` | | [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms) | `18.0.3` | `18.0.5` | | [@angular/localize](https://github.com/angular/angular) | `18.0.3` | `18.0.5` | | [@angular/platform-browser](https://github.com/angular/angular/tree/HEAD/packages/platform-browser) | `18.0.3` | `18.0.5` | | [@angular/platform-browser-dynamic](https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic) | `18.0.3` | `18.0.5` | | [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router) | `18.0.3` | `18.0.5` | | [@ng-select/ng-select](https://github.com/ng-select/ng-select) | `13.2.0` | `13.3.0` | | [@angular-builders/jest](https://github.com/just-jeb/angular-builders/tree/HEAD/packages/jest) | `18.0.0-beta.3` | `18.0.0` | | [@angular-devkit/build-angular](https://github.com/angular/angular-cli) | `18.0.4` | `18.0.6` | | [@angular-devkit/core](https://github.com/angular/angular-cli) | `18.0.4` | `18.0.6` | | [@angular-devkit/schematics](https://github.com/angular/angular-cli) | `18.0.4` | `18.0.6` | | [@angular/cli](https://github.com/angular/angular-cli) | `18.0.4` | `18.0.6` | | [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli) | `18.0.3` | `18.0.5` | Updates `@angular/cdk` from 18.0.3 to 18.0.5 - [Release notes](https://github.com/angular/components/releases) - [Changelog](https://github.com/angular/components/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/components/compare/18.0.3...18.0.5) Updates `@angular/common` from 18.0.3 to 18.0.5 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/18.0.5/packages/common) Updates `@angular/compiler` from 18.0.3 to 18.0.5 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/18.0.5/packages/compiler) Updates `@angular/core` from 18.0.3 to 18.0.5 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/18.0.5/packages/core) Updates `@angular/forms` from 18.0.3 to 18.0.5 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/18.0.5/packages/forms) Updates `@angular/localize` from 18.0.3 to 18.0.5 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/compare/18.0.3...18.0.5) Updates `@angular/platform-browser` from 18.0.3 to 18.0.5 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/18.0.5/packages/platform-browser) Updates `@angular/platform-browser-dynamic` from 18.0.3 to 18.0.5 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/18.0.5/packages/platform-browser-dynamic) Updates `@angular/router` from 18.0.3 to 18.0.5 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/18.0.5/packages/router) Updates `@ng-select/ng-select` from 13.2.0 to 13.3.0 - [Release notes](https://github.com/ng-select/ng-select/releases) - [Changelog](https://github.com/ng-select/ng-select/blob/master/CHANGELOG.md) - [Commits](https://github.com/ng-select/ng-select/compare/v13.2.0...v13.3.0) Updates `@angular-builders/jest` from 18.0.0-beta.3 to 18.0.0 - [Release notes](https://github.com/just-jeb/angular-builders/releases) - [Changelog](https://github.com/just-jeb/angular-builders/blob/master/packages/jest/CHANGELOG.md) - [Commits](https://github.com/just-jeb/angular-builders/commits/@angular-builders/jest@18.0.0/packages/jest) Updates `@angular-devkit/build-angular` from 18.0.4 to 18.0.6 - [Release notes](https://github.com/angular/angular-cli/releases) - [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular-cli/compare/18.0.4...18.0.6) Updates `@angular-devkit/core` from 18.0.4 to 18.0.6 - [Release notes](https://github.com/angular/angular-cli/releases) - [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular-cli/compare/18.0.4...18.0.6) Updates `@angular-devkit/schematics` from 18.0.4 to 18.0.6 - [Release notes](https://github.com/angular/angular-cli/releases) - [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular-cli/compare/18.0.4...18.0.6) Updates `@angular/cli` from 18.0.4 to 18.0.6 - [Release notes](https://github.com/angular/angular-cli/releases) - [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular-cli/compare/18.0.4...18.0.6) Updates `@angular/compiler-cli` from 18.0.3 to 18.0.5 - [Release notes](https://github.com/angular/angular/releases) - [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md) - [Commits](https://github.com/angular/angular/commits/18.0.5/packages/compiler-cli) --- updated-dependencies: - dependency-name: "@angular/cdk" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/common" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/compiler" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/core" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/forms" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/localize" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/platform-browser" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/platform-browser-dynamic" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/router" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@ng-select/ng-select" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular-builders/jest" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular-devkit/build-angular" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular-devkit/core" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular-devkit/schematics" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/cli" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies - dependency-name: "@angular/compiler-cli" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: frontend-angular-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src-ui/package-lock.json | 1102 +++++++++++++++++++++++++++----------- src-ui/package.json | 30 +- 2 files changed, 793 insertions(+), 339 deletions(-) diff --git a/src-ui/package-lock.json b/src-ui/package-lock.json index 5859ee126..10c84d89f 100644 --- a/src-ui/package-lock.json +++ b/src-ui/package-lock.json @@ -9,17 +9,17 @@ "version": "0.0.0", "hasInstallScript": true, "dependencies": { - "@angular/cdk": "^18.0.3", - "@angular/common": "~18.0.3", - "@angular/compiler": "~18.0.3", - "@angular/core": "~18.0.3", - "@angular/forms": "~18.0.3", - "@angular/localize": "~18.0.3", - "@angular/platform-browser": "~18.0.3", - "@angular/platform-browser-dynamic": "~18.0.3", - "@angular/router": "~18.0.3", + "@angular/cdk": "^18.0.5", + "@angular/common": "~18.0.5", + "@angular/compiler": "~18.0.5", + "@angular/core": "~18.0.5", + "@angular/forms": "~18.0.5", + "@angular/localize": "~18.0.5", + "@angular/platform-browser": "~18.0.5", + "@angular/platform-browser-dynamic": "~18.0.5", + "@angular/router": "~18.0.5", "@ng-bootstrap/ng-bootstrap": "^17.0.0", - "@ng-select/ng-select": "^13.2.0", + "@ng-select/ng-select": "^13.3.0", "@ngneat/dirty-check-forms": "^3.0.3", "@popperjs/core": "^2.11.8", "bootstrap": "^5.3.3", @@ -37,16 +37,16 @@ "zone.js": "^0.14.4" }, "devDependencies": { - "@angular-builders/jest": "^18.0.0-beta.3", - "@angular-devkit/build-angular": "^18.0.4", - "@angular-devkit/core": "^18.0.4", - "@angular-devkit/schematics": "^18.0.4", + "@angular-builders/jest": "^18.0.0", + "@angular-devkit/build-angular": "^18.0.6", + "@angular-devkit/core": "^18.0.6", + "@angular-devkit/schematics": "^18.0.6", "@angular-eslint/builder": "18.0.1", "@angular-eslint/eslint-plugin": "18.0.1", "@angular-eslint/eslint-plugin-template": "18.0.1", "@angular-eslint/schematics": "18.0.1", "@angular-eslint/template-parser": "18.0.1", - "@angular/cli": "~18.0.4", + "@angular/cli": "~18.0.6", "@angular/compiler-cli": "~18.0.3", "@playwright/test": "^1.42.1", "@types/jest": "^29.5.12", @@ -88,9 +88,9 @@ } }, "node_modules/@angular-builders/common": { - "version": "2.0.0-beta.1", - "resolved": "https://registry.npmjs.org/@angular-builders/common/-/common-2.0.0-beta.1.tgz", - "integrity": "sha512-pP1CHmmYHrh+sd4I+7sQgre9HQiuf3nJE8mrIzgEbt6PjS8S2u+6vVqNDGYuBS+0sy3qeC8rvcfEnupsqOhZjg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@angular-builders/common/-/common-2.0.0.tgz", + "integrity": "sha512-O5YJc++DtJVJhqA/OomRKN2jGYzvU/YXtfrPAqcA9Is3Ob5jvV0L0JHSAjSw/KaLvk/FjBIqoRVcYdLp5LKddA==", "dev": true, "dependencies": { "@angular-devkit/core": "^18.0.0", @@ -102,12 +102,12 @@ } }, "node_modules/@angular-builders/jest": { - "version": "18.0.0-beta.3", - "resolved": "https://registry.npmjs.org/@angular-builders/jest/-/jest-18.0.0-beta.3.tgz", - "integrity": "sha512-J2WyUR7jMni5Ta0xBp26eqI89mjbKJPzA6yL4jtbTAnGvoytRahwHi2usq9al+JL1paD0bLRG2Vu8/xhHpou8A==", + "version": "18.0.0", + "resolved": "https://registry.npmjs.org/@angular-builders/jest/-/jest-18.0.0.tgz", + "integrity": "sha512-nPNWMlV1ryjir6CC8dY8f6yaNe0lM1VJwbvYM99HmJSeRo+1IwouQQGUjRM/2Dx4OMAmL4EAPh7Ud2nr3Gj/FA==", "dev": true, "dependencies": { - "@angular-builders/common": "2.0.0-beta.1", + "@angular-builders/common": "2.0.0", "@angular-devkit/architect": ">=0.1800.0 < 0.1900.0", "@angular-devkit/core": "^18.0.0", "jest-preset-angular": "14.1.0", @@ -124,13 +124,41 @@ "jest": ">=29" } }, - "node_modules/@angular-devkit/architect": { - "version": "0.1800.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1800.4.tgz", - "integrity": "sha512-82TKhYnSO8aGIBo5TxPtyUQnZFcbV+qB2bIIYOAKsJgxAVxLeFD6QA6gTmHOZPXw5pBEPUO/+PUwq+Uk5xesgw==", + "node_modules/@angular-builders/jest/node_modules/jest-preset-angular": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-14.1.0.tgz", + "integrity": "sha512-UJwPtpsAMl30UtBjHW0Ai0hhoKsNURC1dXH5tSYjumUsWR7iDke+oBEykz7uXv4rN+PWgeNIqkxo4KHQjOITlw==", "dev": true, "dependencies": { - "@angular-devkit/core": "18.0.4", + "bs-logger": "^0.2.6", + "esbuild-wasm": ">=0.15.13", + "jest-environment-jsdom": "^29.0.0", + "jest-util": "^29.0.0", + "pretty-format": "^29.0.0", + "ts-jest": "^29.0.0" + }, + "engines": { + "node": "^14.15.0 || >=16.10.0" + }, + "optionalDependencies": { + "esbuild": ">=0.15.13" + }, + "peerDependencies": { + "@angular-devkit/build-angular": ">=15.0.0 <19.0.0", + "@angular/compiler-cli": ">=15.0.0 <19.0.0", + "@angular/core": ">=15.0.0 <19.0.0", + "@angular/platform-browser-dynamic": ">=15.0.0 <19.0.0", + "jest": "^29.0.0", + "typescript": ">=4.8" + } + }, + "node_modules/@angular-devkit/architect": { + "version": "0.1800.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1800.6.tgz", + "integrity": "sha512-VJ08XM9XR8d3ldXEMIeaiamBSvQqX+ucIKw73zubP37yFVAuvXriDOFskcouVUT0RxWXIZVcNxrgp2t3FE4F6w==", + "dev": true, + "dependencies": { + "@angular-devkit/core": "18.0.6", "rxjs": "7.8.1" }, "engines": { @@ -140,16 +168,16 @@ } }, "node_modules/@angular-devkit/build-angular": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-18.0.4.tgz", - "integrity": "sha512-lFu1NDEUPIUxY+CmZJ3JspqVZDesrvdae5RbqQXCl87RfSy+ZDIa7rOtQxyBQtt2BuQIB9pWQSzCMii5kTHd6w==", + "version": "18.0.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-18.0.6.tgz", + "integrity": "sha512-87ynzPHHYr+iL3GsBgJWVlChMuubQgiXYWf2JLXRLNGduSOdoa18vxT1jU11b6C9G+avDSnMbtq+sk841pT1kg==", "dev": true, "dependencies": { "@ampproject/remapping": "2.3.0", - "@angular-devkit/architect": "0.1800.4", - "@angular-devkit/build-webpack": "0.1800.4", - "@angular-devkit/core": "18.0.4", - "@angular/build": "18.0.4", + "@angular-devkit/architect": "0.1800.6", + "@angular-devkit/build-webpack": "0.1800.6", + "@angular-devkit/core": "18.0.6", + "@angular/build": "18.0.6", "@babel/core": "7.24.5", "@babel/generator": "7.24.5", "@babel/helper-annotate-as-pure": "7.22.5", @@ -160,12 +188,11 @@ "@babel/preset-env": "7.24.5", "@babel/runtime": "7.24.5", "@discoveryjs/json-ext": "0.5.7", - "@ngtools/webpack": "18.0.4", + "@ngtools/webpack": "18.0.6", "@vitejs/plugin-basic-ssl": "1.1.0", "ansi-colors": "4.1.3", "autoprefixer": "10.4.19", "babel-loader": "9.1.3", - "babel-plugin-istanbul": "6.1.1", "browserslist": "^4.21.5", "copy-webpack-plugin": "11.0.0", "critters": "0.0.22", @@ -175,6 +202,7 @@ "http-proxy-middleware": "3.0.0", "https-proxy-agent": "7.0.4", "inquirer": "9.2.22", + "istanbul-lib-instrument": "6.0.2", "jsonc-parser": "3.2.1", "karma-source-map-support": "1.4.0", "less": "4.2.0", @@ -269,74 +297,6 @@ } } }, - "node_modules/@angular-devkit/build-angular/node_modules/@angular/build": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/build/-/build-18.0.4.tgz", - "integrity": "sha512-70HQQnbCOXFT5F3ROyWNNfS9A63Fzts5ANJKJY1MJLrn+dgNEG7jdIWjTtvohL3RZz97rlzSq3qRZnfxqf1lsQ==", - "dev": true, - "dependencies": { - "@ampproject/remapping": "2.3.0", - "@angular-devkit/architect": "0.1800.4", - "@babel/core": "7.24.5", - "@babel/helper-annotate-as-pure": "7.22.5", - "@babel/helper-split-export-declaration": "7.24.5", - "@vitejs/plugin-basic-ssl": "1.1.0", - "ansi-colors": "4.1.3", - "browserslist": "^4.23.0", - "critters": "0.0.22", - "esbuild": "0.21.3", - "fast-glob": "3.3.2", - "https-proxy-agent": "7.0.4", - "inquirer": "9.2.22", - "lmdb": "3.0.8", - "magic-string": "0.30.10", - "mrmime": "2.0.0", - "ora": "5.4.1", - "parse5-html-rewriting-stream": "7.0.0", - "picomatch": "4.0.2", - "piscina": "4.5.0", - "sass": "1.77.2", - "semver": "7.6.2", - "undici": "6.18.0", - "vite": "5.2.11", - "watchpack": "2.4.1" - }, - "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - }, - "peerDependencies": { - "@angular/compiler-cli": "^18.0.0", - "@angular/localize": "^18.0.0", - "@angular/platform-server": "^18.0.0", - "@angular/service-worker": "^18.0.0", - "less": "^4.2.0", - "postcss": "^8.4.0", - "tailwindcss": "^2.0.0 || ^3.0.0", - "typescript": ">=5.4 <5.5" - }, - "peerDependenciesMeta": { - "@angular/localize": { - "optional": true - }, - "@angular/platform-server": { - "optional": true - }, - "@angular/service-worker": { - "optional": true - }, - "less": { - "optional": true - }, - "postcss": { - "optional": true - }, - "tailwindcss": { - "optional": true - } - } - }, "node_modules/@angular-devkit/build-angular/node_modules/@babel/core": { "version": "7.24.5", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", @@ -744,22 +704,6 @@ "node": ">=12" } }, - "node_modules/@angular-devkit/build-angular/node_modules/@ngtools/webpack": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-18.0.4.tgz", - "integrity": "sha512-eWQkAuHEnLme01Ey4Z0FoG6upJHYhnJfsCTBnyEB2LTfdyBUk+PC0gwPXInK8oltWjFfiMnCwxrUQvQsvPW7Hg==", - "dev": true, - "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" - }, - "peerDependencies": { - "@angular/compiler-cli": "^18.0.0", - "typescript": ">=5.4 <5.5", - "webpack": "^5.54.0" - } - }, "node_modules/@angular-devkit/build-angular/node_modules/convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", @@ -772,6 +716,7 @@ "integrity": "sha512-Kgq0/ZsAPzKrbOjCQcjoSmPoWhlcVnGAUo7jvaLHoxW1Drto0KGkR1xBNg2Cp43b9ImvxmPEJZ9xkfcnqPsfBw==", "dev": true, "hasInstallScript": true, + "optional": true, "bin": { "esbuild": "bin/esbuild" }, @@ -804,34 +749,29 @@ "@esbuild/win32-x64": "0.21.3" } }, - "node_modules/@angular-devkit/build-angular/node_modules/magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", + "node_modules/@angular-devkit/build-angular/node_modules/istanbul-lib-instrument": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.2.tgz", + "integrity": "sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==", "dev": true, "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" - } - }, - "node_modules/@angular-devkit/build-angular/node_modules/picomatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", - "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", - "dev": true, - "engines": { - "node": ">=12" + "@babel/core": "^7.23.9", + "@babel/parser": "^7.23.9", + "@istanbuljs/schema": "^0.1.3", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "engines": { + "node": ">=10" } }, "node_modules/@angular-devkit/build-webpack": { - "version": "0.1800.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1800.4.tgz", - "integrity": "sha512-EtWyWH3Hb7Rh8u0Jb4cWJKRxlqiUo4qhHKjU+62E8XplWlajbuld3ltL50a3t8lkZQYYgl7nPt53E5kM/zFVrw==", + "version": "0.1800.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1800.6.tgz", + "integrity": "sha512-hIQ4FtcxsNVEHlKZVFIfFiFKNNxEdacS/Nsy/YJ0AU6EOkUd6AOVsc539GniJQOk4RBNKS9wOlJBtF/2g1sjhQ==", "dev": true, "dependencies": { - "@angular-devkit/architect": "0.1800.4", + "@angular-devkit/architect": "0.1800.6", "rxjs": "7.8.1" }, "engines": { @@ -845,9 +785,9 @@ } }, "node_modules/@angular-devkit/core": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-18.0.4.tgz", - "integrity": "sha512-8vYvJ5FF2NjFUia00hv8KWakOjOZ+09PbnNqd+lntJBekIg1lHDOF/vNMlVHtU5LiE1aNi9P/69/VXTckPfU9g==", + "version": "18.0.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-18.0.6.tgz", + "integrity": "sha512-07U0S2fpUBjkg4k6uAEQQHSFfearyHGrONlgkxAlk7HWM5jfHp/8D2+ui1OFZgXpSAHF2C5gULbze/2o9ZNgag==", "dev": true, "dependencies": { "ajv": "8.13.0", @@ -871,22 +811,6 @@ } } }, - "node_modules/@angular-devkit/core/node_modules/ajv": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", - "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, "node_modules/@angular-devkit/core/node_modules/ajv-formats": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz", @@ -904,25 +828,13 @@ } } }, - "node_modules/@angular-devkit/core/node_modules/picomatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", - "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, "node_modules/@angular-devkit/schematics": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-18.0.4.tgz", - "integrity": "sha512-hCHmuu/Z1teOQPx1AMJa/gcK6depk+XgU5dIpEvflC+ApW3hglNe2QKaqajDZ+34s+PKAVWa86M8IOV7o/mHuA==", + "version": "18.0.6", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-18.0.6.tgz", + "integrity": "sha512-lzjPp8qWV4p3reyKZ2QRF7rQYc17WMCR61vKldQJBuJrS30yx87x22ASn4BCAo7kKKRv8gXJmoXjCPDFlcfRsw==", "dev": true, "dependencies": { - "@angular-devkit/core": "18.0.4", + "@angular-devkit/core": "18.0.6", "jsonc-parser": "3.2.1", "magic-string": "0.30.10", "ora": "5.4.1", @@ -934,15 +846,6 @@ "yarn": ">= 1.13.0" } }, - "node_modules/@angular-devkit/schematics/node_modules/magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", - "dev": true, - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" - } - }, "node_modules/@angular-eslint/builder": { "version": "18.0.1", "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-18.0.1.tgz", @@ -1058,10 +961,529 @@ "typescript": "*" } }, + "node_modules/@angular/build": { + "version": "18.0.6", + "resolved": "https://registry.npmjs.org/@angular/build/-/build-18.0.6.tgz", + "integrity": "sha512-W6S1sx00D4pd7qDIyzPMNFmw8d783+/Aknl+2cUrYlJqw0Oan1Bt6mXVg48Jwxr0hVsovoNZXSRFXXI5hvW8ZA==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "2.3.0", + "@angular-devkit/architect": "0.1800.6", + "@babel/core": "7.24.5", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-split-export-declaration": "7.24.5", + "@vitejs/plugin-basic-ssl": "1.1.0", + "ansi-colors": "4.1.3", + "browserslist": "^4.23.0", + "critters": "0.0.22", + "esbuild": "0.21.3", + "fast-glob": "3.3.2", + "https-proxy-agent": "7.0.4", + "inquirer": "9.2.22", + "lmdb": "3.0.8", + "magic-string": "0.30.10", + "mrmime": "2.0.0", + "ora": "5.4.1", + "parse5-html-rewriting-stream": "7.0.0", + "picomatch": "4.0.2", + "piscina": "4.5.0", + "sass": "1.77.2", + "semver": "7.6.2", + "undici": "6.18.0", + "vite": "5.2.11", + "watchpack": "2.4.1" + }, + "engines": { + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "@angular/compiler-cli": "^18.0.0", + "@angular/localize": "^18.0.0", + "@angular/platform-server": "^18.0.0", + "@angular/service-worker": "^18.0.0", + "less": "^4.2.0", + "postcss": "^8.4.0", + "tailwindcss": "^2.0.0 || ^3.0.0", + "typescript": ">=5.4 <5.5" + }, + "peerDependenciesMeta": { + "@angular/localize": { + "optional": true + }, + "@angular/platform-server": { + "optional": true + }, + "@angular/service-worker": { + "optional": true + }, + "less": { + "optional": true + }, + "postcss": { + "optional": true + }, + "tailwindcss": { + "optional": true + } + } + }, + "node_modules/@angular/build/node_modules/@babel/core": { + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", + "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.2", + "@babel/generator": "^7.24.5", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.24.5", + "@babel/helpers": "^7.24.5", + "@babel/parser": "^7.24.5", + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.5", + "@babel/types": "^7.24.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@angular/build/node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/aix-ppc64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.3.tgz", + "integrity": "sha512-yTgnwQpFVYfvvo4SvRFB0SwrW8YjOxEoT7wfMT7Ol5v7v5LDNvSGo67aExmxOb87nQNeWPVvaGBNfQ7BXcrZ9w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/android-arm": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.3.tgz", + "integrity": "sha512-bviJOLMgurLJtF1/mAoJLxDZDL6oU5/ztMHnJQRejbJrSc9FFu0QoUoFhvi6qSKJEw9y5oGyvr9fuDtzJ30rNQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/android-arm64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.3.tgz", + "integrity": "sha512-c+ty9necz3zB1Y+d/N+mC6KVVkGUUOcm4ZmT5i/Fk5arOaY3i6CA3P5wo/7+XzV8cb4GrI/Zjp8NuOQ9Lfsosw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/android-x64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.3.tgz", + "integrity": "sha512-JReHfYCRK3FVX4Ra+y5EBH1b9e16TV2OxrPAvzMsGeES0X2Ndm9ImQRI4Ket757vhc5XBOuGperw63upesclRw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.3.tgz", + "integrity": "sha512-U3fuQ0xNiAkXOmQ6w5dKpEvXQRSpHOnbw7gEfHCRXPeTKW9sBzVck6C5Yneb8LfJm0l6le4NQfkNPnWMSlTFUQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/darwin-x64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.3.tgz", + "integrity": "sha512-3m1CEB7F07s19wmaMNI2KANLcnaqryJxO1fXHUV5j1rWn+wMxdUYoPyO2TnAbfRZdi7ADRwJClmOwgT13qlP3Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.3.tgz", + "integrity": "sha512-fsNAAl5pU6wmKHq91cHWQT0Fz0vtyE1JauMzKotrwqIKAswwP5cpHUCxZNSTuA/JlqtScq20/5KZ+TxQdovU/g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/freebsd-x64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.3.tgz", + "integrity": "sha512-tci+UJ4zP5EGF4rp8XlZIdq1q1a/1h9XuronfxTMCNBslpCtmk97Q/5qqy1Mu4zIc0yswN/yP/BLX+NTUC1bXA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/linux-arm": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.3.tgz", + "integrity": "sha512-f6kz2QpSuyHHg01cDawj0vkyMwuIvN62UAguQfnNVzbge2uWLhA7TCXOn83DT0ZvyJmBI943MItgTovUob36SQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/linux-arm64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.3.tgz", + "integrity": "sha512-vvG6R5g5ieB4eCJBQevyDMb31LMHthLpXTc2IGkFnPWS/GzIFDnaYFp558O+XybTmYrVjxnryru7QRleJvmZ6Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/linux-ia32": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.3.tgz", + "integrity": "sha512-HjCWhH7K96Na+66TacDLJmOI9R8iDWDDiqe17C7znGvvE4sW1ECt9ly0AJ3dJH62jHyVqW9xpxZEU1jKdt+29A==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/linux-loong64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.3.tgz", + "integrity": "sha512-BGpimEccmHBZRcAhdlRIxMp7x9PyJxUtj7apL2IuoG9VxvU/l/v1z015nFs7Si7tXUwEsvjc1rOJdZCn4QTU+Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/linux-mips64el": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.3.tgz", + "integrity": "sha512-5rMOWkp7FQGtAH3QJddP4w3s47iT20hwftqdm7b+loe95o8JU8ro3qZbhgMRy0VuFU0DizymF1pBKkn3YHWtsw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/linux-ppc64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.3.tgz", + "integrity": "sha512-h0zj1ldel89V5sjPLo5H1SyMzp4VrgN1tPkN29TmjvO1/r0MuMRwJxL8QY05SmfsZRs6TF0c/IDH3u7XYYmbAg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/linux-riscv64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.3.tgz", + "integrity": "sha512-dkAKcTsTJ+CRX6bnO17qDJbLoW37npd5gSNtSzjYQr0svghLJYGYB0NF1SNcU1vDcjXLYS5pO4qOW4YbFama4A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/linux-s390x": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.3.tgz", + "integrity": "sha512-vnD1YUkovEdnZWEuMmy2X2JmzsHQqPpZElXx6dxENcIwTu+Cu5ERax6+Ke1QsE814Zf3c6rxCfwQdCTQ7tPuXA==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/linux-x64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.3.tgz", + "integrity": "sha512-IOXOIm9WaK7plL2gMhsWJd+l2bfrhfilv0uPTptoRoSb2p09RghhQQp9YY6ZJhk/kqmeRt6siRdMSLLwzuT0KQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/netbsd-x64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.3.tgz", + "integrity": "sha512-uTgCwsvQ5+vCQnqM//EfDSuomo2LhdWhFPS8VL8xKf+PKTCrcT/2kPPoWMTs22aB63MLdGMJiE3f1PHvCDmUOw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/openbsd-x64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.3.tgz", + "integrity": "sha512-vNAkR17Ub2MgEud2Wag/OE4HTSI6zlb291UYzHez/psiKarp0J8PKGDnAhMBcHFoOHMXHfExzmjMojJNbAStrQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/sunos-x64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.3.tgz", + "integrity": "sha512-W8H9jlGiSBomkgmouaRoTXo49j4w4Kfbl6I1bIdO/vT0+0u4f20ko3ELzV3hPI6XV6JNBVX+8BC+ajHkvffIJA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/win32-arm64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.3.tgz", + "integrity": "sha512-EjEomwyLSCg8Ag3LDILIqYCZAq/y3diJ04PnqGRgq8/4O3VNlXyMd54j/saShaN4h5o5mivOjAzmU6C3X4v0xw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/win32-ia32": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.3.tgz", + "integrity": "sha512-WGiE/GgbsEwR33++5rzjiYsKyHywE8QSZPF7Rfx9EBfK3Qn3xyR6IjyCr5Uk38Kg8fG4/2phN7sXp4NPWd3fcw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/@esbuild/win32-x64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.3.tgz", + "integrity": "sha512-xRxC0jaJWDLYvcUvjQmHCJSfMrgmUuvsoXgDeU/wTorQ1ngDdUBuFtgY3W1Pc5sprGAvZBtWdJX7RPg/iZZUqA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@angular/build/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/@angular/build/node_modules/esbuild": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.3.tgz", + "integrity": "sha512-Kgq0/ZsAPzKrbOjCQcjoSmPoWhlcVnGAUo7jvaLHoxW1Drto0KGkR1xBNg2Cp43b9ImvxmPEJZ9xkfcnqPsfBw==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.3", + "@esbuild/android-arm": "0.21.3", + "@esbuild/android-arm64": "0.21.3", + "@esbuild/android-x64": "0.21.3", + "@esbuild/darwin-arm64": "0.21.3", + "@esbuild/darwin-x64": "0.21.3", + "@esbuild/freebsd-arm64": "0.21.3", + "@esbuild/freebsd-x64": "0.21.3", + "@esbuild/linux-arm": "0.21.3", + "@esbuild/linux-arm64": "0.21.3", + "@esbuild/linux-ia32": "0.21.3", + "@esbuild/linux-loong64": "0.21.3", + "@esbuild/linux-mips64el": "0.21.3", + "@esbuild/linux-ppc64": "0.21.3", + "@esbuild/linux-riscv64": "0.21.3", + "@esbuild/linux-s390x": "0.21.3", + "@esbuild/linux-x64": "0.21.3", + "@esbuild/netbsd-x64": "0.21.3", + "@esbuild/openbsd-x64": "0.21.3", + "@esbuild/sunos-x64": "0.21.3", + "@esbuild/win32-arm64": "0.21.3", + "@esbuild/win32-ia32": "0.21.3", + "@esbuild/win32-x64": "0.21.3" + } + }, "node_modules/@angular/cdk": { - "version": "18.0.3", - "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-18.0.3.tgz", - "integrity": "sha512-F6kXAoIWUbvhvbSGnMxrKJZsI7rhGKDXVFFf9m+ZQAbqboSyDbbszux7Em4CEh27LaXYNFltUcKdCQ3hdp7Kig==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-18.0.5.tgz", + "integrity": "sha512-Yf94Udxip8xjVIJlxwh80h6fUpX5JFcBv3FCFer7DU/YzWdoTL+BTIYF8og+NjlDRt1nSbTxdyU2LVI0rTVkpg==", "dependencies": { "tslib": "^2.3.0" }, @@ -1075,15 +1497,15 @@ } }, "node_modules/@angular/cli": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-18.0.4.tgz", - "integrity": "sha512-i7DLVIc4HN0CFZZKbEeVeQSADRG1Dt2CwXh/wTUzglRLu/tE7Q+WMrqJ2+lGTT2edZp2KKysM4Gxp+ATAzP8AQ==", + "version": "18.0.6", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-18.0.6.tgz", + "integrity": "sha512-T0ii60zVqBzxtC4jusKkR5YOdubP5+n9SPd8gm9Dat4jUeePc5O5+6qmjpFXZlibxLNSVIm89hLBb7/rMJIkIg==", "dev": true, "dependencies": { - "@angular-devkit/architect": "0.1800.4", - "@angular-devkit/core": "18.0.4", - "@angular-devkit/schematics": "18.0.4", - "@schematics/angular": "18.0.4", + "@angular-devkit/architect": "0.1800.6", + "@angular-devkit/core": "18.0.6", + "@angular-devkit/schematics": "18.0.6", + "@schematics/angular": "18.0.6", "@yarnpkg/lockfile": "1.1.0", "ansi-colors": "4.1.3", "ini": "4.1.2", @@ -1108,9 +1530,9 @@ } }, "node_modules/@angular/common": { - "version": "18.0.3", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-18.0.3.tgz", - "integrity": "sha512-lmT9QbWHduqzpsB0osQFHeSwvQB1iUeNwTVUyMtcs6i46l4qOPtAt2/9DvHUWEUp01EBDxyi385ZI3vD+FHH/w==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-18.0.5.tgz", + "integrity": "sha512-yItVQSu+Rx8gthWJDTOHwbzItY8/lqmmmYA1RMex0u3GkJoX3/3TZSGXbbBXl8GH8vmQOfp9yj3C02JmlwldRg==", "dependencies": { "tslib": "^2.3.0" }, @@ -1118,14 +1540,14 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/core": "18.0.3", + "@angular/core": "18.0.5", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/compiler": { - "version": "18.0.3", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-18.0.3.tgz", - "integrity": "sha512-wrXxgBsZX4yTrj/oZ8PDGmvhqj9S2TZfcuivaUitprNC2uBWTVb1UcOS45Qw9YlLB0sYa2AmBudICDqYpb8lfw==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-18.0.5.tgz", + "integrity": "sha512-U1/qjNDjxMukXwQrJZjmr87KVxQmHbD7fxVlg0+qafHLe+YDuCtyOfQSGEZrWhwktxvAYZbl3FK+m3Hnk/D3Nw==", "dependencies": { "tslib": "^2.3.0" }, @@ -1133,7 +1555,7 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/core": "18.0.3" + "@angular/core": "18.0.5" }, "peerDependenciesMeta": { "@angular/core": { @@ -1142,9 +1564,9 @@ } }, "node_modules/@angular/compiler-cli": { - "version": "18.0.3", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-18.0.3.tgz", - "integrity": "sha512-mxwQEeP94YBM6C9A2YfkV7ug1sHgh0fU/TSBpQcm5ni4cZiVPu6q/+Ft7hyFTKe2p3tKQme33+xVjsWhtOCx0A==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-18.0.5.tgz", + "integrity": "sha512-aFKDDTsRmc691EkNRj9OkrKNXDOaHdXB42MyUrj3WwJIJFMnSY/UDf6h+CRVF0U+CITszFyWhmeHQRA/3mJWNg==", "dependencies": { "@babel/core": "7.24.7", "@jridgewell/sourcemap-codec": "^1.4.14", @@ -1164,14 +1586,14 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/compiler": "18.0.3", + "@angular/compiler": "18.0.5", "typescript": ">=5.4 <5.5" } }, "node_modules/@angular/core": { - "version": "18.0.3", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-18.0.3.tgz", - "integrity": "sha512-376hijhEqNpeA+qKncpVTIaZXRdBT6RctEBnFhJ2l57aHPH5S3oaSBQu1k3TEi07FlKOD4XF1+NzX9dvdup1eg==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-18.0.5.tgz", + "integrity": "sha512-0UuL+aMMWGYksz09YBsiHq1li7GmL8obB3IC3T5MwDqnn7FGRUBfBUOZEkM6B+pwgg+RAtNdJkbCfbh1z74bFQ==", "dependencies": { "tslib": "^2.3.0" }, @@ -1184,9 +1606,9 @@ } }, "node_modules/@angular/forms": { - "version": "18.0.3", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-18.0.3.tgz", - "integrity": "sha512-+CjDiooUi5FkTP3YQmdO8YRbjZicgLGZonvCdz3mSucLrTY6w3oBocNs6+Kc7fLuO1NKSkFmAfYApBwK3fKBMg==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-18.0.5.tgz", + "integrity": "sha512-nO7bN+nO2/czgKSvPx6ewqpfb8xXOyns06uovWpAXSH4jYoiZ6CHTHhOKrOL/3SRkhUV9u+EUXTTAOSBkS+OBA==", "dependencies": { "tslib": "^2.3.0" }, @@ -1194,16 +1616,16 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/common": "18.0.3", - "@angular/core": "18.0.3", - "@angular/platform-browser": "18.0.3", + "@angular/common": "18.0.5", + "@angular/core": "18.0.5", + "@angular/platform-browser": "18.0.5", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/localize": { - "version": "18.0.3", - "resolved": "https://registry.npmjs.org/@angular/localize/-/localize-18.0.3.tgz", - "integrity": "sha512-IrqLmuJncctJsgj5Z3uO68vuQBxdLdEB2B9p0SfX/oiWg2wYScKirePS5chsj3ZciwVWH5wc06cEzlZ+bSgNSA==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@angular/localize/-/localize-18.0.5.tgz", + "integrity": "sha512-QlMu5sXodqyvCuA158JXsrYkyjN8AtnrZhDZDImQvkFclA5Bkc7+7lcCWoRc9g8bzAFbLuwJAzYGqpPTWPnpxQ==", "dependencies": { "@babel/core": "7.24.7", "@types/babel__core": "7.20.5", @@ -1219,14 +1641,14 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/compiler": "18.0.3", - "@angular/compiler-cli": "18.0.3" + "@angular/compiler": "18.0.5", + "@angular/compiler-cli": "18.0.5" } }, "node_modules/@angular/platform-browser": { - "version": "18.0.3", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-18.0.3.tgz", - "integrity": "sha512-1fl/oJOca8BLxLxN0EjwxQZ3xzn3PCCN96ytM54bjdEMiELz+0AcQe5GNKcVjXlwMkibRLl1BP5GIdvnQYqJRA==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-18.0.5.tgz", + "integrity": "sha512-hBKaGz7dhsjNhD0aWB8G2/YZQ/MaBhzFIQSAZMPs2ccAqH1Jx772/Y11k57seA3VaPpnL8WZ1apOSJgALUJ//w==", "dependencies": { "tslib": "^2.3.0" }, @@ -1234,9 +1656,9 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/animations": "18.0.3", - "@angular/common": "18.0.3", - "@angular/core": "18.0.3" + "@angular/animations": "18.0.5", + "@angular/common": "18.0.5", + "@angular/core": "18.0.5" }, "peerDependenciesMeta": { "@angular/animations": { @@ -1245,9 +1667,9 @@ } }, "node_modules/@angular/platform-browser-dynamic": { - "version": "18.0.3", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-18.0.3.tgz", - "integrity": "sha512-+kHMn7P552YKk1gkVQNO1QXzHVaIeFiVa1rV1MNvX4DvumKT3puknx1SzcmtxZTX+9ee22OuPuyLNSAKREDAQQ==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-18.0.5.tgz", + "integrity": "sha512-i8CXojKcjsKzD2JR2clIisqavlHCW1jw+F2hJVrf/JR9iu6kVpGpZOqb3yYHoQCsPa7hUzQnn0ewYwBvlWsDmw==", "dependencies": { "tslib": "^2.3.0" }, @@ -1255,16 +1677,16 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/common": "18.0.3", - "@angular/compiler": "18.0.3", - "@angular/core": "18.0.3", - "@angular/platform-browser": "18.0.3" + "@angular/common": "18.0.5", + "@angular/compiler": "18.0.5", + "@angular/core": "18.0.5", + "@angular/platform-browser": "18.0.5" } }, "node_modules/@angular/router": { - "version": "18.0.3", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-18.0.3.tgz", - "integrity": "sha512-/cglLev0USxUNMc4M+EBFGrqw1EpKq87LUJL3+0Ztr012sVSeOU38ad41fs6pPcMBePBDZIw7KmSXypvUJJFMA==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-18.0.5.tgz", + "integrity": "sha512-GmdzD5FZYPKCGP6mV3AZraAU6czfGcjjCym6mIsdJr3DyMwnQSwaaHAu8qlQbPDVfsP+gKVSPh1JxI1lzzarLA==", "dependencies": { "tslib": "^2.3.0" }, @@ -1272,9 +1694,9 @@ "node": "^18.19.1 || ^20.11.1 || >=22.0.0" }, "peerDependencies": { - "@angular/common": "18.0.3", - "@angular/core": "18.0.3", - "@angular/platform-browser": "18.0.3", + "@angular/common": "18.0.5", + "@angular/core": "18.0.5", + "@angular/platform-browser": "18.0.5", "rxjs": "^6.5.3 || ^7.4.0" } }, @@ -4647,9 +5069,9 @@ } }, "node_modules/@jsonjoy.com/util": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.1.3.tgz", - "integrity": "sha512-g//kkF4kOwUjemValCtOc/xiYzmwMRmWq3Bn+YnzOzuZLHq2PpMOxxIayN3cKbo7Ko2Np65t6D9H81IvXbXhqg==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.2.0.tgz", + "integrity": "sha512-4B8B+3vFsY4eo33DMKyJPlQ3sBMpPFUZK2dr3O3rXrOGKKbYG44J0XSFkDo1VOQiri5HFEhIeVvItjR2xcazmg==", "dev": true, "engines": { "node": ">=10.0" @@ -4943,9 +5365,9 @@ } }, "node_modules/@ng-select/ng-select": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/@ng-select/ng-select/-/ng-select-13.2.0.tgz", - "integrity": "sha512-Oh4UaUvYJa6D+G4nEcdzqOgRP2TKqwwRpQBVVyLMUgzebSY3Cw9aJXqudqJ/EYiK3Bz+4uKJXPZIrYgNqqx02g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/@ng-select/ng-select/-/ng-select-13.3.0.tgz", + "integrity": "sha512-MT5q5PemshfVP4OpjdLJY27G0ZRVhi8WHn0ZSVrRGk1vztmi5VIXSefGoCpsZkay1IM4Wzlm8PmHbgWqnJKqCA==", "dependencies": { "tslib": "^2.3.1" }, @@ -4974,6 +5396,22 @@ "rxjs": ">=6.0.0" } }, + "node_modules/@ngtools/webpack": { + "version": "18.0.6", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-18.0.6.tgz", + "integrity": "sha512-chSRbPpnqTThURQqUvWAgEGkLcn5TQnUQPD1HBf4WcoO/OkaK4Q1Sa8FrEllkC6/Dlyj7myi8rskQz+V8K7GSg==", + "dev": true, + "engines": { + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "@angular/compiler-cli": "^18.0.0", + "typescript": ">=5.4 <5.5", + "webpack": "^5.54.0" + } + }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -5761,13 +6199,13 @@ ] }, "node_modules/@schematics/angular": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-18.0.4.tgz", - "integrity": "sha512-fN4whuym9ZmcQFdTfwLZr4j+NcZ4LzbdLk8XYrYdxt1z8c9ujs5LqJYn0LYc3UWiYl7z2RVc9NOxzNrkiXdwlw==", + "version": "18.0.6", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-18.0.6.tgz", + "integrity": "sha512-SZ73nNhCengIOy3GCUbLL++GdpaQ5T9bh05OAdQJuUNtwz1ot8QoQjkcbumKIfTicwMiLxy+OR4sZN1VcUVYpQ==", "dev": true, "dependencies": { - "@angular-devkit/core": "18.0.4", - "@angular-devkit/schematics": "18.0.4", + "@angular-devkit/core": "18.0.6", + "@angular-devkit/schematics": "18.0.6", "jsonc-parser": "3.2.1" }, "engines": { @@ -6088,9 +6526,9 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.19.3", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.3.tgz", - "integrity": "sha512-KOzM7MhcBFlmnlr/fzISFF5vGWVSvN6fTd4T+ExOt08bA/dA5kpSzY52nMsI1KDFmUREpJelPYyuslLRSjjgCg==", + "version": "4.19.5", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.5.tgz", + "integrity": "sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==", "dev": true, "dependencies": { "@types/node": "*", @@ -6976,15 +7414,15 @@ } }, "node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", + "fast-deep-equal": "^3.1.3", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "uri-js": "^4.4.1" }, "funding": { "type": "github", @@ -12471,9 +12909,9 @@ } }, "node_modules/jest-preset-angular": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-14.1.0.tgz", - "integrity": "sha512-UJwPtpsAMl30UtBjHW0Ai0hhoKsNURC1dXH5tSYjumUsWR7iDke+oBEykz7uXv4rN+PWgeNIqkxo4KHQjOITlw==", + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/jest-preset-angular/-/jest-preset-angular-14.1.1.tgz", + "integrity": "sha512-mWW2WlndHetTp4PQov05v7JE6HZQB5uTzGd+oW2RPH1OOTCLUKI8mSIU4DXCBJ4LDg5gIMMfqHsxT/Qmpu2dQQ==", "dev": true, "dependencies": { "bs-logger": "^0.2.6", @@ -13533,9 +13971,9 @@ } }, "node_modules/launch-editor": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", - "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==", + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.8.0.tgz", + "integrity": "sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==", "dev": true, "dependencies": { "picocolors": "^1.0.0", @@ -13701,12 +14139,6 @@ "@lmdb/lmdb-win32-x64": "3.0.8" } }, - "node_modules/lmdb/node_modules/node-addon-api": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", - "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==", - "dev": true - }, "node_modules/loader-runner": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", @@ -13873,6 +14305,15 @@ "yallist": "^3.0.2" } }, + "node_modules/magic-string": { + "version": "0.30.10", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", + "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15" + } + }, "node_modules/make-dir": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", @@ -13941,14 +14382,14 @@ } }, "node_modules/memfs": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.9.2.tgz", - "integrity": "sha512-f16coDZlTG1jskq3mxarwB+fGRrd0uXWt+o1WIhRfOwbXQZqUDsTVxQBFK9JjRQHblg8eAG2JSbprDXKjc7ijQ==", + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.9.3.tgz", + "integrity": "sha512-bsYSSnirtYTWi1+OPMFb0M048evMKyUYe0EbtuGQgq6BVQM1g1W8/KIUJCCvjgI/El0j6Q4WsmMiBwLUBSw8LA==", "dev": true, "dependencies": { "@jsonjoy.com/json-pack": "^1.0.3", "@jsonjoy.com/util": "^1.1.2", - "sonic-forest": "^1.0.0", + "tree-dump": "^1.0.1", "tslib": "^2.0.0" }, "engines": { @@ -14521,6 +14962,20 @@ "@angular/core": ">=14.0.0" } }, + "node_modules/ngx-ui-tour-core": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/ngx-ui-tour-core/-/ngx-ui-tour-core-13.0.0.tgz", + "integrity": "sha512-svtp3zMoOnkGPL6eBKtJX3gsIir8aJzVg5KfSKNVO4ZMHGgh+MK55WfvmX8juv3gSJMBCMZta5b/7gjEn2g/Iw==", + "dependencies": { + "tslib": "^2.0.0" + }, + "peerDependencies": { + "@angular/common": "^18.0.0", + "@angular/core": "^18.0.0", + "@angular/router": "^18.0.0", + "rxjs": "^7.4.0" + } + }, "node_modules/ngx-ui-tour-ng-bootstrap": { "version": "15.0.0", "resolved": "https://registry.npmjs.org/ngx-ui-tour-ng-bootstrap/-/ngx-ui-tour-ng-bootstrap-15.0.0.tgz", @@ -14535,20 +14990,6 @@ "@ng-bootstrap/ng-bootstrap": "^17.0.0" } }, - "node_modules/ngx-ui-tour-ng-bootstrap/node_modules/ngx-ui-tour-core": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/ngx-ui-tour-core/-/ngx-ui-tour-core-13.0.0.tgz", - "integrity": "sha512-svtp3zMoOnkGPL6eBKtJX3gsIir8aJzVg5KfSKNVO4ZMHGgh+MK55WfvmX8juv3gSJMBCMZta5b/7gjEn2g/Iw==", - "dependencies": { - "tslib": "^2.0.0" - }, - "peerDependencies": { - "@angular/common": "^18.0.0", - "@angular/core": "^18.0.0", - "@angular/router": "^18.0.0", - "rxjs": "^7.4.0" - } - }, "node_modules/nice-napi": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/nice-napi/-/nice-napi-1.0.2.tgz", @@ -14564,13 +15005,19 @@ "node-gyp-build": "^4.2.2" } }, - "node_modules/node-addon-api": { + "node_modules/nice-napi/node_modules/node-addon-api": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", "dev": true, "optional": true }, + "node_modules/node-addon-api": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==", + "dev": true + }, "node_modules/node-fetch": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", @@ -15154,10 +15601,13 @@ } }, "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", "dev": true, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -15468,6 +15918,12 @@ "node": ">=6" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", + "dev": true + }, "node_modules/pacote": { "version": "18.0.6", "resolved": "https://registry.npmjs.org/pacote/-/pacote-18.0.6.tgz", @@ -15854,6 +16310,18 @@ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, + "node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/pify": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", @@ -17275,25 +17743,6 @@ "node": ">= 14" } }, - "node_modules/sonic-forest": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sonic-forest/-/sonic-forest-1.0.3.tgz", - "integrity": "sha512-dtwajos6IWMEWXdEbW1IkEkyL2gztCAgDplRIX+OT5aRKnEd5e7r7YCxRgXZdhRP1FBdOBf8axeTPhzDv8T4wQ==", - "dev": true, - "dependencies": { - "tree-dump": "^1.0.0" - }, - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, "node_modules/source-map": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", @@ -17982,9 +18431,9 @@ } }, "node_modules/tree-dump": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.1.tgz", - "integrity": "sha512-WCkcRBVPSlHHq1dc/px9iOfqklvzCbdRwvlNfxGZsrHqf6aZttfPrd7DJTt6oR10dwUfpFFQeVTkPbBIZxX/YA==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.2.tgz", + "integrity": "sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==", "dev": true, "engines": { "node": ">=10.0" @@ -18019,9 +18468,9 @@ } }, "node_modules/ts-jest": { - "version": "29.1.2", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz", - "integrity": "sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==", + "version": "29.1.5", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.5.tgz", + "integrity": "sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==", "dev": true, "dependencies": { "bs-logger": "0.x", @@ -18037,10 +18486,11 @@ "ts-jest": "cli.js" }, "engines": { - "node": "^16.10.0 || ^18.0.0 || >=20.0.0" + "node": "^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0" }, "peerDependencies": { "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/transform": "^29.0.0", "@jest/types": "^29.0.0", "babel-jest": "^29.0.0", "jest": "^29.0.0", @@ -18050,6 +18500,9 @@ "@babel/core": { "optional": true }, + "@jest/transform": { + "optional": true + }, "@jest/types": { "optional": true }, @@ -18734,15 +19187,16 @@ } }, "node_modules/webpack-dev-server/node_modules/glob": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", - "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "version": "10.4.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", + "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^3.1.2", "minimatch": "^9.0.4", "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", "path-scurry": "^1.11.1" }, "bin": { @@ -18795,9 +19249,9 @@ } }, "node_modules/webpack-dev-server/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" diff --git a/src-ui/package.json b/src-ui/package.json index 010578bf4..ad1ee1289 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -11,17 +11,17 @@ }, "private": true, "dependencies": { - "@angular/cdk": "^18.0.3", - "@angular/common": "~18.0.3", - "@angular/compiler": "~18.0.3", - "@angular/core": "~18.0.3", - "@angular/forms": "~18.0.3", - "@angular/localize": "~18.0.3", - "@angular/platform-browser": "~18.0.3", - "@angular/platform-browser-dynamic": "~18.0.3", - "@angular/router": "~18.0.3", + "@angular/cdk": "^18.0.5", + "@angular/common": "~18.0.5", + "@angular/compiler": "~18.0.5", + "@angular/core": "~18.0.5", + "@angular/forms": "~18.0.5", + "@angular/localize": "~18.0.5", + "@angular/platform-browser": "~18.0.5", + "@angular/platform-browser-dynamic": "~18.0.5", + "@angular/router": "~18.0.5", "@ng-bootstrap/ng-bootstrap": "^17.0.0", - "@ng-select/ng-select": "^13.2.0", + "@ng-select/ng-select": "^13.3.0", "@ngneat/dirty-check-forms": "^3.0.3", "@popperjs/core": "^2.11.8", "bootstrap": "^5.3.3", @@ -39,16 +39,16 @@ "zone.js": "^0.14.4" }, "devDependencies": { - "@angular-builders/jest": "^18.0.0-beta.3", - "@angular-devkit/build-angular": "^18.0.4", - "@angular-devkit/core": "^18.0.4", - "@angular-devkit/schematics": "^18.0.4", + "@angular-builders/jest": "^18.0.0", + "@angular-devkit/build-angular": "^18.0.6", + "@angular-devkit/core": "^18.0.6", + "@angular-devkit/schematics": "^18.0.6", "@angular-eslint/builder": "18.0.1", "@angular-eslint/eslint-plugin": "18.0.1", "@angular-eslint/eslint-plugin-template": "18.0.1", "@angular-eslint/schematics": "18.0.1", "@angular-eslint/template-parser": "18.0.1", - "@angular/cli": "~18.0.4", + "@angular/cli": "~18.0.6", "@angular/compiler-cli": "~18.0.3", "@playwright/test": "^1.42.1", "@types/jest": "^29.5.12", From 9cd1945a898d641c94fa167a79ab0d0510576461 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 15:14:53 -0700 Subject: [PATCH 15/39] Chore(deps): Bump the small-changes group across 1 directory with 4 updates (#7128) Bumps the small-changes group with 4 updates in the / directory: [django-cors-headers](https://github.com/adamchainz/django-cors-headers), [filelock](https://github.com/tox-dev/py-filelock), [redis](https://github.com/redis/redis-py) and [whitenoise](https://github.com/evansd/whitenoise). Updates `django-cors-headers` from 4.3.1 to 4.4.0 - [Changelog](https://github.com/adamchainz/django-cors-headers/blob/main/CHANGELOG.rst) - [Commits](https://github.com/adamchainz/django-cors-headers/compare/4.3.1...4.4.0) Updates `filelock` from 3.15.1 to 3.15.4 - [Release notes](https://github.com/tox-dev/py-filelock/releases) - [Changelog](https://github.com/tox-dev/filelock/blob/main/docs/changelog.rst) - [Commits](https://github.com/tox-dev/py-filelock/compare/3.15.1...3.15.4) Updates `redis` from 5.0.6 to 5.0.7 - [Release notes](https://github.com/redis/redis-py/releases) - [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES) - [Commits](https://github.com/redis/redis-py/compare/v5.0.6...v5.0.7) Updates `whitenoise` from 6.6.0 to 6.7.0 - [Changelog](https://github.com/evansd/whitenoise/blob/main/docs/changelog.rst) - [Commits](https://github.com/evansd/whitenoise/compare/6.6.0...6.7.0) --- updated-dependencies: - dependency-name: django-cors-headers dependency-type: direct:production update-type: version-update:semver-minor dependency-group: small-changes - dependency-name: filelock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: small-changes - dependency-name: redis dependency-type: direct:production update-type: version-update:semver-patch dependency-group: small-changes - dependency-name: whitenoise dependency-type: direct:production update-type: version-update:semver-minor dependency-group: small-changes ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Pipfile | 2 +- Pipfile.lock | 26 +++++++++++++------------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Pipfile b/Pipfile index 948e22273..69c3084ec 100644 --- a/Pipfile +++ b/Pipfile @@ -54,7 +54,7 @@ tqdm = "*" # See https://github.com/paperless-ngx/paperless-ngx/issues/5494 uvicorn = {extras = ["standard"], version = "==0.25.0"} watchdog = "~=4.0" -whitenoise = "~=6.6" +whitenoise = "~=6.7" whoosh="~=2.7" zxing-cpp = {version = "*", platform_machine = "== 'x86_64'"} diff --git a/Pipfile.lock b/Pipfile.lock index e2ff50137..cb0cd874f 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "a5c03d1dd7ee0de6c18781d4cdfbd148b9eb6e8caf9eb52263f22b5ffe30bbf3" + "sha256": "37d8a84e16b6f6785d0daa79b249beab7fbef0c177a13eccfce79816bf61ccd0" }, "pipfile-spec": 6, "requires": {}, @@ -498,12 +498,12 @@ }, "django-cors-headers": { "hashes": [ - "sha256:0b1fd19297e37417fc9f835d39e45c8c642938ddba1acce0c1753d3edef04f36", - "sha256:0bf65ef45e606aff1994d35503e6b677c0b26cafff6506f8fd7187f3be840207" + "sha256:5c6e3b7fe870876a1efdfeb4f433782c3524078fa0dc9e0195f6706ce7a242f6", + "sha256:92cf4633e22af67a230a1456cb1b7a02bb213d6536d2dcb2a4a24092ea9cebc2" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==4.3.1" + "version": "==4.4.0" }, "django-extensions": { "hashes": [ @@ -584,12 +584,12 @@ }, "filelock": { "hashes": [ - "sha256:58a2549afdf9e02e10720eaa4d4470f56386d7a6f72edd7d0596337af8ed7ad8", - "sha256:71b3102950e91dfc1bb4209b64be4dc8854f40e5f534428d8684f953ac847fac" + "sha256:2207938cbc1844345cb01a5a95524dae30f0ce089eba5b00378295a17e3e90cb", + "sha256:6ca1fffae96225dab4c6eaf1c4f4f28cd2568d3ec2a44e15a08520504de468e7" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==3.15.1" + "version": "==3.15.4" }, "flower": { "hashes": [ @@ -1655,12 +1655,12 @@ "hiredis" ], "hashes": [ - "sha256:38473cd7c6389ad3e44a91f4c3eaf6bcb8a9f746007f29bf4fb20824ff0b2197", - "sha256:c0d6d990850c627bbf7be01c5c4cbaadf67b48593e913bb71c9819c30df37eee" + "sha256:0e479e24da960c690be5d9b96d21f7b918a98c0cf49af3b6fafaa0753f93a0db", + "sha256:8f611490b93c8109b50adc317b31bfd84fff31def3475b92e7e80bf39f48175b" ], "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==5.0.6" + "version": "==5.0.7" }, "regex": { "hashes": [ @@ -2300,12 +2300,12 @@ }, "whitenoise": { "hashes": [ - "sha256:8998f7370973447fac1e8ef6e8ded2c5209a7b1f67c1012866dbcd09681c3251", - "sha256:b1f9db9bf67dc183484d760b99f4080185633136a273a03f6436034a41064146" + "sha256:58c7a6cd811e275a6c91af22e96e87da0b1109e9a53bb7464116ef4c963bf636", + "sha256:a1ae85e01fdc9815d12fa33f17765bc132ed2c54fa76daf9e39e879dd93566f6" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==6.6.0" + "version": "==6.7.0" }, "whoosh": { "hashes": [ From dd878c8d70f02b606e7468af2e63be892d9ba4bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Jun 2024 07:06:48 -0700 Subject: [PATCH 16/39] Chore(deps): Bump docker/build-push-action in the actions group (#7125) Bumps the actions group with 1 update: [docker/build-push-action](https://github.com/docker/build-push-action). Updates `docker/build-push-action` from 5 to 6 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index baea9eff2..b0092cb1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -398,7 +398,7 @@ jobs: password: ${{ secrets.QUAY_ROBOT_TOKEN }} - name: Build and push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . file: ./Dockerfile From d35e350c798df8eeee8a718e04c7653833ba2570 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 1 Jul 2024 13:47:05 -0700 Subject: [PATCH 17/39] Fix: dont exclude documents in trash from sanity check (#7133) --- src/documents/sanity_checker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/documents/sanity_checker.py b/src/documents/sanity_checker.py index bff1c41d7..9d44ff345 100644 --- a/src/documents/sanity_checker.py +++ b/src/documents/sanity_checker.py @@ -34,7 +34,7 @@ class SanityCheckMessages: logger.info("Sanity checker detected no issues.") else: # Query once - all_docs = Document.objects.all() + all_docs = Document.global_objects.all() for doc_pk in self._messages: if doc_pk is not None: @@ -68,7 +68,7 @@ def check_sanity(progress=False) -> SanityCheckMessages: if lockfile in present_files: present_files.remove(lockfile) - for doc in tqdm(Document.objects.all(), disable=not progress): + for doc in tqdm(Document.global_objects.all(), disable=not progress): # Check sanity of the thumbnail thumbnail_path: Final[Path] = Path(doc.thumbnail_path).resolve() if not thumbnail_path.exists() or not thumbnail_path.is_file(): From c57aa81d15e336c347bd6ff63c115a31d0a611e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 16:23:09 -0700 Subject: [PATCH 18/39] Chore(deps): Bump django-multiselectfield in the django group (#7147) Bumps the django group with 1 update: [django-multiselectfield](https://github.com/goinnn/django-multiselectfield). Updates `django-multiselectfield` from 0.1.12 to 0.1.13 - [Release notes](https://github.com/goinnn/django-multiselectfield/releases) - [Changelog](https://github.com/goinnn/django-multiselectfield/blob/master/CHANGES.rst) - [Commits](https://github.com/goinnn/django-multiselectfield/commits) --- updated-dependencies: - dependency-name: django-multiselectfield dependency-type: direct:production update-type: version-update:semver-patch dependency-group: django ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Pipfile.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Pipfile.lock b/Pipfile.lock index cb0cd874f..716e3f7e5 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -534,11 +534,11 @@ }, "django-multiselectfield": { "hashes": [ - "sha256:c270faa7f80588214c55f2d68cbddb2add525c2aa830c216b8a198de914eb470", - "sha256:d0a4c71568fb2332c71478ffac9f8708e01314a35cf923dfd7a191343452f9f9" + "sha256:437d72632f4c0ca416951917632529c3d1d42b62bb6c3c03e3396fa50265be94", + "sha256:f146ef568c823a409f4021b98781666ec2debabfceca9176116d749dc39cb8b3" ], "index": "pypi", - "version": "==0.1.12" + "version": "==0.1.13" }, "django-soft-delete": { "hashes": [ From 5045d067449cbd9becffe6da818ef24780ebb82b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 23:36:31 +0000 Subject: [PATCH 19/39] Chore(deps): Bump the frontend-angular-dependencies group (#7148) Bumps the frontend-angular-dependencies group in /src-ui with 6 updates: | Package | From | To | | --- | --- | --- | | [@ng-select/ng-select](https://github.com/ng-select/ng-select) | `13.3.0` | `13.4.1` | | [@angular-eslint/builder](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/builder) | `18.0.1` | `18.1.0` | | [@angular-eslint/eslint-plugin](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin) | `18.0.1` | `18.1.0` | | [@angular-eslint/eslint-plugin-template](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin-template) | `18.0.1` | `18.1.0` | | [@angular-eslint/schematics](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/schematics) | `18.0.1` | `18.1.0` | | [@angular-eslint/template-parser](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/template-parser) | `18.0.1` | `18.1.0` | Updates `@ng-select/ng-select` from 13.3.0 to 13.4.1 - [Release notes](https://github.com/ng-select/ng-select/releases) - [Changelog](https://github.com/ng-select/ng-select/blob/master/CHANGELOG.md) - [Commits](https://github.com/ng-select/ng-select/compare/v13.3.0...v13.4.1) Updates `@angular-eslint/builder` from 18.0.1 to 18.1.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/builder/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v18.1.0/packages/builder) Updates `@angular-eslint/eslint-plugin` from 18.0.1 to 18.1.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v18.1.0/packages/eslint-plugin) Updates `@angular-eslint/eslint-plugin-template` from 18.0.1 to 18.1.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin-template/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v18.1.0/packages/eslint-plugin-template) Updates `@angular-eslint/schematics` from 18.0.1 to 18.1.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/schematics/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v18.1.0/packages/schematics) Updates `@angular-eslint/template-parser` from 18.0.1 to 18.1.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/template-parser/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v18.1.0/packages/template-parser) --- updated-dependencies: - dependency-name: "@ng-select/ng-select" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular-eslint/builder" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular-eslint/eslint-plugin-template" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular-eslint/schematics" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular-eslint/template-parser" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src-ui/package-lock.json | 114 ++++++++++++++++++++++----------------- src-ui/package.json | 12 ++--- 2 files changed, 70 insertions(+), 56 deletions(-) diff --git a/src-ui/package-lock.json b/src-ui/package-lock.json index 10c84d89f..1b04f9302 100644 --- a/src-ui/package-lock.json +++ b/src-ui/package-lock.json @@ -19,7 +19,7 @@ "@angular/platform-browser-dynamic": "~18.0.5", "@angular/router": "~18.0.5", "@ng-bootstrap/ng-bootstrap": "^17.0.0", - "@ng-select/ng-select": "^13.3.0", + "@ng-select/ng-select": "^13.4.1", "@ngneat/dirty-check-forms": "^3.0.3", "@popperjs/core": "^2.11.8", "bootstrap": "^5.3.3", @@ -41,11 +41,11 @@ "@angular-devkit/build-angular": "^18.0.6", "@angular-devkit/core": "^18.0.6", "@angular-devkit/schematics": "^18.0.6", - "@angular-eslint/builder": "18.0.1", - "@angular-eslint/eslint-plugin": "18.0.1", - "@angular-eslint/eslint-plugin-template": "18.0.1", - "@angular-eslint/schematics": "18.0.1", - "@angular-eslint/template-parser": "18.0.1", + "@angular-eslint/builder": "18.1.0", + "@angular-eslint/eslint-plugin": "18.1.0", + "@angular-eslint/eslint-plugin-template": "18.1.0", + "@angular-eslint/schematics": "18.1.0", + "@angular-eslint/template-parser": "18.1.0", "@angular/cli": "~18.0.6", "@angular/compiler-cli": "~18.0.3", "@playwright/test": "^1.42.1", @@ -847,9 +847,9 @@ } }, "node_modules/@angular-eslint/builder": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-18.0.1.tgz", - "integrity": "sha512-b/VUeTQznAmGdwP4OyPWyegqSRWub7E8/WXBqojrSFyLkFhpTiHpk/3/5G3LsgTb0zBfyAsqkA0yaadsHu9pjA==", + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-18.1.0.tgz", + "integrity": "sha512-ttcp+M3XDqt4lpj4C9XWO/JJY5iC1kNWmK1FUtd1YR0+1mLhrZTbakFYFe06qoiRqb4MX0WW2oUvonh52y5/NQ==", "dev": true, "dependencies": { "@nx/devkit": "^19.0.6", @@ -861,51 +861,79 @@ } }, "node_modules/@angular-eslint/bundled-angular-compiler": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-18.0.1.tgz", - "integrity": "sha512-lr4Ysoo28FBOKcJFQUGTMpbWDcak+gyuYvyggp37ERvazE6EDomPFxzEHNqVT9EI9sZ+GDBOoPR+EdFh0ALGNw==", + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-18.1.0.tgz", + "integrity": "sha512-2JNlMEnCvLz8q1Qa4sWR9BddtpDWMKYguMzHJKm5zUDwH90CgWHolQlXumtpqbL8r78xd57t35IkbEFLF3UsQw==", "dev": true }, "node_modules/@angular-eslint/eslint-plugin": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-18.0.1.tgz", - "integrity": "sha512-pS3SYLa9DA+ENklGxEUlcw6/xCxgDk9fgjyaheuSjDxL3TIh1pTa4V2TptODdcPh7XCYXiVmy+e/w79mXlGzOw==", + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-18.1.0.tgz", + "integrity": "sha512-rV1RLhcg9TTNE5hB7pMddkJvnH0+q3FnhhWVE+IJNkzlGxEktDwVx7hG17sy8YkRS2CxR0P6Dr5C6wMBdEwAsw==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "18.0.1", - "@angular-eslint/utils": "18.0.1" + "@angular-eslint/bundled-angular-compiler": "18.1.0", + "@angular-eslint/utils": "18.1.0" }, "peerDependencies": { - "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.37", "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular-eslint/eslint-plugin-template": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-18.0.1.tgz", - "integrity": "sha512-u/eov/CFBb8l35D8dW78Dx5fBLd8FZFibKN9XQknhzXnDMpISuUOMny5g5/wvYYjqLgqEySXMiHKEAxEup7xtA==", + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-18.1.0.tgz", + "integrity": "sha512-k7Zq2JRd4jjg6PB0M24UnnmdhCeRFQ7Q4GlMGmeJLQGan+HFKDBu973yN2/Vmk4RYi+rTVuin0gy4HBeiGiiaw==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "18.0.1", - "@angular-eslint/utils": "18.0.1", + "@angular-eslint/bundled-angular-compiler": "18.1.0", + "@angular-eslint/utils": "18.1.0", "aria-query": "5.3.0", "axobject-query": "4.0.0" }, "peerDependencies": { - "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.37", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": "*" + } + }, + "node_modules/@angular-eslint/eslint-plugin-template/node_modules/@angular-eslint/utils": { + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-18.1.0.tgz", + "integrity": "sha512-pTCwbm9TPU1B0fxwhJg5qnJA2ILUJR0cT+rc7kejV0Xwl6RBXpMrzbuMzB9CucEY1au8hAR55I+Sc9znwSwuIw==", + "dev": true, + "dependencies": { + "@angular-eslint/bundled-angular-compiler": "18.1.0" + }, + "peerDependencies": { + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.37", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": "*" + } + }, + "node_modules/@angular-eslint/eslint-plugin/node_modules/@angular-eslint/utils": { + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-18.1.0.tgz", + "integrity": "sha512-pTCwbm9TPU1B0fxwhJg5qnJA2ILUJR0cT+rc7kejV0Xwl6RBXpMrzbuMzB9CucEY1au8hAR55I+Sc9znwSwuIw==", + "dev": true, + "dependencies": { + "@angular-eslint/bundled-angular-compiler": "18.1.0" + }, + "peerDependencies": { + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.37", "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular-eslint/schematics": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-18.0.1.tgz", - "integrity": "sha512-G9PgFrjyvBaQR8enMnP2scnQDLk99GMpifh3voiOmdEkxaQHRWqhCWncV7GATwpXDzeyj9J9XT9iHGJjnZTpJQ==", + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-18.1.0.tgz", + "integrity": "sha512-wZll/9/RSER1Vl6m9fXA/866OAUz2DSWYufvHEpJUoDPug/uZ+l9jOMZwlSk4PeMrF+/fNXoWx5HK2ZEwTv2qw==", "dev": true, "dependencies": { - "@angular-eslint/eslint-plugin": "18.0.1", - "@angular-eslint/eslint-plugin-template": "18.0.1", + "@angular-eslint/eslint-plugin": "18.1.0", + "@angular-eslint/eslint-plugin-template": "18.1.0", "@nx/devkit": "^19.0.6", "ignore": "5.3.1", "nx": "^19.0.6", @@ -918,12 +946,12 @@ } }, "node_modules/@angular-eslint/template-parser": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-18.0.1.tgz", - "integrity": "sha512-22fKzkWo9Ts8aY/WHL1A6seS2tpltgRRXVfnZnnqvQRyRiuPnx1FC0ly7+QPZkThh8vdLwxU+BvtLq9Uiqh9OQ==", + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-18.1.0.tgz", + "integrity": "sha512-YqBNusbt3vWbm8eo2dICytU8hP8/ez4uETkwKpMvB+H1E0rYaD2F17D47YO9BBFUHCNzAGIBlA8BWDN1kLEMlw==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "18.0.1", + "@angular-eslint/bundled-angular-compiler": "18.1.0", "eslint-scope": "^8.0.0" }, "peerDependencies": { @@ -947,20 +975,6 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/@angular-eslint/utils": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-18.0.1.tgz", - "integrity": "sha512-Q9lCySqg+9h2cz08+SoWj48cY1i04tL1k3bsQJmF2TsylAw2mSsNGX2X3h9WkdxY7sUoY0mP7MVW1iU54Gobcg==", - "dev": true, - "dependencies": { - "@angular-eslint/bundled-angular-compiler": "18.0.1" - }, - "peerDependencies": { - "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", - "eslint": "^8.57.0 || ^9.0.0", - "typescript": "*" - } - }, "node_modules/@angular/build": { "version": "18.0.6", "resolved": "https://registry.npmjs.org/@angular/build/-/build-18.0.6.tgz", @@ -5365,9 +5379,9 @@ } }, "node_modules/@ng-select/ng-select": { - "version": "13.3.0", - "resolved": "https://registry.npmjs.org/@ng-select/ng-select/-/ng-select-13.3.0.tgz", - "integrity": "sha512-MT5q5PemshfVP4OpjdLJY27G0ZRVhi8WHn0ZSVrRGk1vztmi5VIXSefGoCpsZkay1IM4Wzlm8PmHbgWqnJKqCA==", + "version": "13.4.1", + "resolved": "https://registry.npmjs.org/@ng-select/ng-select/-/ng-select-13.4.1.tgz", + "integrity": "sha512-b8ITHwOlG1boPBbhKRLNvhXBW85OrRgo8E7fgdO0B6iwppTGD0+wSCepf4gh4z7rE/StYsrjwP+Unq0OFOZEwA==", "dependencies": { "tslib": "^2.3.1" }, diff --git a/src-ui/package.json b/src-ui/package.json index ad1ee1289..91616abe3 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -21,7 +21,7 @@ "@angular/platform-browser-dynamic": "~18.0.5", "@angular/router": "~18.0.5", "@ng-bootstrap/ng-bootstrap": "^17.0.0", - "@ng-select/ng-select": "^13.3.0", + "@ng-select/ng-select": "^13.4.1", "@ngneat/dirty-check-forms": "^3.0.3", "@popperjs/core": "^2.11.8", "bootstrap": "^5.3.3", @@ -43,11 +43,11 @@ "@angular-devkit/build-angular": "^18.0.6", "@angular-devkit/core": "^18.0.6", "@angular-devkit/schematics": "^18.0.6", - "@angular-eslint/builder": "18.0.1", - "@angular-eslint/eslint-plugin": "18.0.1", - "@angular-eslint/eslint-plugin-template": "18.0.1", - "@angular-eslint/schematics": "18.0.1", - "@angular-eslint/template-parser": "18.0.1", + "@angular-eslint/builder": "18.1.0", + "@angular-eslint/eslint-plugin": "18.1.0", + "@angular-eslint/eslint-plugin-template": "18.1.0", + "@angular-eslint/schematics": "18.1.0", + "@angular-eslint/template-parser": "18.1.0", "@angular/cli": "~18.0.6", "@angular/compiler-cli": "~18.0.3", "@playwright/test": "^1.42.1", From 064d384d975bdc1a780faadcfcb18db9ac641bd7 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 3 Jul 2024 08:09:28 -0700 Subject: [PATCH 20/39] Enhancement: show more columns in mail frontend admin (#7158) --- src-ui/messages.xlf | 41 ++++++++++++------- .../manage/mail/mail.component.html | 4 ++ 2 files changed, 30 insertions(+), 15 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 60ef72870..e6559cb71 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -726,7 +726,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1092,11 +1092,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1390,11 +1390,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1481,11 +1481,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1871,7 +1871,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2338,6 +2338,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Groups @@ -2390,11 +2394,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3618,7 +3622,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 @@ -7373,28 +7377,35 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 + + + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 diff --git a/src-ui/src/app/components/manage/mail/mail.component.html b/src-ui/src/app/components/manage/mail/mail.component.html index c346e81d9..b804b0f2f 100644 --- a/src-ui/src/app/components/manage/mail/mail.component.html +++ b/src-ui/src/app/components/manage/mail/mail.component.html @@ -19,6 +19,7 @@
Name
Server
+
Username
Actions
@@ -28,6 +29,7 @@
{{account.imap_server}}
+
{{account.username}}
+
{{rule.order}}
{{(mailAccountService.getCached(rule.account) | async)?.name}}
From 0deb8a11d6f3c08a5cb37ad282450093a480913e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jul 2024 20:48:01 -0700 Subject: [PATCH 21/39] Chore(deps): Bump certifi from 2024.6.2 to 2024.7.4 (#7166) Bumps [certifi](https://github.com/certifi/python-certifi) from 2024.6.2 to 2024.7.4. - [Commits](https://github.com/certifi/python-certifi/compare/2024.06.02...2024.07.04) --- updated-dependencies: - dependency-name: certifi dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Pipfile.lock | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Pipfile.lock b/Pipfile.lock index 716e3f7e5..6c8a8c724 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -164,11 +164,12 @@ }, "certifi": { "hashes": [ - "sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516", - "sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56" + "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b", + "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90" ], + "index": "pypi", "markers": "python_version >= '3.6'", - "version": "==2024.6.2" + "version": "==2024.7.4" }, "cffi": { "hashes": [ From 7fe76656f2aa583b1647fb5d91f9bf7a01792e68 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 6 Jul 2024 12:58:50 -0700 Subject: [PATCH 22/39] Fix: editing of existing custom fields violates throws unique error --- src/documents/serialisers.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py index 48e26dea3..546a8d8e7 100644 --- a/src/documents/serialisers.py +++ b/src/documents/serialisers.py @@ -463,7 +463,14 @@ class CustomFieldSerializer(serializers.ModelSerializer): "name", self.instance.name if hasattr(self.instance, "name") else None, ) - if ("name" in attrs) and self.Meta.model.objects.filter( + objects = ( + self.Meta.model.objects.exclude( + pk=self.instance.pk, + ) + if self.instance is not None + else self.Meta.model.objects.all() + ) + if ("name" in attrs) and objects.filter( name=name, ).exists(): raise serializers.ValidationError( From 1b9cf5121b3ae9c7769d523b7fa34f4fad13c49b Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 6 Jul 2024 13:24:43 -0700 Subject: [PATCH 23/39] Add missing disable autocomplete for doc type edit dialog --- .../document-type-edit-dialog.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html b/src-ui/src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html index 25f2f8f3b..2dc5fe2a4 100644 --- a/src-ui/src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html +++ b/src-ui/src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -10,7 +10,7 @@
} @else if (documents.length && displayMode === DisplayMode.SMALL_CARDS) { -
+
@for (d of documents; track d.id) { } @else if (documents.length && displayMode === DisplayMode.LARGE_CARDS) { -
+
@for (d of documents; track d.id) { } @else { -

No documents

+

No documents

} From ff4203938b954dbe4ea3f64333eeb03795887c55 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 9 Jul 2024 13:06:06 -0700 Subject: [PATCH 35/39] Fix: correct card display custom field trackby variable --- .../document-card-large/document-card-large.component.html | 2 +- .../document-card-small/document-card-small.component.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html index 7e406a7c7..1a8c7df82 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html @@ -127,7 +127,7 @@
} - @for (field of document.custom_fields; track field.id) { + @for (field of document.custom_fields; track field.field) { @if (displayFields.includes(DisplayField.CUSTOM_FIELD + field.field)) {
diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html index 9667163fb..92449214e 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html @@ -106,7 +106,7 @@ Shared
} - @for (field of document.custom_fields; track field.id) { + @for (field of document.custom_fields; track field.field) { @if (displayFields.includes(DisplayField.CUSTOM_FIELD + field.field)) {
From 9af879a2bfe86bdca864e8e87dc2490f87fd9fb1 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Wed, 10 Jul 2024 12:45:29 -0700 Subject: [PATCH 36/39] Bulk backend updates (#7209) --- .pre-commit-config.yaml | 2 +- .python-version | 2 +- Dockerfile | 8 +- Pipfile | 3 +- Pipfile.lock | 1276 ++++++++++++++++++++------------------- 5 files changed, 659 insertions(+), 632 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c57f18c8e..5f3af004c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -47,7 +47,7 @@ repos: exclude: "(^Pipfile\\.lock$)" # Python hooks - repo: https://github.com/astral-sh/ruff-pre-commit - rev: 'v0.5.0' + rev: 'v0.5.1' hooks: - id: ruff - id: ruff-format diff --git a/.python-version b/.python-version index 43077b246..8e34c8131 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.9.18 +3.9.19 diff --git a/Dockerfile b/Dockerfile index a0120cdd4..57c584327 100644 --- a/Dockerfile +++ b/Dockerfile @@ -233,11 +233,11 @@ RUN --mount=type=cache,target=/root/.cache/pip/,id=pip-cache \ && python3 -m pip install --no-cache-dir --upgrade wheel \ && echo "Installing Python requirements" \ && curl --fail --silent --show-error --location \ - --output psycopg_c-3.1.19-cp311-cp311-linux_x86_64.whl \ - https://github.com/paperless-ngx/builder/releases/download/psycopg-3.1.19/psycopg_c-3.1.19-cp311-cp311-linux_x86_64.whl \ + --output psycopg_c-3.2.1-cp311-cp311-linux_x86_64.whl \ + https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.1/psycopg_c-3.2.1-cp311-cp311-linux_x86_64.whl \ && curl --fail --silent --show-error --location \ - --output psycopg_c-3.1.19-cp311-cp311-linux_aarch64.whl \ - https://github.com/paperless-ngx/builder/releases/download/psycopg-3.1.19/psycopg_c-3.1.19-cp311-cp311-linux_aarch64.whl \ + --output psycopg_c-3.2.1-cp311-cp311-linux_aarch64.whl \ + https://github.com/paperless-ngx/builder/releases/download/psycopg-3.2.1/psycopg_c-3.2.1-cp311-cp311-linux_aarch64.whl \ && python3 -m pip install --default-timeout=1000 --find-links . --requirement requirements.txt \ && echo "Patching whitenoise for compression speedup" \ && curl --fail --silent --show-error --location --output 484.patch https://github.com/evansd/whitenoise/pull/484.patch \ diff --git a/Pipfile b/Pipfile index 43f6bb600..accd78769 100644 --- a/Pipfile +++ b/Pipfile @@ -7,7 +7,7 @@ name = "pypi" dateparser = "~=1.2" # WARNING: django does not use semver. # Only patch versions are guaranteed to not introduce breaking changes. -django = "~=4.2.13" +django = "~=4.2.14" django-allauth = {extras = ["socialaccount"], version = "*"} django-auditlog = "*" django-celery-results = "*" @@ -94,5 +94,4 @@ types-tqdm = "*" types-Markdown = "*" types-Pygments = "*" types-colorama = "*" -types-psycopg2 = "*" types-setuptools = "*" diff --git a/Pipfile.lock b/Pipfile.lock index 41b105e3c..8d6d3a982 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "dfe78ffea6031e95e8e1ba35b668dacb08a4383b80d3d51d9fca239c4317d194" + "sha256": "dfbdec79ef49972dfb5600bfd01ba2feb4459654a4039635475b7b93a8ad270b" }, "pipfile-spec": 6, "requires": {}, @@ -167,7 +167,6 @@ "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b", "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90" ], - "index": "pypi", "markers": "python_version >= '3.6'", "version": "==2024.7.4" }, @@ -393,41 +392,41 @@ }, "cryptography": { "hashes": [ - "sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55", - "sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785", - "sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b", - "sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886", - "sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82", - "sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1", - "sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda", - "sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f", - "sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68", - "sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60", - "sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7", - "sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd", - "sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582", - "sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc", - "sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858", - "sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b", - "sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2", - "sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678", - "sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13", - "sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4", - "sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8", - "sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604", - "sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477", - "sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e", - "sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a", - "sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9", - "sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14", - "sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda", - "sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da", - "sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562", - "sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2", - "sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9" + "sha256:013629ae70b40af70c9a7a5db40abe5d9054e6f4380e50ce769947b73bf3caad", + "sha256:2346b911eb349ab547076f47f2e035fc8ff2c02380a7cbbf8d87114fa0f1c583", + "sha256:2f66d9cd9147ee495a8374a45ca445819f8929a3efcd2e3df6428e46c3cbb10b", + "sha256:2f88d197e66c65be5e42cd72e5c18afbfae3f741742070e3019ac8f4ac57262c", + "sha256:31f721658a29331f895a5a54e7e82075554ccfb8b163a18719d342f5ffe5ecb1", + "sha256:343728aac38decfdeecf55ecab3264b015be68fc2816ca800db649607aeee648", + "sha256:5226d5d21ab681f432a9c1cf8b658c0cb02533eece706b155e5fbd8a0cdd3949", + "sha256:57080dee41209e556a9a4ce60d229244f7a66ef52750f813bfbe18959770cfba", + "sha256:5a94eccb2a81a309806027e1670a358b99b8fe8bfe9f8d329f27d72c094dde8c", + "sha256:6b7c4f03ce01afd3b76cf69a5455caa9cfa3de8c8f493e0d3ab7d20611c8dae9", + "sha256:7016f837e15b0a1c119d27ecd89b3515f01f90a8615ed5e9427e30d9cdbfed3d", + "sha256:81884c4d096c272f00aeb1f11cf62ccd39763581645b0812e99a91505fa48e0c", + "sha256:81d8a521705787afe7a18d5bfb47ea9d9cc068206270aad0b96a725022e18d2e", + "sha256:8d09d05439ce7baa8e9e95b07ec5b6c886f548deb7e0f69ef25f64b3bce842f2", + "sha256:961e61cefdcb06e0c6d7e3a1b22ebe8b996eb2bf50614e89384be54c48c6b63d", + "sha256:9c0c1716c8447ee7dbf08d6db2e5c41c688544c61074b54fc4564196f55c25a7", + "sha256:a0608251135d0e03111152e41f0cc2392d1e74e35703960d4190b2e0f4ca9c70", + "sha256:a0c5b2b0585b6af82d7e385f55a8bc568abff8923af147ee3c07bd8b42cda8b2", + "sha256:ad803773e9df0b92e0a817d22fd8a3675493f690b96130a5e24f1b8fabbea9c7", + "sha256:b297f90c5723d04bcc8265fc2a0f86d4ea2e0f7ab4b6994459548d3a6b992a14", + "sha256:ba4f0a211697362e89ad822e667d8d340b4d8d55fae72cdd619389fb5912eefe", + "sha256:c4783183f7cb757b73b2ae9aed6599b96338eb957233c58ca8f49a49cc32fd5e", + "sha256:c9bb2ae11bfbab395bdd072985abde58ea9860ed84e59dbc0463a5d0159f5b71", + "sha256:cafb92b2bc622cd1aa6a1dce4b93307792633f4c5fe1f46c6b97cf67073ec961", + "sha256:d45b940883a03e19e944456a558b67a41160e367a719833c53de6911cabba2b7", + "sha256:dc0fdf6787f37b1c6b08e6dfc892d9d068b5bdb671198c72072828b80bd5fe4c", + "sha256:dea567d1b0e8bc5764b9443858b673b734100c2871dc93163f58c46a97a83d28", + "sha256:dec9b018df185f08483f294cae6ccac29e7a6e0678996587363dc352dc65c842", + "sha256:e3ec3672626e1b9e55afd0df6d774ff0e953452886e06e0f1eb7eb0c832e8902", + "sha256:e599b53fd95357d92304510fb7bda8523ed1f79ca98dce2f43c115950aa78801", + "sha256:fa76fbb7596cc5839320000cdd5d0955313696d9511debab7ee7278fc8b5c84a", + "sha256:fff12c88a672ab9c9c1cf7b0c80e3ad9e2ebd9d828d955c126be4fd3e5578c9e" ], "markers": "python_version >= '3.7'", - "version": "==42.0.7" + "version": "==42.0.8" }, "dateparser": { "hashes": [ @@ -455,12 +454,12 @@ }, "django": { "hashes": [ - "sha256:837e3cf1f6c31347a1396a3f6b65688f2b4bb4a11c580dcb628b5afe527b68a5", - "sha256:a17fcba2aad3fc7d46fdb23215095dbbd64e6174bf4589171e732b18b07e426a" + "sha256:3ec32bc2c616ab02834b9cac93143a7dc1cdcd5b822d78ac95fc20a38c534240", + "sha256:fc6919875a6226c7ffcae1a7d51e0f2ceaf6f160393180818f6c95f51b1e7b96" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==4.2.13" + "version": "==4.2.14" }, "django-allauth": { "extras": [ @@ -818,11 +817,11 @@ }, "humanize": { "hashes": [ - "sha256:582a265c931c683a7e9b8ed9559089dea7edcf6cc95be39a3cbc2c5d5ac2bcfa", - "sha256:ce284a76d5b1377fd8836733b983bfb0b76f1aa1c090de2566fcf008d7f6ab16" + "sha256:06b6eb0293e4b85e8d385397c5868926820db32b9b654b932f57fa41c23c9978", + "sha256:39e7ccb96923e732b5c2e27aeaa3b10a8dfeeba3eb965ba7b74a3eb0e30040a6" ], "markers": "python_version >= '3.8'", - "version": "==4.9.0" + "version": "==4.10.0" }, "hyperframe": { "hashes": [ @@ -1147,45 +1146,54 @@ }, "numpy": { "hashes": [ - "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b", - "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818", - "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20", - "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0", - "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", - "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", - "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea", - "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c", - "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71", - "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110", - "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be", - "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a", - "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", - "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5", - "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed", - "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd", - "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c", - "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e", - "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0", - "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c", - "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a", - "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b", - "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", - "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6", - "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", - "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a", - "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30", - "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218", - "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", - "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", - "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2", - "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", - "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764", - "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef", - "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3", - "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f" + "sha256:04494f6ec467ccb5369d1808570ae55f6ed9b5809d7f035059000a37b8d7e86f", + "sha256:0a43f0974d501842866cc83471bdb0116ba0dffdbaac33ec05e6afed5b615238", + "sha256:0e50842b2295ba8414c8c1d9d957083d5dfe9e16828b37de883f51fc53c4016f", + "sha256:0ec84b9ba0654f3b962802edc91424331f423dcf5d5f926676e0150789cb3d95", + "sha256:17067d097ed036636fa79f6a869ac26df7db1ba22039d962422506640314933a", + "sha256:1cde1753efe513705a0c6d28f5884e22bdc30438bf0085c5c486cdaff40cd67a", + "sha256:1e72728e7501a450288fc8e1f9ebc73d90cfd4671ebbd631f3e7857c39bd16f2", + "sha256:2635dbd200c2d6faf2ef9a0d04f0ecc6b13b3cad54f7c67c61155138835515d2", + "sha256:2ce46fd0b8a0c947ae047d222f7136fc4d55538741373107574271bc00e20e8f", + "sha256:34f003cb88b1ba38cb9a9a4a3161c1604973d7f9d5552c38bc2f04f829536609", + "sha256:354f373279768fa5a584bac997de6a6c9bc535c482592d7a813bb0c09be6c76f", + "sha256:38ecb5b0582cd125f67a629072fed6f83562d9dd04d7e03256c9829bdec027ad", + "sha256:3e8e01233d57639b2e30966c63d36fcea099d17c53bf424d77f088b0f4babd86", + "sha256:3f6bed7f840d44c08ebdb73b1825282b801799e325bcbdfa6bc5c370e5aecc65", + "sha256:4554eb96f0fd263041baf16cf0881b3f5dafae7a59b1049acb9540c4d57bc8cb", + "sha256:46e161722e0f619749d1cd892167039015b2c2817296104487cd03ed4a955995", + "sha256:49d9f7d256fbc804391a7f72d4a617302b1afac1112fac19b6c6cec63fe7fe8a", + "sha256:4d2f62e55a4cd9c58c1d9a1c9edaedcd857a73cb6fda875bf79093f9d9086f85", + "sha256:5f64641b42b2429f56ee08b4f427a4d2daf916ec59686061de751a55aafa22e4", + "sha256:63b92c512d9dbcc37f9d81b123dec99fdb318ba38c8059afc78086fe73820275", + "sha256:6d7696c615765091cc5093f76fd1fa069870304beaccfd58b5dcc69e55ef49c1", + "sha256:79e843d186c8fb1b102bef3e2bc35ef81160ffef3194646a7fdd6a73c6b97196", + "sha256:821eedb7165ead9eebdb569986968b541f9908979c2da8a4967ecac4439bae3d", + "sha256:84554fc53daa8f6abf8e8a66e076aff6ece62de68523d9f665f32d2fc50fd66e", + "sha256:8d83bb187fb647643bd56e1ae43f273c7f4dbcdf94550d7938cfc32566756514", + "sha256:903703372d46bce88b6920a0cd86c3ad82dae2dbef157b5fc01b70ea1cfc430f", + "sha256:9416a5c2e92ace094e9f0082c5fd473502c91651fb896bc17690d6fc475128d6", + "sha256:9a1712c015831da583b21c5bfe15e8684137097969c6d22e8316ba66b5baabe4", + "sha256:9c27f0946a3536403efb0e1c28def1ae6730a72cd0d5878db38824855e3afc44", + "sha256:a356364941fb0593bb899a1076b92dfa2029f6f5b8ba88a14fd0984aaf76d0df", + "sha256:a7039a136017eaa92c1848152827e1424701532ca8e8967fe480fe1569dae581", + "sha256:acd3a644e4807e73b4e1867b769fbf1ce8c5d80e7caaef0d90dcdc640dfc9787", + "sha256:ad0c86f3455fbd0de6c31a3056eb822fc939f81b1618f10ff3406971893b62a5", + "sha256:b4c76e3d4c56f145d41b7b6751255feefae92edbc9a61e1758a98204200f30fc", + "sha256:b6f6a8f45d0313db07d6d1d37bd0b112f887e1369758a5419c0370ba915b3871", + "sha256:c5a59996dc61835133b56a32ebe4ef3740ea5bc19b3983ac60cc32be5a665d54", + "sha256:c73aafd1afca80afecb22718f8700b40ac7cab927b8abab3c3e337d70e10e5a2", + "sha256:cee6cc0584f71adefe2c908856ccc98702baf95ff80092e4ca46061538a2ba98", + "sha256:cef04d068f5fb0518a77857953193b6bb94809a806bd0a14983a8f12ada060c9", + "sha256:cf5d1c9e6837f8af9f92b6bd3e86d513cdc11f60fd62185cc49ec7d1aba34864", + "sha256:e61155fae27570692ad1d327e81c6cf27d535a5d7ef97648a17d922224b216de", + "sha256:e7f387600d424f91576af20518334df3d97bc76a300a755f9a8d6e4f5cadd289", + "sha256:ed08d2703b5972ec736451b818c2eb9da80d66c3e84aed1deeb0c345fefe461b", + "sha256:fbd6acc766814ea6443628f4e6751d0da6593dae29c08c0b2606164db026970c", + "sha256:feff59f27338135776f6d4e2ec7aeeac5d5f7a08a83e80869121ef8164b74af9" ], "markers": "python_version >= '3.9'", - "version": "==1.26.4" + "version": "==2.0.0" }, "oauthlib": { "hashes": [ @@ -1206,11 +1214,11 @@ }, "packaging": { "hashes": [ - "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5", - "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9" + "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002", + "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124" ], - "markers": "python_version >= '3.7'", - "version": "==24.0" + "markers": "python_version >= '3.8'", + "version": "==24.1" }, "pathvalidate": { "hashes": [ @@ -1231,11 +1239,11 @@ }, "pdfminer.six": { "hashes": [ - "sha256:6004da3ad1a7a4d45930cb950393df89b068e73be365a6ff64a838d37bcb08c4", - "sha256:e8d3c3310e6fbc1fe414090123ab01351634b4ecb021232206c4c9a8ca3e3b8f" + "sha256:c631a46d5da957a9ffe4460c5dce21e8431dabb615fee5f9f4400603a58d95a6", + "sha256:f4f70e74174b4b3542fcb8406a210b6e2e27cd0f0b5fd04534a8cc0d8951e38c" ], - "markers": "python_version >= '3.6'", - "version": "==20231228" + "markers": "python_version >= '3.8'", + "version": "==20240706" }, "pikepdf": { "hashes": [ @@ -1287,78 +1295,89 @@ }, "pillow": { "hashes": [ - "sha256:048ad577748b9fa4a99a0548c64f2cb8d672d5bf2e643a739ac8faff1164238c", - "sha256:048eeade4c33fdf7e08da40ef402e748df113fd0b4584e32c4af74fe78baaeb2", - "sha256:0ba26351b137ca4e0db0342d5d00d2e355eb29372c05afd544ebf47c0956ffeb", - "sha256:0ea2a783a2bdf2a561808fe4a7a12e9aa3799b701ba305de596bc48b8bdfce9d", - "sha256:1530e8f3a4b965eb6a7785cf17a426c779333eb62c9a7d1bbcf3ffd5bf77a4aa", - "sha256:16563993329b79513f59142a6b02055e10514c1a8e86dca8b48a893e33cf91e3", - "sha256:19aeb96d43902f0a783946a0a87dbdad5c84c936025b8419da0a0cd7724356b1", - "sha256:1a1d1915db1a4fdb2754b9de292642a39a7fb28f1736699527bb649484fb966a", - "sha256:1b87bd9d81d179bd8ab871603bd80d8645729939f90b71e62914e816a76fc6bd", - "sha256:1dfc94946bc60ea375cc39cff0b8da6c7e5f8fcdc1d946beb8da5c216156ddd8", - "sha256:2034f6759a722da3a3dbd91a81148cf884e91d1b747992ca288ab88c1de15999", - "sha256:261ddb7ca91fcf71757979534fb4c128448b5b4c55cb6152d280312062f69599", - "sha256:2ed854e716a89b1afcedea551cd85f2eb2a807613752ab997b9974aaa0d56936", - "sha256:3102045a10945173d38336f6e71a8dc71bcaeed55c3123ad4af82c52807b9375", - "sha256:339894035d0ede518b16073bdc2feef4c991ee991a29774b33e515f1d308e08d", - "sha256:412444afb8c4c7a6cc11a47dade32982439925537e483be7c0ae0cf96c4f6a0b", - "sha256:4203efca580f0dd6f882ca211f923168548f7ba334c189e9eab1178ab840bf60", - "sha256:45ebc7b45406febf07fef35d856f0293a92e7417ae7933207e90bf9090b70572", - "sha256:4b5ec25d8b17217d635f8935dbc1b9aa5907962fae29dff220f2659487891cd3", - "sha256:4c8e73e99da7db1b4cad7f8d682cf6abad7844da39834c288fbfa394a47bbced", - "sha256:4e6f7d1c414191c1199f8996d3f2282b9ebea0945693fb67392c75a3a320941f", - "sha256:4eaa22f0d22b1a7e93ff0a596d57fdede2e550aecffb5a1ef1106aaece48e96b", - "sha256:50b8eae8f7334ec826d6eeffaeeb00e36b5e24aa0b9df322c247539714c6df19", - "sha256:50fd3f6b26e3441ae07b7c979309638b72abc1a25da31a81a7fbd9495713ef4f", - "sha256:51243f1ed5161b9945011a7360e997729776f6e5d7005ba0c6879267d4c5139d", - "sha256:5d512aafa1d32efa014fa041d38868fda85028e3f930a96f85d49c7d8ddc0383", - "sha256:5f77cf66e96ae734717d341c145c5949c63180842a545c47a0ce7ae52ca83795", - "sha256:6b02471b72526ab8a18c39cb7967b72d194ec53c1fd0a70b050565a0f366d355", - "sha256:6fb1b30043271ec92dc65f6d9f0b7a830c210b8a96423074b15c7bc999975f57", - "sha256:7161ec49ef0800947dc5570f86568a7bb36fa97dd09e9827dc02b718c5643f09", - "sha256:72d622d262e463dfb7595202d229f5f3ab4b852289a1cd09650362db23b9eb0b", - "sha256:74d28c17412d9caa1066f7a31df8403ec23d5268ba46cd0ad2c50fb82ae40462", - "sha256:78618cdbccaa74d3f88d0ad6cb8ac3007f1a6fa5c6f19af64b55ca170bfa1edf", - "sha256:793b4e24db2e8742ca6423d3fde8396db336698c55cd34b660663ee9e45ed37f", - "sha256:798232c92e7665fe82ac085f9d8e8ca98826f8e27859d9a96b41d519ecd2e49a", - "sha256:81d09caa7b27ef4e61cb7d8fbf1714f5aec1c6b6c5270ee53504981e6e9121ad", - "sha256:8ab74c06ffdab957d7670c2a5a6e1a70181cd10b727cd788c4dd9005b6a8acd9", - "sha256:8eb0908e954d093b02a543dc963984d6e99ad2b5e36503d8a0aaf040505f747d", - "sha256:90b9e29824800e90c84e4022dd5cc16eb2d9605ee13f05d47641eb183cd73d45", - "sha256:9797a6c8fe16f25749b371c02e2ade0efb51155e767a971c61734b1bf6293994", - "sha256:9d2455fbf44c914840c793e89aa82d0e1763a14253a000743719ae5946814b2d", - "sha256:9d3bea1c75f8c53ee4d505c3e67d8c158ad4df0d83170605b50b64025917f338", - "sha256:9e2ec1e921fd07c7cda7962bad283acc2f2a9ccc1b971ee4b216b75fad6f0463", - "sha256:9e91179a242bbc99be65e139e30690e081fe6cb91a8e77faf4c409653de39451", - "sha256:a0eaa93d054751ee9964afa21c06247779b90440ca41d184aeb5d410f20ff591", - "sha256:a2c405445c79c3f5a124573a051062300936b0281fee57637e706453e452746c", - "sha256:aa7e402ce11f0885305bfb6afb3434b3cd8f53b563ac065452d9d5654c7b86fd", - "sha256:aff76a55a8aa8364d25400a210a65ff59d0168e0b4285ba6bf2bd83cf675ba32", - "sha256:b09b86b27a064c9624d0a6c54da01c1beaf5b6cadfa609cf63789b1d08a797b9", - "sha256:b14f16f94cbc61215115b9b1236f9c18403c15dd3c52cf629072afa9d54c1cbf", - "sha256:b50811d664d392f02f7761621303eba9d1b056fb1868c8cdf4231279645c25f5", - "sha256:b7bc2176354defba3edc2b9a777744462da2f8e921fbaf61e52acb95bafa9828", - "sha256:c78e1b00a87ce43bb37642c0812315b411e856a905d58d597750eb79802aaaa3", - "sha256:c83341b89884e2b2e55886e8fbbf37c3fa5efd6c8907124aeb72f285ae5696e5", - "sha256:ca2870d5d10d8726a27396d3ca4cf7976cec0f3cb706debe88e3a5bd4610f7d2", - "sha256:ccce24b7ad89adb5a1e34a6ba96ac2530046763912806ad4c247356a8f33a67b", - "sha256:cd5e14fbf22a87321b24c88669aad3a51ec052eb145315b3da3b7e3cc105b9a2", - "sha256:ce49c67f4ea0609933d01c0731b34b8695a7a748d6c8d186f95e7d085d2fe475", - "sha256:d33891be6df59d93df4d846640f0e46f1a807339f09e79a8040bc887bdcd7ed3", - "sha256:d3b2348a78bc939b4fed6552abfd2e7988e0f81443ef3911a4b8498ca084f6eb", - "sha256:d886f5d353333b4771d21267c7ecc75b710f1a73d72d03ca06df49b09015a9ef", - "sha256:d93480005693d247f8346bc8ee28c72a2191bdf1f6b5db469c096c0c867ac015", - "sha256:dc1a390a82755a8c26c9964d457d4c9cbec5405896cba94cf51f36ea0d855002", - "sha256:dd78700f5788ae180b5ee8902c6aea5a5726bac7c364b202b4b3e3ba2d293170", - "sha256:e46f38133e5a060d46bd630faa4d9fa0202377495df1f068a8299fd78c84de84", - "sha256:e4b878386c4bf293578b48fc570b84ecfe477d3b77ba39a6e87150af77f40c57", - "sha256:f0d0591a0aeaefdaf9a5e545e7485f89910c977087e7de2b6c388aec32011e9f", - "sha256:fdcbb4068117dfd9ce0138d068ac512843c52295ed996ae6dd1faf537b6dbc27", - "sha256:ff61bfd9253c3915e6d41c651d5f962da23eda633cf02262990094a18a55371a" + "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885", + "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea", + "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df", + "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5", + "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c", + "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d", + "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd", + "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06", + "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908", + "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a", + "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be", + "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0", + "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b", + "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80", + "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a", + "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e", + "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9", + "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696", + "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b", + "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309", + "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e", + "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab", + "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d", + "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060", + "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d", + "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d", + "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4", + "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3", + "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6", + "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb", + "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94", + "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b", + "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496", + "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0", + "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319", + "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b", + "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856", + "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef", + "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680", + "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b", + "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42", + "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e", + "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597", + "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a", + "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8", + "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3", + "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736", + "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da", + "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126", + "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd", + "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5", + "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b", + "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026", + "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b", + "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc", + "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46", + "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2", + "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c", + "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe", + "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984", + "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a", + "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70", + "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca", + "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b", + "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91", + "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3", + "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84", + "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1", + "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5", + "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be", + "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f", + "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc", + "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9", + "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e", + "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141", + "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef", + "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22", + "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27", + "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e", + "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1" ], "markers": "python_version >= '3.8'", - "version": "==10.3.0" + "version": "==10.4.0" }, "pluggy": { "hashes": [ @@ -1370,11 +1389,11 @@ }, "portalocker": { "hashes": [ - "sha256:2b035aa7828e46c58e9b31390ee1f169b98e1066ab10b9a6a861fe7e25ee4f33", - "sha256:cfb86acc09b9aa7c3b43594e19be1345b9d16af3feb08bf92f23d4dce513a28e" + "sha256:48944147b2cd42520549bc1bb8fe44e220296e56f7c3d551bc6ecce69d9b0de1", + "sha256:49de8bc0a2f68ca98bf9e219c81a3e6b27097c7bf505a87c5a112ce1aaeb9b81" ], "markers": "python_version >= '3.8'", - "version": "==2.8.2" + "version": "==2.10.0" }, "prometheus-client": { "hashes": [ @@ -1386,28 +1405,28 @@ }, "prompt-toolkit": { "hashes": [ - "sha256:07c60ee4ab7b7e90824b61afa840c8f5aad2d46b3e2e10acc33d8ecc94a49089", - "sha256:a29b89160e494e3ea8622b09fa5897610b437884dcdcd054fdc1308883326c2a" + "sha256:0d7bfa67001d5e39d02c224b663abc33687405033a8c422d0d675a5a13361d10", + "sha256:1e1b29cb58080b1e69f207c893a1a7bf16d127a5c30c9d17a25a5d77792e5360" ], "markers": "python_full_version >= '3.7.0'", - "version": "==3.0.45" + "version": "==3.0.47" }, "psycopg": { "extras": [ "c" ], "hashes": [ - "sha256:92d7b78ad82426cdcf1a0440678209faa890c6e1721361c2f8901f0dccd62961", - "sha256:dca5e5521c859f6606686432ae1c94e8766d29cc91f2ee595378c510cc5b0731" + "sha256:dc8da6dc8729dacacda3cc2f17d2c9397a70a66cf0d2b69c91065d60d5f00cb7", + "sha256:ece385fb413a37db332f97c49208b36cf030ff02b199d7635ed2fbd378724175" ], - "markers": "python_version >= '3.7'", - "version": "==3.1.19" + "markers": "python_version >= '3.8'", + "version": "==3.2.1" }, "psycopg-c": { "hashes": [ - "sha256:8e90f53c430e7d661cb3a9298e2761847212ead1b24c5fb058fc9d0fd9616017" + "sha256:2d09943cc8a855c42c1e23b4298957b7ce8f27bf3683258c52fd139f601f7cda" ], - "version": "==3.1.19" + "version": "==3.2.1" }, "pycparser": { "hashes": [ @@ -1553,103 +1572,103 @@ }, "rapidfuzz": { "hashes": [ - "sha256:05ee0696ebf0dfe8f7c17f364d70617616afc7dafe366532730ca34056065b8a", - "sha256:0c34139df09a61b1b557ab65782ada971b4a3bce7081d1b2bee45b0a52231adb", - "sha256:0d055da0e801c71dd74ba81d72d41b2fa32afa182b9fea6b4b199d2ce937450d", - "sha256:119c010e20e561249b99ca2627f769fdc8305b07193f63dbc07bca0a6c27e892", - "sha256:143caf7247449055ecc3c1e874b69e42f403dfc049fc2f3d5f70e1daf21c1318", - "sha256:14c9f268ade4c88cf77ab007ad0fdf63699af071ee69378de89fff7aa3cae134", - "sha256:153f23c03d4917f6a1fc2fb56d279cc6537d1929237ff08ee7429d0e40464a18", - "sha256:15e4158ac4b3fb58108072ec35b8a69165f651ba1c8f43559a36d518dbf9fb3f", - "sha256:17ff7f7eecdb169f9236e3b872c96dbbaf116f7787f4d490abd34b0116e3e9c8", - "sha256:21047f55d674614eb4b0ab34e35c3dc66f36403b9fbfae645199c4a19d4ed447", - "sha256:256e07d3465173b2a91c35715a2277b1ee3ae0b9bbab4e519df6af78570741d0", - "sha256:282d55700a1a3d3a7980746eb2fcd48c9bbc1572ebe0840d0340d548a54d01fe", - "sha256:2bc8391749e5022cd9e514ede5316f86e332ffd3cfceeabdc0b17b7e45198a8c", - "sha256:2c1d3ef3878f871abe6826e386c3d61b5292ef5f7946fe646f4206b85836b5da", - "sha256:35b7286f177e4d8ba1e48b03612f928a3c4bdac78e5651379cec59f95d8651e6", - "sha256:3617d1aa7716c57d120b6adc8f7c989f2d65bc2b0cbd5f9288f1fc7bf469da11", - "sha256:378d1744828e27490a823fc6fe6ebfb98c15228d54826bf4e49e4b76eb5f5579", - "sha256:3bb6546e7b6bed1aefbe24f68a5fb9b891cc5aef61bca6c1a7b1054b7f0359bb", - "sha256:3d8a57261ef7996d5ced7c8cba9189ada3fbeffd1815f70f635e4558d93766cb", - "sha256:3e6d27dad8c990218b8cd4a5c99cbc8834f82bb46ab965a7265d5aa69fc7ced7", - "sha256:41a81a9f311dc83d22661f9b1a1de983b201322df0c4554042ffffd0f2040c37", - "sha256:505d99131afd21529293a9a7b91dfc661b7e889680b95534756134dc1cc2cd86", - "sha256:51fa1ba84653ab480a2e2044e2277bd7f0123d6693051729755addc0d015c44f", - "sha256:5276df395bd8497397197fca2b5c85f052d2e6a66ffc3eb0544dd9664d661f95", - "sha256:53c7f27cdf899e94712972237bda48cfd427646aa6f5d939bf45d084780e4c16", - "sha256:53e06e4b81f552da04940aa41fc556ba39dee5513d1861144300c36c33265b76", - "sha256:5410dc848c947a603792f4f51b904a3331cf1dc60621586bfbe7a6de72da1091", - "sha256:57e7c5bf7b61c7320cfa5dde1e60e678d954ede9bb7da8e763959b2138391401", - "sha256:58c6a4936190c558d5626b79fc9e16497e5df7098589a7e80d8bff68148ff096", - "sha256:5b422c0a6fe139d5447a0766268e68e6a2a8c2611519f894b1f31f0a392b9167", - "sha256:5c7ca5b6050f18fdcacdada2dc5fb7619ff998cd9aba82aed2414eee74ebe6cd", - "sha256:5d0abbacdb06e27ff803d7ae0bd0624020096802758068ebdcab9bd49cf53115", - "sha256:5d0cb272d43e6d3c0dedefdcd9d00007471f77b52d2787a4695e9dd319bb39d2", - "sha256:5d6a210347d6e71234af5c76d55eeb0348b026c9bb98fe7c1cca89bac50fb734", - "sha256:5e2b827258beefbe5d3f958243caa5a44cf46187eff0c20e0b2ab62d1550327a", - "sha256:5e33f779391caedcba2ba3089fb6e8e557feab540e9149a5c3f7fea7a3a7df37", - "sha256:604e0502a39cf8e67fa9ad239394dddad4cdef6d7008fdb037553817d420e108", - "sha256:6073a46f61479a89802e3f04655267caa6c14eb8ac9d81a635a13805f735ebc1", - "sha256:6175682a829c6dea4d35ed707f1dadc16513270ef64436568d03b81ccb6bdb74", - "sha256:65f45be77ec82da32ce5709a362e236ccf801615cc7163b136d1778cf9e31b14", - "sha256:67201c02efc596923ad950519e0b75ceb78d524177ea557134d6567b9ac2c283", - "sha256:754b719a4990735f66653c9e9261dcf52fd4d925597e43d6b9069afcae700d21", - "sha256:77b5c4f3e72924d7845f0e189c304270066d0f49635cf8a3938e122c437e58de", - "sha256:790b0b244f3213581d42baa2fed8875f9ee2b2f9b91f94f100ec80d15b140ba9", - "sha256:802ca2cc8aa6b8b34c6fdafb9e32540c1ba05fca7ad60b3bbd7ec89ed1797a87", - "sha256:8319838fb5b7b5f088d12187d91d152b9386ce3979ed7660daa0ed1bff953791", - "sha256:83ea7ca577d76778250421de61fb55a719e45b841deb769351fc2b1740763050", - "sha256:858ba57c05afd720db8088a8707079e8d024afe4644001fe0dbd26ef7ca74a65", - "sha256:8709918da8a88ad73c9d4dd0ecf24179a4f0ceba0bee21efc6ea21a8b5290349", - "sha256:875b581afb29a7213cf9d98cb0f98df862f1020bce9d9b2e6199b60e78a41d14", - "sha256:87bb8d84cb41446a808c4b5f746e29d8a53499381ed72f6c4e456fe0f81c80a8", - "sha256:8add34061e5cd561c72ed4febb5c15969e7b25bda2bb5102d02afc3abc1f52d0", - "sha256:8f917eaadf5388466a95f6a236f678a1588d231e52eda85374077101842e794e", - "sha256:930b4e6fdb4d914390141a2b99a6f77a52beacf1d06aa4e170cba3a98e24c1bc", - "sha256:93981895602cf5944d89d317ae3b1b4cc684d175a8ae2a80ce5b65615e72ddd0", - "sha256:959a15186d18425d19811bea86a8ffbe19fd48644004d29008e636631420a9b7", - "sha256:964c08481aec2fe574f0062e342924db2c6b321391aeb73d68853ed42420fd6d", - "sha256:a24603dd05fb4e3c09d636b881ce347e5f55f925a6b1b4115527308a323b9f8e", - "sha256:a39890013f6d5b056cc4bfdedc093e322462ece1027a57ef0c636537bdde7531", - "sha256:a4fc7b784cf987dbddc300cef70e09a92ed1bce136f7bb723ea79d7e297fe76d", - "sha256:a56da3aff97cb56fe85d9ca957d1f55dbac7c27da927a86a2a86d8a7e17f80aa", - "sha256:a93250bd8fae996350c251e1752f2c03335bb8a0a5b0c7e910a593849121a435", - "sha256:a96c5225e840f1587f1bac8fa6f67562b38e095341576e82b728a82021f26d62", - "sha256:aca21c0a34adee582775da997a600283e012a608a107398d80a42f9a57ad323d", - "sha256:acbe4b6f1ccd5b90c29d428e849aa4242e51bb6cab0448d5f3c022eb9a25f7b1", - "sha256:ad04a3f5384b82933213bba2459f6424decc2823df40098920856bdee5fd6e88", - "sha256:afe7c72d3f917b066257f7ff48562e5d462d865a25fbcabf40fca303a9fa8d35", - "sha256:b300708c917ce52f6075bdc6e05b07c51a085733650f14b732c087dc26e0aaad", - "sha256:b398ea66e8ed50451bce5997c430197d5e4b06ac4aa74602717f792d8d8d06e2", - "sha256:b3bd0d9632088c63a241f217742b1cf86e2e8ae573e01354775bd5016d12138c", - "sha256:b5bc0fdbf419493163c5c9cb147c5fbe95b8e25844a74a8807dcb1a125e630cf", - "sha256:b770f85eab24034e6ef7df04b2bfd9a45048e24f8a808e903441aa5abde8ecdd", - "sha256:b777cd910ceecd738adc58593d6ed42e73f60ad04ecdb4a841ae410b51c92e0e", - "sha256:b80eb7cbe62348c61d3e67e17057cddfd6defab168863028146e07d5a8b24a89", - "sha256:b8ab0fa653d9225195a8ff924f992f4249c1e6fa0aea563f685e71b81b9fcccf", - "sha256:bc1991b4cde6c9d3c0bbcb83d5581dc7621bec8c666c095c65b4277233265a82", - "sha256:bdb8c5b8e29238ec80727c2ba3b301efd45aa30c6a7001123a6647b8e6f77ea4", - "sha256:c52970f7784518d7c82b07a62a26e345d2de8c2bd8ed4774e13342e4b3ff4200", - "sha256:c6e65a301fcd19fbfbee3a514cc0014ff3f3b254b9fd65886e8a9d6957fb7bca", - "sha256:c8444e921bfc3757c475c4f4d7416a7aa69b2d992d5114fe55af21411187ab0d", - "sha256:cbe93ba1725a8d47d2b9dca6c1f435174859427fbc054d83de52aea5adc65729", - "sha256:cde6b9d9ba5007077ee321ec722fa714ebc0cbd9a32ccf0f4dd3cc3f20952d71", - "sha256:d36447d21b05f90282a6f98c5a33771805f9222e5d0441d03eb8824e33e5bbb4", - "sha256:d861bf326ee7dabc35c532a40384541578cd1ec1e1b7db9f9ecbba56eb76ca22", - "sha256:dc1037507810833646481f5729901a154523f98cbebb1157ba3a821012e16402", - "sha256:dd789100fc852cffac1449f82af0da139d36d84fd9faa4f79fc4140a88778343", - "sha256:de077c468c225d4c18f7188c47d955a16d65f21aab121cbdd98e3e2011002c37", - "sha256:e53ed2e9b32674ce96eed80b3b572db9fd87aae6742941fb8e4705e541d861ce", - "sha256:e6e4b9380ed4758d0cb578b0d1970c3f32dd9e87119378729a5340cb3169f879", - "sha256:efe6e200a75a792d37b960457904c4fce7c928a96ae9e5d21d2bd382fe39066e", - "sha256:f50fed4a9b0c9825ff37cf0bccafd51ff5792090618f7846a7650f21f85579c9", - "sha256:f57e8305c281e8c8bc720515540e0580355100c0a7a541105c6cafc5de71daae", - "sha256:fd84b7f652a5610733400307dc732f57c4a907080bef9520412e6d9b55bc9adc" + "sha256:005a02688a51c7d2451a2d41c79d737aa326ff54167211b78a383fc2aace2c2c", + "sha256:015b5080b999404fe06ec2cb4f40b0be62f0710c926ab41e82dfbc28e80675b4", + "sha256:01b42a8728c36011718da409aa86b84984396bf0ca3bfb6e62624f2014f6022c", + "sha256:04dbdfb0f0bfd3f99cf1e9e24fadc6ded2736d7933f32f1151b0f2abb38f9a25", + "sha256:07141aa6099e39d48637ce72a25b893fc1e433c50b3e837c75d8edf99e0c63e1", + "sha256:0772150d37bf018110351c01d032bf9ab25127b966a29830faa8ad69b7e2f651", + "sha256:098d231d4e51644d421a641f4a5f2f151f856f53c252b03516e01389b2bfef99", + "sha256:0c8fc973adde8ed52810f590410e03fb6f0b541bbaeb04c38d77e63442b2df4c", + "sha256:10e61bb7bc807968cef09a0e32ce253711a2d450a4dce7841d21d45330ffdb24", + "sha256:129627d730db2e11f76169344a032f4e3883d34f20829419916df31d6d1338b1", + "sha256:1424e238bc3f20e1759db1e0afb48a988a9ece183724bef91ea2a291c0b92a95", + "sha256:15bc397ee9a3ed1210b629b9f5f1da809244adc51ce620c504138c6e7095b7bd", + "sha256:167e745f98baa0f3034c13583e6302fb69249a01239f1483d68c27abb841e0a1", + "sha256:17ab8b7d10fde8dd763ad428aa961c0f30a1b44426e675186af8903b5d134fb0", + "sha256:1869c42e73e2a8910b479be204fa736418741b63ea2325f9cc583c30f2ded41a", + "sha256:1950f8597890c0c707cb7e0416c62a1cf03dcdb0384bc0b2dbda7e05efe738ec", + "sha256:1bc1a0f29f9119be7a8d3c720f1d2068317ae532e39e4f7f948607c3a6de8396", + "sha256:1df0f9e9239132a231c86ae4f545ec2b55409fa44470692fcfb36b1bd00157ad", + "sha256:20488ade4e1ddba3cfad04f400da7a9c1b91eff5b7bd3d1c50b385d78b587f4f", + "sha256:26aa7eece23e0df55fb75fbc2a8fb678322e07c77d1fd0e9540496e6e2b5f03e", + "sha256:2797fb847d89e04040d281cb1902cbeffbc4b5131a5c53fc0db490fd76b2a547", + "sha256:2c99d355f37f2b289e978e761f2f8efeedc2b14f4751d9ff7ee344a9a5ca98d9", + "sha256:31a2fc60bb2c7face4140010a7aeeafed18b4f9cdfa495cc644a68a8c60d1ff7", + "sha256:355fc4a268ffa07bab88d9adee173783ec8d20136059e028d2a9135c623c44e6", + "sha256:366bf8947b84e37f2f4cf31aaf5f37c39f620d8c0eddb8b633e6ba0129ca4a0a", + "sha256:3a2e75e41ee3274754d3b2163cc6c82cd95b892a85ab031f57112e09da36455f", + "sha256:3a555e3c841d6efa350f862204bb0a3fea0c006b8acc9b152b374fa36518a1c6", + "sha256:3a944e546a296a5fdcaabb537b01459f1b14d66f74e584cb2a91448bffadc3c1", + "sha256:3c522f462d9fc504f2ea8d82e44aa580e60566acc754422c829ad75c752fbf8d", + "sha256:3fe4545f89f8d6c27b6bbbabfe40839624873c08bd6700f63ac36970a179f8f5", + "sha256:3fe86b82b776554add8f900b6af202b74eb5efe8f25acdb8680a5c977608727f", + "sha256:40419e98b10cd6a00ce26e4837a67362f658fc3cd7a71bd8bd25c99f7ee8fea5", + "sha256:4968c8bd1df84b42f382549e6226710ad3476f976389839168db3e68fd373298", + "sha256:4a6c35f272ec9c430568dc8c1c30cb873f6bc96be2c79795e0bce6db4e0e101d", + "sha256:4c72078b5fdce34ba5753f9299ae304e282420e6455e043ad08e4488ca13a2b0", + "sha256:4d38b4e026fcd580e0bda6c0ae941e0e9a52c6bc66cdce0b8b0da61e1959f5f8", + "sha256:4d81a78f90269190b568a8353d4ea86015289c36d7e525cd4d43176c88eff429", + "sha256:4fb96ba96d58c668a17a06b5b5e8340fedc26188e87b0d229d38104556f30cd8", + "sha256:52e3d89377744dae68ed7c84ad0ddd3f5e891c82d48d26423b9e066fc835cc7c", + "sha256:6022674aa1747d6300f699cd7c54d7dae89bfe1f84556de699c4ac5df0838082", + "sha256:60ff67c690acecf381759c16cb06c878328fe2361ddf77b25d0e434ea48a29da", + "sha256:62ea7007941fb2795fff305ac858f3521ec694c829d5126e8f52a3e92ae75526", + "sha256:698e992436bf7f0afc750690c301215a36ff952a6dcd62882ec13b9a1ebf7a39", + "sha256:7fa714fb96ce9e70c37e64c83b62fe8307030081a0bfae74a76fac7ba0f91715", + "sha256:84fc1ee19fdad05770c897e793836c002344524301501d71ef2e832847425707", + "sha256:8d9d58689aca22057cf1a5851677b8a3ccc9b535ca008c7ed06dc6e1899f7844", + "sha256:8f37e9e1f17be193c41a31c864ad4cd3ebd2b40780db11cd5c04abf2bcf4201b", + "sha256:90a82143c14e9a14b723a118c9ef8d1bbc0c5a16b1ac622a1e6c916caff44dd8", + "sha256:9e618625ffc4660b26dc8e56225f8b966d5842fa190e70c60db6cd393e25b86e", + "sha256:9f256c8fb8f3125574c8c0c919ab0a1f75d7cba4d053dda2e762dcc36357969d", + "sha256:acc5ceca9c1e1663f3e6c23fb89a311f69b7615a40ddd7645e3435bf3082688a", + "sha256:ad04ae301129f0eb5b350a333accd375ce155a0c1cec85ab0ec01f770214e2e4", + "sha256:ad61676e9bdae677d577fe80ec1c2cea1d150c86be647e652551dcfe505b1113", + "sha256:addcdd3c3deef1bd54075bd7aba0a6ea9f1d01764a08620074b7a7b1e5447cb9", + "sha256:aee5f6b8321f90615c184bd8a4c676e9becda69b8e4e451a90923db719d6857c", + "sha256:aee9fc9e3bb488d040afc590c0a7904597bf4ccd50d1491c3f4a5e7e67e6cd2c", + "sha256:af65020c0dd48d0d8ae405e7e69b9d8ae306eb9b6249ca8bf511a13f465fad85", + "sha256:b0fc91ac59f4414d8542454dfd6287a154b8e6f1256718c898f695bdbb993467", + "sha256:b5d5072b548db1b313a07d62d88fe0b037bd2783c16607c647e01b070f6cf9e5", + "sha256:b712336ad6f2bacdbc9f1452556e8942269ef71f60a9e6883ef1726b52d9228a", + "sha256:b76f611935f15a209d3730c360c56b6df8911a9e81e6a38022efbfb96e433bab", + "sha256:bc01a223f6605737bec3202e94dcb1a449b6c76d46082cfc4aa980f2a60fd40e", + "sha256:c76da20481c906e08400ee9be230f9e611d5931a33707d9df40337c2655c84b5", + "sha256:c9b9793c19bdf38656c8eaefbcf4549d798572dadd70581379e666035c9df781", + "sha256:cb934363380c60f3a57d14af94325125cd8cded9822611a9f78220444034e36e", + "sha256:cd6ac61b74fdb9e23f04d5f068e6cf554f47e77228ca28aa2347a6ca8903972f", + "sha256:cf5bcf22e1f0fd273354462631d443ef78d677f7d2fc292de2aec72ae1473e66", + "sha256:d070ec5cf96b927c4dc5133c598c7ff6db3b833b363b2919b13417f1002560bc", + "sha256:d2c51955329bfccf99ae26f63d5928bf5be9fcfcd9f458f6847fd4b7e2b8986c", + "sha256:d395d46b80063d3b5d13c0af43d2c2cedf3ab48c6a0c2aeec715aa5455b0c632", + "sha256:d6481e099ff8c4edda85b8b9b5174c200540fd23c8f38120016c765a86fa01f5", + "sha256:d8a52fc50ded60d81117d7647f262c529659fb21d23e14ebfd0b35efa4f1b83d", + "sha256:d8e9130fe5d7c9182990b366ad78fd632f744097e753e08ace573877d67c32f8", + "sha256:db0bf0663b4b6da1507869722420ea9356b6195aa907228d6201303e69837af9", + "sha256:db1664eaff5d7d0f2542dd9c25d272478deaf2c8412e4ad93770e2e2d828e175", + "sha256:dcb72e5f9762fd469701a7e12e94b924af9004954f8c739f925cb19c00862e38", + "sha256:ded58612fe3b0e0d06e935eaeaf5a9fd27da8ba9ed3e2596307f40351923bf72", + "sha256:e272df61bee0a056a3daf99f9b1bd82cf73ace7d668894788139c868fdf37d6f", + "sha256:e590d5d5443cf56f83a51d3c4867bd1f6be8ef8cfcc44279522bcef3845b2a51", + "sha256:e61b03509b1a6eb31bc5582694f6df837d340535da7eba7bedb8ae42a2fcd0b9", + "sha256:e81e27e8c32a1e1278a4bb1ce31401bfaa8c2cc697a053b985a6f8d013df83ec", + "sha256:eb26d412271e5a76cdee1c2d6bf9881310665d3fe43b882d0ed24edfcb891a84", + "sha256:ed01378f605aa1f449bee82cd9c83772883120d6483e90aa6c5a4ce95dc5c3aa", + "sha256:f16f5d1c4f02fab18366f2d703391fcdbd87c944ea10736ca1dc3d70d8bd2d8b", + "sha256:f187a9c3b940ce1ee324710626daf72c05599946bd6748abe9e289f1daa9a077", + "sha256:f2464bb120f135293e9a712e342c43695d3d83168907df05f8c4ead1612310c7", + "sha256:f2d2846f3980445864c7e8b8818a29707fcaff2f0261159ef6b7bd27ba139296", + "sha256:f46a22506f17c0433e349f2d1dc11907c393d9b3601b91d4e334fa9a439a6a4d", + "sha256:f5fdc09cf6e9d8eac3ce48a4615b3a3ee332ea84ac9657dbbefef913b13e632f", + "sha256:f74ed072c2b9dc6743fb19994319d443a4330b0e64aeba0aa9105406c7c5b9c2", + "sha256:f75639277304e9b75e6a7b3c07042d2264e16740a11e449645689ed28e9c2124", + "sha256:fbebf1791a71a2e89f5c12b78abddc018354d5859e305ec3372fdae14f80a826", + "sha256:fe833493fb5cc5682c823ea3e2f7066b07612ee8f61ecdf03e1268f262106cdd" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==3.9.3" + "version": "==3.9.4" }, "redis": { "extras": [ @@ -1659,7 +1678,6 @@ "sha256:0e479e24da960c690be5d9b96d21f7b918a98c0cf49af3b6fafaa0753f93a0db", "sha256:8f611490b93c8109b50adc317b31bfd84fff31def3475b92e7e80bf39f48175b" ], - "index": "pypi", "markers": "python_version >= '3.7'", "version": "==5.0.7" }, @@ -1750,11 +1768,11 @@ }, "reportlab": { "hashes": [ - "sha256:474fb28d63431a5d47d75c90d580393050df7d491a09c7877df3291a2e9f6d0a", - "sha256:53630f9d25a7938def3e6a93d723b72a7a5921d34d23cf7a0930adeb2cb0e6c1" + "sha256:765eecbdd68491c56947e29c38b8b69b834ee5dbbdd2fb7409f08ebdebf04428", + "sha256:927616931637e2f13e2ee3b3b6316d7a07803170e258621cff7d138bde17fbb5" ], "markers": "python_version >= '3.7' and python_version < '4'", - "version": "==4.2.0" + "version": "==4.2.2" }, "requests": { "hashes": [ @@ -1781,31 +1799,31 @@ }, "scikit-learn": { "hashes": [ - "sha256:057b991ac64b3e75c9c04b5f9395eaf19a6179244c089afdebaad98264bff37c", - "sha256:118a8d229a41158c9f90093e46b3737120a165181a1b58c03461447aa4657415", - "sha256:12e40ac48555e6b551f0a0a5743cc94cc5a765c9513fe708e01f0aa001da2801", - "sha256:174beb56e3e881c90424e21f576fa69c4ffcf5174632a79ab4461c4c960315ac", - "sha256:1b94d6440603752b27842eda97f6395f570941857456c606eb1d638efdb38184", - "sha256:1f77547165c00625551e5c250cefa3f03f2fc92c5e18668abd90bfc4be2e0bff", - "sha256:261fe334ca48f09ed64b8fae13f9b46cc43ac5f580c4a605cbb0a517456c8f71", - "sha256:2a65af2d8a6cce4e163a7951a4cfbfa7fceb2d5c013a4b593686c7f16445cf9d", - "sha256:2c75ea812cd83b1385bbfa94ae971f0d80adb338a9523f6bbcb5e0b0381151d4", - "sha256:40fb7d4a9a2db07e6e0cae4dc7bdbb8fada17043bac24104d8165e10e4cff1a2", - "sha256:460806030c666addee1f074788b3978329a5bfdc9b7d63e7aad3f6d45c67a210", - "sha256:47132440050b1c5beb95f8ba0b2402bbd9057ce96ec0ba86f2f445dd4f34df67", - "sha256:4c0c56c3005f2ec1db3787aeaabefa96256580678cec783986836fc64f8ff622", - "sha256:789e3db01c750ed6d496fa2db7d50637857b451e57bcae863bff707c1247bef7", - "sha256:855fc5fa8ed9e4f08291203af3d3e5fbdc4737bd617a371559aaa2088166046e", - "sha256:a03b09f9f7f09ffe8c5efffe2e9de1196c696d811be6798ad5eddf323c6f4d40", - "sha256:a3a10e1d9e834e84d05e468ec501a356226338778769317ee0b84043c0d8fb06", - "sha256:a90c5da84829a0b9b4bf00daf62754b2be741e66b5946911f5bdfaa869fcedd6", - "sha256:d82c2e573f0f2f2f0be897e7a31fcf4e73869247738ab8c3ce7245549af58ab8", - "sha256:df8ccabbf583315f13160a4bb06037bde99ea7d8211a69787a6b7c5d4ebb6fc3", - "sha256:f405c4dae288f5f6553b10c4ac9ea7754d5180ec11e296464adb5d6ac68b6ef5" + "sha256:0828673c5b520e879f2af6a9e99eee0eefea69a2188be1ca68a6121b809055c1", + "sha256:0ea5d40c0e3951df445721927448755d3fe1d80833b0b7308ebff5d2a45e6414", + "sha256:10e49170691514a94bb2e03787aa921b82dbc507a4ea1f20fd95557862c98dc1", + "sha256:154297ee43c0b83af12464adeab378dee2d0a700ccd03979e2b821e7dd7cc1c2", + "sha256:161808750c267b77b4a9603cf9c93579c7a74ba8486b1336034c2f1579546d21", + "sha256:1bd8d3a19d4bd6dc5a7d4f358c8c3a60934dc058f363c34c0ac1e9e12a31421d", + "sha256:1ff4ba34c2abff5ec59c803ed1d97d61b036f659a17f55be102679e88f926fac", + "sha256:508907e5f81390e16d754e8815f7497e52139162fd69c4fdbd2dfa5d6cc88915", + "sha256:5944ce1faada31c55fb2ba20a5346b88e36811aab504ccafb9f0339e9f780395", + "sha256:5f57428de0c900a98389c4a433d4a3cf89de979b3aa24d1c1d251802aa15e44d", + "sha256:689b6f74b2c880276e365fe84fe4f1befd6a774f016339c65655eaff12e10cbf", + "sha256:781586c414f8cc58e71da4f3d7af311e0505a683e112f2f62919e3019abd3745", + "sha256:7b073a27797a283187a4ef4ee149959defc350b46cbf63a84d8514fe16b69855", + "sha256:88e0672c7ac21eb149d409c74cc29f1d611d5158175846e7a9c2427bd12b3956", + "sha256:909144d50f367a513cee6090873ae582dba019cb3fca063b38054fa42704c3a4", + "sha256:97625f217c5c0c5d0505fa2af28ae424bd37949bb2f16ace3ff5f2f81fb4498b", + "sha256:9a07f90846313a7639af6a019d849ff72baadfa4c74c778821ae0fad07b7275b", + "sha256:b59e3e62d2be870e5c74af4e793293753565c7383ae82943b83383fdcf5cc5c1", + "sha256:b5e865e9bd59396220de49cb4a57b17016256637c61b4c5cc81aaf16bc123bbe", + "sha256:da3f404e9e284d2b0a157e1b56b6566a34eb2798205cba35a211df3296ab7a74", + "sha256:f5b213bc29cc30a89a3130393b0e39c847a15d769d6e59539cd86b75d276b1a7" ], "index": "pypi", "markers": "python_version >= '3.9'", - "version": "==1.5.0" + "version": "==1.5.1" }, "scipy": { "hashes": [ @@ -1988,7 +2006,6 @@ "sha256:d9a566c40b89757c9aa8e6f032bcdb8ca8795d7c1a9762910c722b1635c9de4d", "sha256:e2e20b9113cd7293f164dc46fffb13535266e713cdb87bd2d15ddb336e96cfc4" ], - "index": "pypi", "markers": "python_version >= '3.8'", "version": "==6.4.1" }, @@ -2030,7 +2047,6 @@ "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472", "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168" ], - "index": "pypi", "markers": "python_version >= '3.8'", "version": "==2.2.2" }, @@ -2527,11 +2543,11 @@ }, "certifi": { "hashes": [ - "sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516", - "sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56" + "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b", + "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90" ], "markers": "python_version >= '3.6'", - "version": "==2024.6.2" + "version": "==2024.7.4" }, "cffi": { "hashes": [ @@ -2724,99 +2740,99 @@ "toml" ], "hashes": [ - "sha256:015eddc5ccd5364dcb902eaecf9515636806fa1e0d5bef5769d06d0f31b54523", - "sha256:04aefca5190d1dc7a53a4c1a5a7f8568811306d7a8ee231c42fb69215571944f", - "sha256:05ac5f60faa0c704c0f7e6a5cbfd6f02101ed05e0aee4d2822637a9e672c998d", - "sha256:0bbddc54bbacfc09b3edaec644d4ac90c08ee8ed4844b0f86227dcda2d428fcb", - "sha256:1d2a830ade66d3563bb61d1e3c77c8def97b30ed91e166c67d0632c018f380f0", - "sha256:239a4e75e09c2b12ea478d28815acf83334d32e722e7433471fbf641c606344c", - "sha256:244f509f126dc71369393ce5fea17c0592c40ee44e607b6d855e9c4ac57aac98", - "sha256:25a5caf742c6195e08002d3b6c2dd6947e50efc5fc2c2205f61ecb47592d2d83", - "sha256:296a7d9bbc598e8744c00f7a6cecf1da9b30ae9ad51c566291ff1314e6cbbed8", - "sha256:2e079c9ec772fedbade9d7ebc36202a1d9ef7291bc9b3a024ca395c4d52853d7", - "sha256:33ca90a0eb29225f195e30684ba4a6db05dbef03c2ccd50b9077714c48153cac", - "sha256:33fc65740267222fc02975c061eb7167185fef4cc8f2770267ee8bf7d6a42f84", - "sha256:341dd8f61c26337c37988345ca5c8ccabeff33093a26953a1ac72e7d0103c4fb", - "sha256:34d6d21d8795a97b14d503dcaf74226ae51eb1f2bd41015d3ef332a24d0a17b3", - "sha256:3538d8fb1ee9bdd2e2692b3b18c22bb1c19ffbefd06880f5ac496e42d7bb3884", - "sha256:38a3b98dae8a7c9057bd91fbf3415c05e700a5114c5f1b5b0ea5f8f429ba6614", - "sha256:3d5a67f0da401e105753d474369ab034c7bae51a4c31c77d94030d59e41df5bd", - "sha256:50084d3516aa263791198913a17354bd1dc627d3c1639209640b9cac3fef5807", - "sha256:55f689f846661e3f26efa535071775d0483388a1ccfab899df72924805e9e7cd", - "sha256:5bc5a8c87714b0c67cfeb4c7caa82b2d71e8864d1a46aa990b5588fa953673b8", - "sha256:62bda40da1e68898186f274f832ef3e759ce929da9a9fd9fcf265956de269dbc", - "sha256:705f3d7c2b098c40f5b81790a5fedb274113373d4d1a69e65f8b68b0cc26f6db", - "sha256:75e3f4e86804023e991096b29e147e635f5e2568f77883a1e6eed74512659ab0", - "sha256:7b2a19e13dfb5c8e145c7a6ea959485ee8e2204699903c88c7d25283584bfc08", - "sha256:7cec2af81f9e7569280822be68bd57e51b86d42e59ea30d10ebdbb22d2cb7232", - "sha256:8383a6c8cefba1b7cecc0149415046b6fc38836295bc4c84e820872eb5478b3d", - "sha256:8c836309931839cca658a78a888dab9676b5c988d0dd34ca247f5f3e679f4e7a", - "sha256:8e317953bb4c074c06c798a11dbdd2cf9979dbcaa8ccc0fa4701d80042d4ebf1", - "sha256:923b7b1c717bd0f0f92d862d1ff51d9b2b55dbbd133e05680204465f454bb286", - "sha256:990fb20b32990b2ce2c5f974c3e738c9358b2735bc05075d50a6f36721b8f303", - "sha256:9aad68c3f2566dfae84bf46295a79e79d904e1c21ccfc66de88cd446f8686341", - "sha256:a5812840d1d00eafae6585aba38021f90a705a25b8216ec7f66aebe5b619fb84", - "sha256:a6519d917abb15e12380406d721e37613e2a67d166f9fb7e5a8ce0375744cd45", - "sha256:ab0b028165eea880af12f66086694768f2c3139b2c31ad5e032c8edbafca6ffc", - "sha256:aea7da970f1feccf48be7335f8b2ca64baf9b589d79e05b9397a06696ce1a1ec", - "sha256:b1196e13c45e327d6cd0b6e471530a1882f1017eb83c6229fc613cd1a11b53cd", - "sha256:b368e1aee1b9b75757942d44d7598dcd22a9dbb126affcbba82d15917f0cc155", - "sha256:bde997cac85fcac227b27d4fb2c7608a2c5f6558469b0eb704c5726ae49e1c52", - "sha256:c4c2872b3c91f9baa836147ca33650dc5c172e9273c808c3c3199c75490e709d", - "sha256:c59d2ad092dc0551d9f79d9d44d005c945ba95832a6798f98f9216ede3d5f485", - "sha256:d1da0a2e3b37b745a2b2a678a4c796462cf753aebf94edcc87dcc6b8641eae31", - "sha256:d8b7339180d00de83e930358223c617cc343dd08e1aa5ec7b06c3a121aec4e1d", - "sha256:dd4b3355b01273a56b20c219e74e7549e14370b31a4ffe42706a8cda91f19f6d", - "sha256:e08c470c2eb01977d221fd87495b44867a56d4d594f43739a8028f8646a51e0d", - "sha256:f5102a92855d518b0996eb197772f5ac2a527c0ec617124ad5242a3af5e25f85", - "sha256:f542287b1489c7a860d43a7d8883e27ca62ab84ca53c965d11dac1d3a1fab7ce", - "sha256:f78300789a708ac1f17e134593f577407d52d0417305435b134805c4fb135adb", - "sha256:f81bc26d609bf0fbc622c7122ba6307993c83c795d2d6f6f6fd8c000a770d974", - "sha256:f836c174c3a7f639bded48ec913f348c4761cbf49de4a20a956d3431a7c9cb24", - "sha256:fa21a04112c59ad54f69d80e376f7f9d0f5f9123ab87ecd18fbb9ec3a2beed56", - "sha256:fcf7d1d6f5da887ca04302db8e0e0cf56ce9a5e05f202720e49b3e8157ddb9a9", - "sha256:fd27d8b49e574e50caa65196d908f80e4dff64d7e592d0c59788b45aad7e8b35" + "sha256:018a12985185038a5b2bcafab04ab833a9a0f2c59995b3cec07e10074c78635f", + "sha256:02ff6e898197cc1e9fa375581382b72498eb2e6d5fc0b53f03e496cfee3fac6d", + "sha256:042183de01f8b6d531e10c197f7f0315a61e8d805ab29c5f7b51a01d62782747", + "sha256:1014fbf665fef86cdfd6cb5b7371496ce35e4d2a00cda501cf9f5b9e6fced69f", + "sha256:1137f46adb28e3813dec8c01fefadcb8c614f33576f672962e323b5128d9a68d", + "sha256:16852febd96acd953b0d55fc842ce2dac1710f26729b31c80b940b9afcd9896f", + "sha256:2174e7c23e0a454ffe12267a10732c273243b4f2d50d07544a91198f05c48f47", + "sha256:2214ee920787d85db1b6a0bd9da5f8503ccc8fcd5814d90796c2f2493a2f4d2e", + "sha256:3257fdd8e574805f27bb5342b77bc65578e98cbc004a92232106344053f319ba", + "sha256:3684bc2ff328f935981847082ba4fdc950d58906a40eafa93510d1b54c08a66c", + "sha256:3a6612c99081d8d6134005b1354191e103ec9705d7ba2754e848211ac8cacc6b", + "sha256:3d7564cc09dd91b5a6001754a5b3c6ecc4aba6323baf33a12bd751036c998be4", + "sha256:44da56a2589b684813f86d07597fdf8a9c6ce77f58976727329272f5a01f99f7", + "sha256:5013ed890dc917cef2c9f765c4c6a8ae9df983cd60dbb635df8ed9f4ebc9f555", + "sha256:54317c2b806354cbb2dc7ac27e2b93f97096912cc16b18289c5d4e44fc663233", + "sha256:56b4eafa21c6c175b3ede004ca12c653a88b6f922494b023aeb1e836df953ace", + "sha256:581ea96f92bf71a5ec0974001f900db495488434a6928a2ca7f01eee20c23805", + "sha256:5cd64adedf3be66f8ccee418473c2916492d53cbafbfcff851cbec5a8454b136", + "sha256:5df54843b88901fdc2f598ac06737f03d71168fd1175728054c8f5a2739ac3e4", + "sha256:65e528e2e921ba8fd67d9055e6b9f9e34b21ebd6768ae1c1723f4ea6ace1234d", + "sha256:6aae5cce399a0f065da65c7bb1e8abd5c7a3043da9dceb429ebe1b289bc07806", + "sha256:6cfb5a4f556bb51aba274588200a46e4dd6b505fb1a5f8c5ae408222eb416f99", + "sha256:7076b4b3a5f6d2b5d7f1185fde25b1e54eb66e647a1dfef0e2c2bfaf9b4c88c8", + "sha256:73ca8fbc5bc622e54627314c1a6f1dfdd8db69788f3443e752c215f29fa87a0b", + "sha256:79b356f3dd5b26f3ad23b35c75dbdaf1f9e2450b6bcefc6d0825ea0aa3f86ca5", + "sha256:7a892be37ca35eb5019ec85402c3371b0f7cda5ab5056023a7f13da0961e60da", + "sha256:8192794d120167e2a64721d88dbd688584675e86e15d0569599257566dec9bf0", + "sha256:820bc841faa502e727a48311948e0461132a9c8baa42f6b2b84a29ced24cc078", + "sha256:8f894208794b164e6bd4bba61fc98bf6b06be4d390cf2daacfa6eca0a6d2bb4f", + "sha256:a04e990a2a41740b02d6182b498ee9796cf60eefe40cf859b016650147908029", + "sha256:a44963520b069e12789d0faea4e9fdb1e410cdc4aab89d94f7f55cbb7fef0353", + "sha256:a6bb74ed465d5fb204b2ec41d79bcd28afccf817de721e8a807d5141c3426638", + "sha256:ab73b35e8d109bffbda9a3e91c64e29fe26e03e49addf5b43d85fc426dde11f9", + "sha256:aea072a941b033813f5e4814541fc265a5c12ed9720daef11ca516aeacd3bd7f", + "sha256:b1ccf5e728ccf83acd313c89f07c22d70d6c375a9c6f339233dcf792094bcbf7", + "sha256:b385d49609f8e9efc885790a5a0e89f2e3ae042cdf12958b6034cc442de428d3", + "sha256:b3d45ff86efb129c599a3b287ae2e44c1e281ae0f9a9bad0edc202179bcc3a2e", + "sha256:b4a474f799456e0eb46d78ab07303286a84a3140e9700b9e154cfebc8f527016", + "sha256:b95c3a8cb0463ba9f77383d0fa8c9194cf91f64445a63fc26fb2327e1e1eb088", + "sha256:c5986ee7ea0795a4095ac4d113cbb3448601efca7f158ec7f7087a6c705304e4", + "sha256:cdd31315fc20868c194130de9ee6bfd99755cc9565edff98ecc12585b90be882", + "sha256:cef4649ec906ea7ea5e9e796e68b987f83fa9a718514fe147f538cfeda76d7a7", + "sha256:d05c16cf4b4c2fc880cb12ba4c9b526e9e5d5bb1d81313d4d732a5b9fe2b9d53", + "sha256:d2e344d6adc8ef81c5a233d3a57b3c7d5181f40e79e05e1c143da143ccb6377d", + "sha256:d45d3cbd94159c468b9b8c5a556e3f6b81a8d1af2a92b77320e887c3e7a5d080", + "sha256:db14f552ac38f10758ad14dd7b983dbab424e731588d300c7db25b6f89e335b5", + "sha256:dbc5958cb471e5a5af41b0ddaea96a37e74ed289535e8deca404811f6cb0bc3d", + "sha256:ddbd2f9713a79e8e7242d7c51f1929611e991d855f414ca9996c20e44a895f7c", + "sha256:e16f3d6b491c48c5ae726308e6ab1e18ee830b4cdd6913f2d7f77354b33f91c8", + "sha256:e2afe743289273209c992075a5a4913e8d007d569a406ffed0bd080ea02b0633", + "sha256:e564c2cf45d2f44a9da56f4e3a26b2236504a496eb4cb0ca7221cd4cc7a9aca9", + "sha256:ed550e7442f278af76d9d65af48069f1fb84c9f745ae249c1a183c1e9d1b025c" ], "markers": "python_version >= '3.8'", - "version": "==7.5.3" + "version": "==7.5.4" }, "cryptography": { "hashes": [ - "sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55", - "sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785", - "sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b", - "sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886", - "sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82", - "sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1", - "sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda", - "sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f", - "sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68", - "sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60", - "sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7", - "sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd", - "sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582", - "sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc", - "sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858", - "sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b", - "sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2", - "sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678", - "sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13", - "sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4", - "sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8", - "sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604", - "sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477", - "sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e", - "sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a", - "sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9", - "sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14", - "sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda", - "sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da", - "sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562", - "sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2", - "sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9" + "sha256:013629ae70b40af70c9a7a5db40abe5d9054e6f4380e50ce769947b73bf3caad", + "sha256:2346b911eb349ab547076f47f2e035fc8ff2c02380a7cbbf8d87114fa0f1c583", + "sha256:2f66d9cd9147ee495a8374a45ca445819f8929a3efcd2e3df6428e46c3cbb10b", + "sha256:2f88d197e66c65be5e42cd72e5c18afbfae3f741742070e3019ac8f4ac57262c", + "sha256:31f721658a29331f895a5a54e7e82075554ccfb8b163a18719d342f5ffe5ecb1", + "sha256:343728aac38decfdeecf55ecab3264b015be68fc2816ca800db649607aeee648", + "sha256:5226d5d21ab681f432a9c1cf8b658c0cb02533eece706b155e5fbd8a0cdd3949", + "sha256:57080dee41209e556a9a4ce60d229244f7a66ef52750f813bfbe18959770cfba", + "sha256:5a94eccb2a81a309806027e1670a358b99b8fe8bfe9f8d329f27d72c094dde8c", + "sha256:6b7c4f03ce01afd3b76cf69a5455caa9cfa3de8c8f493e0d3ab7d20611c8dae9", + "sha256:7016f837e15b0a1c119d27ecd89b3515f01f90a8615ed5e9427e30d9cdbfed3d", + "sha256:81884c4d096c272f00aeb1f11cf62ccd39763581645b0812e99a91505fa48e0c", + "sha256:81d8a521705787afe7a18d5bfb47ea9d9cc068206270aad0b96a725022e18d2e", + "sha256:8d09d05439ce7baa8e9e95b07ec5b6c886f548deb7e0f69ef25f64b3bce842f2", + "sha256:961e61cefdcb06e0c6d7e3a1b22ebe8b996eb2bf50614e89384be54c48c6b63d", + "sha256:9c0c1716c8447ee7dbf08d6db2e5c41c688544c61074b54fc4564196f55c25a7", + "sha256:a0608251135d0e03111152e41f0cc2392d1e74e35703960d4190b2e0f4ca9c70", + "sha256:a0c5b2b0585b6af82d7e385f55a8bc568abff8923af147ee3c07bd8b42cda8b2", + "sha256:ad803773e9df0b92e0a817d22fd8a3675493f690b96130a5e24f1b8fabbea9c7", + "sha256:b297f90c5723d04bcc8265fc2a0f86d4ea2e0f7ab4b6994459548d3a6b992a14", + "sha256:ba4f0a211697362e89ad822e667d8d340b4d8d55fae72cdd619389fb5912eefe", + "sha256:c4783183f7cb757b73b2ae9aed6599b96338eb957233c58ca8f49a49cc32fd5e", + "sha256:c9bb2ae11bfbab395bdd072985abde58ea9860ed84e59dbc0463a5d0159f5b71", + "sha256:cafb92b2bc622cd1aa6a1dce4b93307792633f4c5fe1f46c6b97cf67073ec961", + "sha256:d45b940883a03e19e944456a558b67a41160e367a719833c53de6911cabba2b7", + "sha256:dc0fdf6787f37b1c6b08e6dfc892d9d068b5bdb671198c72072828b80bd5fe4c", + "sha256:dea567d1b0e8bc5764b9443858b673b734100c2871dc93163f58c46a97a83d28", + "sha256:dec9b018df185f08483f294cae6ccac29e7a6e0678996587363dc352dc65c842", + "sha256:e3ec3672626e1b9e55afd0df6d774ff0e953452886e06e0f1eb7eb0c832e8902", + "sha256:e599b53fd95357d92304510fb7bda8523ed1f79ca98dce2f43c115950aa78801", + "sha256:fa76fbb7596cc5839320000cdd5d0955313696d9511debab7ee7278fc8b5c84a", + "sha256:fff12c88a672ab9c9c1cf7b0c80e3ad9e2ebd9d828d955c126be4fd3e5578c9e" ], "markers": "python_version >= '3.7'", - "version": "==42.0.7" + "version": "==42.0.8" }, "daphne": { "hashes": [ @@ -2861,20 +2877,20 @@ }, "faker": { "hashes": [ - "sha256:0158d47e955b6ec22134c0a74ebb7ed34fe600896208bafbf1008db831b17f04", - "sha256:bcbe31eee5ef4bbf87ce36c4eba53c01e2a1d912fde2a4d3528b430d2beb784f" + "sha256:0f60978314973de02c00474c2ae899785a42b2cf4f41b7987e93c132a2b8a4a9", + "sha256:886ee28219be96949cd21ecc96c4c742ee1680e77f687b095202c8def1a08f06" ], "markers": "python_version >= '3.8'", - "version": "==25.3.0" + "version": "==26.0.0" }, "filelock": { "hashes": [ - "sha256:43339835842f110ca7ae60f1e1c160714c5a6afd15a2873419ab185334975c0f", - "sha256:6ea72da3be9b8c82afd3edcf99f2fffbb5076335a5ae4d03248bb5b6c3eae78a" + "sha256:2207938cbc1844345cb01a5a95524dae30f0ce089eba5b00378295a17e3e90cb", + "sha256:6ca1fffae96225dab4c6eaf1c4f4f28cd2568d3ec2a44e15a08520504de468e7" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==3.14.0" + "version": "==3.15.4" }, "ghp-import": { "hashes": [ @@ -2919,11 +2935,11 @@ }, "identify": { "hashes": [ - "sha256:37d93f380f4de590500d9dba7db359d0d3da95ffe7f9de1753faa159e71e7dfa", - "sha256:e5e00f54165f9047fbebeb4a560f9acfb8af4c88232be60a488e9b68d122745d" + "sha256:cb171c685bdc31bcc4c1734698736a7d5b6c8bf2e0c15117f4d469c8640ae5cf", + "sha256:e79ae4406387a9d300332b5fd366d8994f1525e8414984e1a59e058b2eda2dd0" ], "markers": "python_version >= '3.8'", - "version": "==2.5.36" + "version": "==2.6.0" }, "idna": { "hashes": [ @@ -2943,11 +2959,11 @@ }, "importlib-metadata": { "hashes": [ - "sha256:30962b96c0c223483ed6cc7280e7f0199feb01a0e40cfae4d4450fc6fab1f570", - "sha256:b78938b926ee8d5f020fc4772d487045805a55ddbad2ecf21c6d60938dc7fcd2" + "sha256:15584cf2b1bf449d98ff8a6ff1abef57bf20f3ac6454f431736cd3e660921b2f", + "sha256:188bd24e4c346d3f0a933f275c2fec67050326a856b9a359881d7c2a697e8812" ], "markers": "python_version < '3.10'", - "version": "==7.1.0" + "version": "==8.0.0" }, "incremental": { "hashes": [ @@ -3080,12 +3096,12 @@ }, "mkdocs-material": { "hashes": [ - "sha256:a7d4a35f6d4a62b0c43a0cfe7e987da0980c13587b5bc3c26e690ad494427ec0", - "sha256:af8cc263fafa98bb79e9e15a8c966204abf15164987569bd1175fd66a7705182" + "sha256:9cba305283ad1600e3d0a67abe72d7a058b54793b47be39930911a588fe0336b", + "sha256:ff48b11b2a9f705dd210409ec3b418ab443dd36d96915bcba45a41f10ea27bfd" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==9.5.27" + "version": "==9.5.28" }, "mkdocs-material-extensions": { "hashes": [ @@ -3097,53 +3113,62 @@ }, "nodeenv": { "hashes": [ - "sha256:07f144e90dae547bf0d4ee8da0ee42664a42a04e02ed68e06324348dafe4bdb1", - "sha256:508ecec98f9f3330b636d4448c0f1a56fc68017c68f1e7857ebc52acf0eb879a" + "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", + "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9" ], "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'", - "version": "==1.9.0" + "version": "==1.9.1" }, "numpy": { "hashes": [ - "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b", - "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818", - "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20", - "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0", - "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", - "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", - "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea", - "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c", - "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71", - "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110", - "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be", - "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a", - "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", - "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5", - "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed", - "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd", - "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c", - "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e", - "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0", - "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c", - "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a", - "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b", - "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", - "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6", - "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", - "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a", - "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30", - "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218", - "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", - "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", - "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2", - "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", - "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764", - "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef", - "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3", - "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f" + "sha256:04494f6ec467ccb5369d1808570ae55f6ed9b5809d7f035059000a37b8d7e86f", + "sha256:0a43f0974d501842866cc83471bdb0116ba0dffdbaac33ec05e6afed5b615238", + "sha256:0e50842b2295ba8414c8c1d9d957083d5dfe9e16828b37de883f51fc53c4016f", + "sha256:0ec84b9ba0654f3b962802edc91424331f423dcf5d5f926676e0150789cb3d95", + "sha256:17067d097ed036636fa79f6a869ac26df7db1ba22039d962422506640314933a", + "sha256:1cde1753efe513705a0c6d28f5884e22bdc30438bf0085c5c486cdaff40cd67a", + "sha256:1e72728e7501a450288fc8e1f9ebc73d90cfd4671ebbd631f3e7857c39bd16f2", + "sha256:2635dbd200c2d6faf2ef9a0d04f0ecc6b13b3cad54f7c67c61155138835515d2", + "sha256:2ce46fd0b8a0c947ae047d222f7136fc4d55538741373107574271bc00e20e8f", + "sha256:34f003cb88b1ba38cb9a9a4a3161c1604973d7f9d5552c38bc2f04f829536609", + "sha256:354f373279768fa5a584bac997de6a6c9bc535c482592d7a813bb0c09be6c76f", + "sha256:38ecb5b0582cd125f67a629072fed6f83562d9dd04d7e03256c9829bdec027ad", + "sha256:3e8e01233d57639b2e30966c63d36fcea099d17c53bf424d77f088b0f4babd86", + "sha256:3f6bed7f840d44c08ebdb73b1825282b801799e325bcbdfa6bc5c370e5aecc65", + "sha256:4554eb96f0fd263041baf16cf0881b3f5dafae7a59b1049acb9540c4d57bc8cb", + "sha256:46e161722e0f619749d1cd892167039015b2c2817296104487cd03ed4a955995", + "sha256:49d9f7d256fbc804391a7f72d4a617302b1afac1112fac19b6c6cec63fe7fe8a", + "sha256:4d2f62e55a4cd9c58c1d9a1c9edaedcd857a73cb6fda875bf79093f9d9086f85", + "sha256:5f64641b42b2429f56ee08b4f427a4d2daf916ec59686061de751a55aafa22e4", + "sha256:63b92c512d9dbcc37f9d81b123dec99fdb318ba38c8059afc78086fe73820275", + "sha256:6d7696c615765091cc5093f76fd1fa069870304beaccfd58b5dcc69e55ef49c1", + "sha256:79e843d186c8fb1b102bef3e2bc35ef81160ffef3194646a7fdd6a73c6b97196", + "sha256:821eedb7165ead9eebdb569986968b541f9908979c2da8a4967ecac4439bae3d", + "sha256:84554fc53daa8f6abf8e8a66e076aff6ece62de68523d9f665f32d2fc50fd66e", + "sha256:8d83bb187fb647643bd56e1ae43f273c7f4dbcdf94550d7938cfc32566756514", + "sha256:903703372d46bce88b6920a0cd86c3ad82dae2dbef157b5fc01b70ea1cfc430f", + "sha256:9416a5c2e92ace094e9f0082c5fd473502c91651fb896bc17690d6fc475128d6", + "sha256:9a1712c015831da583b21c5bfe15e8684137097969c6d22e8316ba66b5baabe4", + "sha256:9c27f0946a3536403efb0e1c28def1ae6730a72cd0d5878db38824855e3afc44", + "sha256:a356364941fb0593bb899a1076b92dfa2029f6f5b8ba88a14fd0984aaf76d0df", + "sha256:a7039a136017eaa92c1848152827e1424701532ca8e8967fe480fe1569dae581", + "sha256:acd3a644e4807e73b4e1867b769fbf1ce8c5d80e7caaef0d90dcdc640dfc9787", + "sha256:ad0c86f3455fbd0de6c31a3056eb822fc939f81b1618f10ff3406971893b62a5", + "sha256:b4c76e3d4c56f145d41b7b6751255feefae92edbc9a61e1758a98204200f30fc", + "sha256:b6f6a8f45d0313db07d6d1d37bd0b112f887e1369758a5419c0370ba915b3871", + "sha256:c5a59996dc61835133b56a32ebe4ef3740ea5bc19b3983ac60cc32be5a665d54", + "sha256:c73aafd1afca80afecb22718f8700b40ac7cab927b8abab3c3e337d70e10e5a2", + "sha256:cee6cc0584f71adefe2c908856ccc98702baf95ff80092e4ca46061538a2ba98", + "sha256:cef04d068f5fb0518a77857953193b6bb94809a806bd0a14983a8f12ada060c9", + "sha256:cf5d1c9e6837f8af9f92b6bd3e86d513cdc11f60fd62185cc49ec7d1aba34864", + "sha256:e61155fae27570692ad1d327e81c6cf27d535a5d7ef97648a17d922224b216de", + "sha256:e7f387600d424f91576af20518334df3d97bc76a300a755f9a8d6e4f5cadd289", + "sha256:ed08d2703b5972ec736451b818c2eb9da80d66c3e84aed1deeb0c345fefe461b", + "sha256:fbd6acc766814ea6443628f4e6751d0da6593dae29c08c0b2606164db026970c", + "sha256:feff59f27338135776f6d4e2ec7aeeac5d5f7a08a83e80869121ef8164b74af9" ], "markers": "python_version >= '3.9'", - "version": "==1.26.4" + "version": "==2.0.0" }, "packaging": { "hashes": [ @@ -3169,78 +3194,89 @@ }, "pillow": { "hashes": [ - "sha256:048ad577748b9fa4a99a0548c64f2cb8d672d5bf2e643a739ac8faff1164238c", - "sha256:048eeade4c33fdf7e08da40ef402e748df113fd0b4584e32c4af74fe78baaeb2", - "sha256:0ba26351b137ca4e0db0342d5d00d2e355eb29372c05afd544ebf47c0956ffeb", - "sha256:0ea2a783a2bdf2a561808fe4a7a12e9aa3799b701ba305de596bc48b8bdfce9d", - "sha256:1530e8f3a4b965eb6a7785cf17a426c779333eb62c9a7d1bbcf3ffd5bf77a4aa", - "sha256:16563993329b79513f59142a6b02055e10514c1a8e86dca8b48a893e33cf91e3", - "sha256:19aeb96d43902f0a783946a0a87dbdad5c84c936025b8419da0a0cd7724356b1", - "sha256:1a1d1915db1a4fdb2754b9de292642a39a7fb28f1736699527bb649484fb966a", - "sha256:1b87bd9d81d179bd8ab871603bd80d8645729939f90b71e62914e816a76fc6bd", - "sha256:1dfc94946bc60ea375cc39cff0b8da6c7e5f8fcdc1d946beb8da5c216156ddd8", - "sha256:2034f6759a722da3a3dbd91a81148cf884e91d1b747992ca288ab88c1de15999", - "sha256:261ddb7ca91fcf71757979534fb4c128448b5b4c55cb6152d280312062f69599", - "sha256:2ed854e716a89b1afcedea551cd85f2eb2a807613752ab997b9974aaa0d56936", - "sha256:3102045a10945173d38336f6e71a8dc71bcaeed55c3123ad4af82c52807b9375", - "sha256:339894035d0ede518b16073bdc2feef4c991ee991a29774b33e515f1d308e08d", - "sha256:412444afb8c4c7a6cc11a47dade32982439925537e483be7c0ae0cf96c4f6a0b", - "sha256:4203efca580f0dd6f882ca211f923168548f7ba334c189e9eab1178ab840bf60", - "sha256:45ebc7b45406febf07fef35d856f0293a92e7417ae7933207e90bf9090b70572", - "sha256:4b5ec25d8b17217d635f8935dbc1b9aa5907962fae29dff220f2659487891cd3", - "sha256:4c8e73e99da7db1b4cad7f8d682cf6abad7844da39834c288fbfa394a47bbced", - "sha256:4e6f7d1c414191c1199f8996d3f2282b9ebea0945693fb67392c75a3a320941f", - "sha256:4eaa22f0d22b1a7e93ff0a596d57fdede2e550aecffb5a1ef1106aaece48e96b", - "sha256:50b8eae8f7334ec826d6eeffaeeb00e36b5e24aa0b9df322c247539714c6df19", - "sha256:50fd3f6b26e3441ae07b7c979309638b72abc1a25da31a81a7fbd9495713ef4f", - "sha256:51243f1ed5161b9945011a7360e997729776f6e5d7005ba0c6879267d4c5139d", - "sha256:5d512aafa1d32efa014fa041d38868fda85028e3f930a96f85d49c7d8ddc0383", - "sha256:5f77cf66e96ae734717d341c145c5949c63180842a545c47a0ce7ae52ca83795", - "sha256:6b02471b72526ab8a18c39cb7967b72d194ec53c1fd0a70b050565a0f366d355", - "sha256:6fb1b30043271ec92dc65f6d9f0b7a830c210b8a96423074b15c7bc999975f57", - "sha256:7161ec49ef0800947dc5570f86568a7bb36fa97dd09e9827dc02b718c5643f09", - "sha256:72d622d262e463dfb7595202d229f5f3ab4b852289a1cd09650362db23b9eb0b", - "sha256:74d28c17412d9caa1066f7a31df8403ec23d5268ba46cd0ad2c50fb82ae40462", - "sha256:78618cdbccaa74d3f88d0ad6cb8ac3007f1a6fa5c6f19af64b55ca170bfa1edf", - "sha256:793b4e24db2e8742ca6423d3fde8396db336698c55cd34b660663ee9e45ed37f", - "sha256:798232c92e7665fe82ac085f9d8e8ca98826f8e27859d9a96b41d519ecd2e49a", - "sha256:81d09caa7b27ef4e61cb7d8fbf1714f5aec1c6b6c5270ee53504981e6e9121ad", - "sha256:8ab74c06ffdab957d7670c2a5a6e1a70181cd10b727cd788c4dd9005b6a8acd9", - "sha256:8eb0908e954d093b02a543dc963984d6e99ad2b5e36503d8a0aaf040505f747d", - "sha256:90b9e29824800e90c84e4022dd5cc16eb2d9605ee13f05d47641eb183cd73d45", - "sha256:9797a6c8fe16f25749b371c02e2ade0efb51155e767a971c61734b1bf6293994", - "sha256:9d2455fbf44c914840c793e89aa82d0e1763a14253a000743719ae5946814b2d", - "sha256:9d3bea1c75f8c53ee4d505c3e67d8c158ad4df0d83170605b50b64025917f338", - "sha256:9e2ec1e921fd07c7cda7962bad283acc2f2a9ccc1b971ee4b216b75fad6f0463", - "sha256:9e91179a242bbc99be65e139e30690e081fe6cb91a8e77faf4c409653de39451", - "sha256:a0eaa93d054751ee9964afa21c06247779b90440ca41d184aeb5d410f20ff591", - "sha256:a2c405445c79c3f5a124573a051062300936b0281fee57637e706453e452746c", - "sha256:aa7e402ce11f0885305bfb6afb3434b3cd8f53b563ac065452d9d5654c7b86fd", - "sha256:aff76a55a8aa8364d25400a210a65ff59d0168e0b4285ba6bf2bd83cf675ba32", - "sha256:b09b86b27a064c9624d0a6c54da01c1beaf5b6cadfa609cf63789b1d08a797b9", - "sha256:b14f16f94cbc61215115b9b1236f9c18403c15dd3c52cf629072afa9d54c1cbf", - "sha256:b50811d664d392f02f7761621303eba9d1b056fb1868c8cdf4231279645c25f5", - "sha256:b7bc2176354defba3edc2b9a777744462da2f8e921fbaf61e52acb95bafa9828", - "sha256:c78e1b00a87ce43bb37642c0812315b411e856a905d58d597750eb79802aaaa3", - "sha256:c83341b89884e2b2e55886e8fbbf37c3fa5efd6c8907124aeb72f285ae5696e5", - "sha256:ca2870d5d10d8726a27396d3ca4cf7976cec0f3cb706debe88e3a5bd4610f7d2", - "sha256:ccce24b7ad89adb5a1e34a6ba96ac2530046763912806ad4c247356a8f33a67b", - "sha256:cd5e14fbf22a87321b24c88669aad3a51ec052eb145315b3da3b7e3cc105b9a2", - "sha256:ce49c67f4ea0609933d01c0731b34b8695a7a748d6c8d186f95e7d085d2fe475", - "sha256:d33891be6df59d93df4d846640f0e46f1a807339f09e79a8040bc887bdcd7ed3", - "sha256:d3b2348a78bc939b4fed6552abfd2e7988e0f81443ef3911a4b8498ca084f6eb", - "sha256:d886f5d353333b4771d21267c7ecc75b710f1a73d72d03ca06df49b09015a9ef", - "sha256:d93480005693d247f8346bc8ee28c72a2191bdf1f6b5db469c096c0c867ac015", - "sha256:dc1a390a82755a8c26c9964d457d4c9cbec5405896cba94cf51f36ea0d855002", - "sha256:dd78700f5788ae180b5ee8902c6aea5a5726bac7c364b202b4b3e3ba2d293170", - "sha256:e46f38133e5a060d46bd630faa4d9fa0202377495df1f068a8299fd78c84de84", - "sha256:e4b878386c4bf293578b48fc570b84ecfe477d3b77ba39a6e87150af77f40c57", - "sha256:f0d0591a0aeaefdaf9a5e545e7485f89910c977087e7de2b6c388aec32011e9f", - "sha256:fdcbb4068117dfd9ce0138d068ac512843c52295ed996ae6dd1faf537b6dbc27", - "sha256:ff61bfd9253c3915e6d41c651d5f962da23eda633cf02262990094a18a55371a" + "sha256:02a2be69f9c9b8c1e97cf2713e789d4e398c751ecfd9967c18d0ce304efbf885", + "sha256:030abdbe43ee02e0de642aee345efa443740aa4d828bfe8e2eb11922ea6a21ea", + "sha256:06b2f7898047ae93fad74467ec3d28fe84f7831370e3c258afa533f81ef7f3df", + "sha256:0755ffd4a0c6f267cccbae2e9903d95477ca2f77c4fcf3a3a09570001856c8a5", + "sha256:0a9ec697746f268507404647e531e92889890a087e03681a3606d9b920fbee3c", + "sha256:0ae24a547e8b711ccaaf99c9ae3cd975470e1a30caa80a6aaee9a2f19c05701d", + "sha256:134ace6dc392116566980ee7436477d844520a26a4b1bd4053f6f47d096997fd", + "sha256:166c1cd4d24309b30d61f79f4a9114b7b2313d7450912277855ff5dfd7cd4a06", + "sha256:1b5dea9831a90e9d0721ec417a80d4cbd7022093ac38a568db2dd78363b00908", + "sha256:1d846aea995ad352d4bdcc847535bd56e0fd88d36829d2c90be880ef1ee4668a", + "sha256:1ef61f5dd14c300786318482456481463b9d6b91ebe5ef12f405afbba77ed0be", + "sha256:297e388da6e248c98bc4a02e018966af0c5f92dfacf5a5ca22fa01cb3179bca0", + "sha256:298478fe4f77a4408895605f3482b6cc6222c018b2ce565c2b6b9c354ac3229b", + "sha256:29dbdc4207642ea6aad70fbde1a9338753d33fb23ed6956e706936706f52dd80", + "sha256:2db98790afc70118bd0255c2eeb465e9767ecf1f3c25f9a1abb8ffc8cfd1fe0a", + "sha256:32cda9e3d601a52baccb2856b8ea1fc213c90b340c542dcef77140dfa3278a9e", + "sha256:37fb69d905be665f68f28a8bba3c6d3223c8efe1edf14cc4cfa06c241f8c81d9", + "sha256:416d3a5d0e8cfe4f27f574362435bc9bae57f679a7158e0096ad2beb427b8696", + "sha256:43efea75eb06b95d1631cb784aa40156177bf9dd5b4b03ff38979e048258bc6b", + "sha256:4b35b21b819ac1dbd1233317adeecd63495f6babf21b7b2512d244ff6c6ce309", + "sha256:4d9667937cfa347525b319ae34375c37b9ee6b525440f3ef48542fcf66f2731e", + "sha256:5161eef006d335e46895297f642341111945e2c1c899eb406882a6c61a4357ab", + "sha256:543f3dc61c18dafb755773efc89aae60d06b6596a63914107f75459cf984164d", + "sha256:551d3fd6e9dc15e4c1eb6fc4ba2b39c0c7933fa113b220057a34f4bb3268a060", + "sha256:59291fb29317122398786c2d44427bbd1a6d7ff54017075b22be9d21aa59bd8d", + "sha256:5b001114dd152cfd6b23befeb28d7aee43553e2402c9f159807bf55f33af8a8d", + "sha256:5b4815f2e65b30f5fbae9dfffa8636d992d49705723fe86a3661806e069352d4", + "sha256:5dc6761a6efc781e6a1544206f22c80c3af4c8cf461206d46a1e6006e4429ff3", + "sha256:5e84b6cc6a4a3d76c153a6b19270b3526a5a8ed6b09501d3af891daa2a9de7d6", + "sha256:6209bb41dc692ddfee4942517c19ee81b86c864b626dbfca272ec0f7cff5d9fb", + "sha256:673655af3eadf4df6b5457033f086e90299fdd7a47983a13827acf7459c15d94", + "sha256:6c762a5b0997f5659a5ef2266abc1d8851ad7749ad9a6a5506eb23d314e4f46b", + "sha256:7086cc1d5eebb91ad24ded9f58bec6c688e9f0ed7eb3dbbf1e4800280a896496", + "sha256:73664fe514b34c8f02452ffb73b7a92c6774e39a647087f83d67f010eb9a0cf0", + "sha256:76a911dfe51a36041f2e756b00f96ed84677cdeb75d25c767f296c1c1eda1319", + "sha256:780c072c2e11c9b2c7ca37f9a2ee8ba66f44367ac3e5c7832afcfe5104fd6d1b", + "sha256:7928ecbf1ece13956b95d9cbcfc77137652b02763ba384d9ab508099a2eca856", + "sha256:7970285ab628a3779aecc35823296a7869f889b8329c16ad5a71e4901a3dc4ef", + "sha256:7a8d4bade9952ea9a77d0c3e49cbd8b2890a399422258a77f357b9cc9be8d680", + "sha256:7c1ee6f42250df403c5f103cbd2768a28fe1a0ea1f0f03fe151c8741e1469c8b", + "sha256:7dfecdbad5c301d7b5bde160150b4db4c659cee2b69589705b6f8a0c509d9f42", + "sha256:812f7342b0eee081eaec84d91423d1b4650bb9828eb53d8511bcef8ce5aecf1e", + "sha256:866b6942a92f56300012f5fbac71f2d610312ee65e22f1aa2609e491284e5597", + "sha256:86dcb5a1eb778d8b25659d5e4341269e8590ad6b4e8b44d9f4b07f8d136c414a", + "sha256:87dd88ded2e6d74d31e1e0a99a726a6765cda32d00ba72dc37f0651f306daaa8", + "sha256:8bc1a764ed8c957a2e9cacf97c8b2b053b70307cf2996aafd70e91a082e70df3", + "sha256:8d4d5063501b6dd4024b8ac2f04962d661222d120381272deea52e3fc52d3736", + "sha256:8f0aef4ef59694b12cadee839e2ba6afeab89c0f39a3adc02ed51d109117b8da", + "sha256:930044bb7679ab003b14023138b50181899da3f25de50e9dbee23b61b4de2126", + "sha256:950be4d8ba92aca4b2bb0741285a46bfae3ca699ef913ec8416c1b78eadd64cd", + "sha256:961a7293b2457b405967af9c77dcaa43cc1a8cd50d23c532e62d48ab6cdd56f5", + "sha256:9b885f89040bb8c4a1573566bbb2f44f5c505ef6e74cec7ab9068c900047f04b", + "sha256:9f4727572e2918acaa9077c919cbbeb73bd2b3ebcfe033b72f858fc9fbef0026", + "sha256:a02364621fe369e06200d4a16558e056fe2805d3468350df3aef21e00d26214b", + "sha256:a985e028fc183bf12a77a8bbf36318db4238a3ded7fa9df1b9a133f1cb79f8fc", + "sha256:ac1452d2fbe4978c2eec89fb5a23b8387aba707ac72810d9490118817d9c0b46", + "sha256:b15e02e9bb4c21e39876698abf233c8c579127986f8207200bc8a8f6bb27acf2", + "sha256:b2724fdb354a868ddf9a880cb84d102da914e99119211ef7ecbdc613b8c96b3c", + "sha256:bbc527b519bd3aa9d7f429d152fea69f9ad37c95f0b02aebddff592688998abe", + "sha256:bcd5e41a859bf2e84fdc42f4edb7d9aba0a13d29a2abadccafad99de3feff984", + "sha256:bd2880a07482090a3bcb01f4265f1936a903d70bc740bfcb1fd4e8a2ffe5cf5a", + "sha256:bee197b30783295d2eb680b311af15a20a8b24024a19c3a26431ff83eb8d1f70", + "sha256:bf2342ac639c4cf38799a44950bbc2dfcb685f052b9e262f446482afaf4bffca", + "sha256:c76e5786951e72ed3686e122d14c5d7012f16c8303a674d18cdcd6d89557fc5b", + "sha256:cbed61494057c0f83b83eb3a310f0bf774b09513307c434d4366ed64f4128a91", + "sha256:cfdd747216947628af7b259d274771d84db2268ca062dd5faf373639d00113a3", + "sha256:d7480af14364494365e89d6fddc510a13e5a2c3584cb19ef65415ca57252fb84", + "sha256:dbc6ae66518ab3c5847659e9988c3b60dc94ffb48ef9168656e0019a93dbf8a1", + "sha256:dc3e2db6ba09ffd7d02ae9141cfa0ae23393ee7687248d46a7507b75d610f4f5", + "sha256:dfe91cb65544a1321e631e696759491ae04a2ea11d36715eca01ce07284738be", + "sha256:e4d49b85c4348ea0b31ea63bc75a9f3857869174e2bf17e7aba02945cd218e6f", + "sha256:e4db64794ccdf6cb83a59d73405f63adbe2a1887012e308828596100a0b2f6cc", + "sha256:e553cad5179a66ba15bb18b353a19020e73a7921296a7979c4a2b7f6a5cd57f9", + "sha256:e88d5e6ad0d026fba7bdab8c3f225a69f063f116462c49892b0149e21b6c0a0e", + "sha256:ecd85a8d3e79cd7158dec1c9e5808e821feea088e2f69a974db5edf84dc53141", + "sha256:f5b92f4d70791b4a67157321c4e8225d60b119c5cc9aee8ecf153aace4aad4ef", + "sha256:f5f0c3e969c8f12dd2bb7e0b15d5c468b51e5017e01e2e867335c81903046a22", + "sha256:f7baece4ce06bade126fb84b8af1c33439a76d8a6fd818970215e0560ca28c27", + "sha256:ff25afb18123cea58a591ea0244b92eb1e61a1fd497bf6d6384f09bc3262ec3e", + "sha256:ff337c552345e95702c5fde3158acb0625111017d0e5f24bf3acdb9cc16b90d1" ], "markers": "python_version >= '3.8'", - "version": "==10.3.0" + "version": "==10.4.0" }, "platformdirs": { "hashes": [ @@ -3399,6 +3435,7 @@ "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427" ], + "index": "pypi", "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==2.9.0.post0" }, @@ -3495,7 +3532,6 @@ "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d", "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f" ], - "markers": "python_version >= '3.6'", "version": "==6.0.1" }, "pyyaml-env-tag": { @@ -3601,28 +3637,28 @@ }, "ruff": { "hashes": [ - "sha256:2c4dfcd8d34b143916994b3876b63d53f56724c03f8c1a33a253b7b1e6bf2a7d", - "sha256:38f3b8327b3cb43474559d435f5fa65dacf723351c159ed0dc567f7ab735d1b6", - "sha256:46e193b36f2255729ad34a49c9a997d506e58f08555366b2108783b3064a0e1e", - "sha256:49141d267100f5ceff541b4e06552e98527870eafa1acc9dec9139c9ec5af64c", - "sha256:7594f8df5404a5c5c8f64b8311169879f6cf42142da644c7e0ba3c3f14130370", - "sha256:81e5facfc9f4a674c6a78c64d38becfbd5e4f739c31fcd9ce44c849f1fad9e4c", - "sha256:9dc5cfd3558f14513ed0d5b70ce531e28ea81a8a3b1b07f0f48421a3d9e7d80a", - "sha256:adc7012d6ec85032bc4e9065110df205752d64010bed5f958d25dbee9ce35de3", - "sha256:b1a321c4f68809fddd9b282fab6a8d8db796b270fff44722589a8b946925a2a8", - "sha256:cd096e23c6a4f9c819525a437fa0a99d1c67a1b6bb30948d46f33afbc53596cf", - "sha256:d2ffbc3715a52b037bcb0f6ff524a9367f642cdc5817944f6af5479bbb2eb50e", - "sha256:d505fb93b0fabef974b168d9b27c3960714d2ecda24b6ffa6a87ac432905ea38", - "sha256:db3ca35265de239a1176d56a464b51557fce41095c37d6c406e658cf80bbb362", - "sha256:e589e27971c2a3efff3fadafb16e5aef7ff93250f0134ec4b52052b673cf988d", - "sha256:e9118f60091047444c1b90952736ee7b1792910cab56e9b9a9ac20af94cd0440", - "sha256:eb641b5873492cf9bd45bc9c5ae5320648218e04386a5f0c264ad6ccce8226a1", - "sha256:ed5c4df5c1fb4518abcb57725b576659542bdbe93366f4f329e8f398c4b71178", - "sha256:ee770ea8ab38918f34e7560a597cc0a8c9a193aaa01bfbd879ef43cb06bd9c4c" + "sha256:204fb0a472f00f2e6280a7c8c7c066e11e20e23a37557d63045bf27a616ba61c", + "sha256:2875b7596a740cbbd492f32d24be73e545a4ce0a3daf51e4f4e609962bfd3cd2", + "sha256:3164488aebd89b1745b47fd00604fb4358d774465f20d1fcd907f9c0fc1b0655", + "sha256:38beace10b8d5f9b6bdc91619310af6d63dd2019f3fb2d17a2da26360d7962fa", + "sha256:3a9a9a1b582e37669b0138b7c1d9d60b9edac880b80eb2baba6d0e566bdeca4d", + "sha256:5c441d9c24ec09e1cb190a04535c5379b36b73c4bc20aa180c54812c27d1cca4", + "sha256:5e478d2f09cf06add143cf8c4540ef77b6599191e0c50ed976582f06e588c994", + "sha256:6ecf968fcf94d942d42b700af18ede94b07521bd188aaf2cd7bc898dd8cb63b6", + "sha256:b1789bf2cd3d1b5a7d38397cac1398ddf3ad7f73f4de01b1e913e2abc7dfc51d", + "sha256:bac6288e82f6296f82ed5285f597713acb2a6ae26618ffc6b429c597b392535c", + "sha256:bdd9f723e16003623423affabcc0a807a66552ee6a29f90eddad87a40c750b78", + "sha256:be9fd62c1e99539da05fcdc1e90d20f74aec1b7a1613463ed77870057cd6bd96", + "sha256:c4c2112e9883a40967827d5c24803525145e7dab315497fae149764979ac7929", + "sha256:d235968460e8758d1e1297e1de59a38d94102f60cafb4d5382033c324404ee9d", + "sha256:d7ceb9b2fe700ee09a0c6b192c5ef03c56eb82a0514218d8ff700f6ade004108", + "sha256:dfaf11c8a116394da3b65cd4b36de30d8552fa45b8119b9ef5ca6638ab964fa3", + "sha256:e216fc75a80ea1fbd96af94a6233d90190d5b65cc3d5dfacf2bd48c3e067d3e1", + "sha256:f0368d765eec8247b8550251c49ebb20554cc4e812f383ff9f5bf0d5d94190b0" ], "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==0.5.0" + "version": "==0.5.1" }, "scipy": { "hashes": [ @@ -3664,11 +3700,11 @@ }, "setuptools": { "hashes": [ - "sha256:54faa7f2e8d2d11bcd2c07bed282eef1046b5c080d1c32add737d7b5817b1ad4", - "sha256:f211a66637b8fa059bb28183da127d4e86396c991a942b028c6650d4319c3fd0" + "sha256:f171bab1dfbc86b132997f26a119f6056a57950d058587841a0082e8830f9dc5", + "sha256:fe384da74336c398e0d956d1cae0669bc02eed936cdb1d49b57de1990dc11ffc" ], "markers": "python_version >= '3.8'", - "version": "==70.0.0" + "version": "==70.3.0" }, "six": { "hashes": [ @@ -3723,11 +3759,11 @@ }, "typing-extensions": { "hashes": [ - "sha256:6024b58b69089e5a89c347397254e35f1bf02a907728ec7fee9bf0fe837d203a", - "sha256:915f5e35ff76f56588223f15fdd5938f9a1cf9195c0de25130c627e4d597f6d1" + "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", + "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8" ], "markers": "python_version < '3.11'", - "version": "==4.12.1" + "version": "==4.12.2" }, "urllib3": { "hashes": [ @@ -3739,11 +3775,11 @@ }, "virtualenv": { "hashes": [ - "sha256:82bf0f4eebbb78d36ddaee0283d43fe5736b53880b8a8cdcd37390a07ac3741c", - "sha256:a624db5e94f01ad993d476b9ee5346fdf7b9de43ccaee0e0197012dc838a0e9b" + "sha256:4c43a2a236279d9ea36a0d76f98d84bd6ca94ac4e0f4a3b9d46d05e10fea542a", + "sha256:8cc4a31139e796e9a7de2cd5cf2489de1217193116a8fd42328f1bd65f434589" ], "markers": "python_version >= '3.7'", - "version": "==20.26.2" + "version": "==20.26.3" }, "watchdog": { "hashes": [ @@ -3780,6 +3816,7 @@ "sha256:f27279d060e2ab24c0aa98363ff906d2386aa6c4dc2f1a374655d4e02a6c5e5e", "sha256:f8affdf3c0f0466e69f5b3917cdd042f89c8c63aebdb9f7c078996f607cdb0f5" ], + "index": "pypi", "markers": "python_version >= '3.8'", "version": "==4.0.1" }, @@ -3854,11 +3891,11 @@ }, "certifi": { "hashes": [ - "sha256:3cd43f1c6fa7dedc5899d69d3ad0398fd018ad1a17fba83ddaf78aa46c747516", - "sha256:ddc6c8ce995e6987e7faf5e3f1b02b302836a0e5d98ece18392cb1a36c72ad56" + "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b", + "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90" ], "markers": "python_version >= '3.6'", - "version": "==2024.6.2" + "version": "==2024.7.4" }, "cffi": { "hashes": [ @@ -4016,50 +4053,50 @@ }, "cryptography": { "hashes": [ - "sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55", - "sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785", - "sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b", - "sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886", - "sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82", - "sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1", - "sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda", - "sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f", - "sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68", - "sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60", - "sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7", - "sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd", - "sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582", - "sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc", - "sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858", - "sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b", - "sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2", - "sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678", - "sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13", - "sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4", - "sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8", - "sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604", - "sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477", - "sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e", - "sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a", - "sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9", - "sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14", - "sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda", - "sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da", - "sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562", - "sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2", - "sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9" + "sha256:013629ae70b40af70c9a7a5db40abe5d9054e6f4380e50ce769947b73bf3caad", + "sha256:2346b911eb349ab547076f47f2e035fc8ff2c02380a7cbbf8d87114fa0f1c583", + "sha256:2f66d9cd9147ee495a8374a45ca445819f8929a3efcd2e3df6428e46c3cbb10b", + "sha256:2f88d197e66c65be5e42cd72e5c18afbfae3f741742070e3019ac8f4ac57262c", + "sha256:31f721658a29331f895a5a54e7e82075554ccfb8b163a18719d342f5ffe5ecb1", + "sha256:343728aac38decfdeecf55ecab3264b015be68fc2816ca800db649607aeee648", + "sha256:5226d5d21ab681f432a9c1cf8b658c0cb02533eece706b155e5fbd8a0cdd3949", + "sha256:57080dee41209e556a9a4ce60d229244f7a66ef52750f813bfbe18959770cfba", + "sha256:5a94eccb2a81a309806027e1670a358b99b8fe8bfe9f8d329f27d72c094dde8c", + "sha256:6b7c4f03ce01afd3b76cf69a5455caa9cfa3de8c8f493e0d3ab7d20611c8dae9", + "sha256:7016f837e15b0a1c119d27ecd89b3515f01f90a8615ed5e9427e30d9cdbfed3d", + "sha256:81884c4d096c272f00aeb1f11cf62ccd39763581645b0812e99a91505fa48e0c", + "sha256:81d8a521705787afe7a18d5bfb47ea9d9cc068206270aad0b96a725022e18d2e", + "sha256:8d09d05439ce7baa8e9e95b07ec5b6c886f548deb7e0f69ef25f64b3bce842f2", + "sha256:961e61cefdcb06e0c6d7e3a1b22ebe8b996eb2bf50614e89384be54c48c6b63d", + "sha256:9c0c1716c8447ee7dbf08d6db2e5c41c688544c61074b54fc4564196f55c25a7", + "sha256:a0608251135d0e03111152e41f0cc2392d1e74e35703960d4190b2e0f4ca9c70", + "sha256:a0c5b2b0585b6af82d7e385f55a8bc568abff8923af147ee3c07bd8b42cda8b2", + "sha256:ad803773e9df0b92e0a817d22fd8a3675493f690b96130a5e24f1b8fabbea9c7", + "sha256:b297f90c5723d04bcc8265fc2a0f86d4ea2e0f7ab4b6994459548d3a6b992a14", + "sha256:ba4f0a211697362e89ad822e667d8d340b4d8d55fae72cdd619389fb5912eefe", + "sha256:c4783183f7cb757b73b2ae9aed6599b96338eb957233c58ca8f49a49cc32fd5e", + "sha256:c9bb2ae11bfbab395bdd072985abde58ea9860ed84e59dbc0463a5d0159f5b71", + "sha256:cafb92b2bc622cd1aa6a1dce4b93307792633f4c5fe1f46c6b97cf67073ec961", + "sha256:d45b940883a03e19e944456a558b67a41160e367a719833c53de6911cabba2b7", + "sha256:dc0fdf6787f37b1c6b08e6dfc892d9d068b5bdb671198c72072828b80bd5fe4c", + "sha256:dea567d1b0e8bc5764b9443858b673b734100c2871dc93163f58c46a97a83d28", + "sha256:dec9b018df185f08483f294cae6ccac29e7a6e0678996587363dc352dc65c842", + "sha256:e3ec3672626e1b9e55afd0df6d774ff0e953452886e06e0f1eb7eb0c832e8902", + "sha256:e599b53fd95357d92304510fb7bda8523ed1f79ca98dce2f43c115950aa78801", + "sha256:fa76fbb7596cc5839320000cdd5d0955313696d9511debab7ee7278fc8b5c84a", + "sha256:fff12c88a672ab9c9c1cf7b0c80e3ad9e2ebd9d828d955c126be4fd3e5578c9e" ], "markers": "python_version >= '3.7'", - "version": "==42.0.7" + "version": "==42.0.8" }, "django": { "hashes": [ - "sha256:837e3cf1f6c31347a1396a3f6b65688f2b4bb4a11c580dcb628b5afe527b68a5", - "sha256:a17fcba2aad3fc7d46fdb23215095dbbd64e6174bf4589171e732b18b07e426a" + "sha256:3ec32bc2c616ab02834b9cac93143a7dc1cdcd5b822d78ac95fc20a38c534240", + "sha256:fc6919875a6226c7ffcae1a7d51e0f2ceaf6f160393180818f6c95f51b1e7b96" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==4.2.13" + "version": "==4.2.14" }, "django-filter-stubs": { "hashes": [ @@ -4109,37 +4146,37 @@ }, "mypy": { "hashes": [ - "sha256:075cbf81f3e134eadaf247de187bd604748171d6b79736fa9b6c9685b4083061", - "sha256:12b6bfc1b1a66095ab413160a6e520e1dc076a28f3e22f7fb25ba3b000b4ef99", - "sha256:1ec404a7cbe9fc0e92cb0e67f55ce0c025014e26d33e54d9e506a0f2d07fe5de", - "sha256:28d0e038361b45f099cc086d9dd99c15ff14d0188f44ac883010e172ce86c38a", - "sha256:2b0695d605ddcd3eb2f736cd8b4e388288c21e7de85001e9f85df9187f2b50f9", - "sha256:3236a4c8f535a0631f85f5fcdffba71c7feeef76a6002fcba7c1a8e57c8be1ec", - "sha256:3be66771aa5c97602f382230165b856c231d1277c511c9a8dd058be4784472e1", - "sha256:3d087fcbec056c4ee34974da493a826ce316947485cef3901f511848e687c131", - "sha256:3f298531bca95ff615b6e9f2fc0333aae27fa48052903a0ac90215021cdcfa4f", - "sha256:4a2b5cdbb5dd35aa08ea9114436e0d79aceb2f38e32c21684dcf8e24e1e92821", - "sha256:4cf18f9d0efa1b16478c4c129eabec36148032575391095f73cae2e722fcf9d5", - "sha256:8b2cbaca148d0754a54d44121b5825ae71868c7592a53b7292eeb0f3fdae95ee", - "sha256:8f55583b12156c399dce2df7d16f8a5095291354f1e839c252ec6c0611e86e2e", - "sha256:92f93b21c0fe73dc00abf91022234c79d793318b8a96faac147cd579c1671746", - "sha256:9e36fb078cce9904c7989b9693e41cb9711e0600139ce3970c6ef814b6ebc2b2", - "sha256:9fd50226364cd2737351c79807775136b0abe084433b55b2e29181a4c3c878c0", - "sha256:a781f6ad4bab20eef8b65174a57e5203f4be627b46291f4589879bf4e257b97b", - "sha256:a87dbfa85971e8d59c9cc1fcf534efe664d8949e4c0b6b44e8ca548e746a8d53", - "sha256:b808e12113505b97d9023b0b5e0c0705a90571c6feefc6f215c1df9381256e30", - "sha256:bc6ac273b23c6b82da3bb25f4136c4fd42665f17f2cd850771cb600bdd2ebeda", - "sha256:cd777b780312ddb135bceb9bc8722a73ec95e042f911cc279e2ec3c667076051", - "sha256:da1cbf08fb3b851ab3b9523a884c232774008267b1f83371ace57f412fe308c2", - "sha256:e22e1527dc3d4aa94311d246b59e47f6455b8729f4968765ac1eacf9a4760bc7", - "sha256:f8c083976eb530019175aabadb60921e73b4f45736760826aa1689dda8208aee", - "sha256:f90cff89eea89273727d8783fef5d4a934be2fdca11b47def50cf5d311aff727", - "sha256:fa7ef5244615a2523b56c034becde4e9e3f9b034854c93639adb667ec9ec2976", - "sha256:fcfc70599efde5c67862a07a1aaf50e55bce629ace26bb19dc17cece5dd31ca4" + "sha256:0cd62192a4a32b77ceb31272d9e74d23cd88c8060c34d1d3622db3267679a5d9", + "sha256:1b3a2ffce52cc4dbaeee4df762f20a2905aa171ef157b82192f2e2f368eec05d", + "sha256:1f8f492d7db9e3593ef42d4f115f04e556130f2819ad33ab84551403e97dd4c0", + "sha256:2189ff1e39db399f08205e22a797383613ce1cb0cb3b13d8bcf0170e45b96cc3", + "sha256:378c03f53f10bbdd55ca94e46ec3ba255279706a6aacaecac52ad248f98205d3", + "sha256:37fd87cab83f09842653f08de066ee68f1182b9b5282e4634cdb4b407266bade", + "sha256:3c4c2992f6ea46ff7fce0072642cfb62af7a2484efe69017ed8b095f7b39ef31", + "sha256:51a46974340baaa4145363b9e051812a2446cf583dfaeba124af966fa44593f7", + "sha256:5bb9cd11c01c8606a9d0b83ffa91d0b236a0e91bc4126d9ba9ce62906ada868e", + "sha256:5cc3ca0a244eb9a5249c7c583ad9a7e881aa5d7b73c35652296ddcdb33b2b9c7", + "sha256:604282c886497645ffb87b8f35a57ec773a4a2721161e709a4422c1636ddde5c", + "sha256:6166a88b15f1759f94a46fa474c7b1b05d134b1b61fca627dd7335454cc9aa6b", + "sha256:6bacf8f3a3d7d849f40ca6caea5c055122efe70e81480c8328ad29c55c69e93e", + "sha256:6be84c06e6abd72f960ba9a71561c14137a583093ffcf9bbfaf5e613d63fa531", + "sha256:701b5f71413f1e9855566a34d6e9d12624e9e0a8818a5704d74d6b0402e66c04", + "sha256:71d8ac0b906354ebda8ef1673e5fde785936ac1f29ff6987c7483cfbd5a4235a", + "sha256:8addf6313777dbb92e9564c5d32ec122bf2c6c39d683ea64de6a1fd98b90fe37", + "sha256:901c89c2d67bba57aaaca91ccdb659aa3a312de67f23b9dfb059727cce2e2e0a", + "sha256:97a131ee36ac37ce9581f4220311247ab6cba896b4395b9c87af0675a13a755f", + "sha256:a1bbb3a6f5ff319d2b9d40b4080d46cd639abe3516d5a62c070cf0114a457d84", + "sha256:a2cbc68cb9e943ac0814c13e2452d2046c2f2b23ff0278e26599224cf164e78d", + "sha256:b8edd4e9bbbc9d7b79502eb9592cab808585516ae1bcc1446eb9122656c6066f", + "sha256:bd6f629b67bb43dc0d9211ee98b96d8dabc97b1ad38b9b25f5e4c4d7569a0c6a", + "sha256:c2ae450d60d7d020d67ab440c6e3fae375809988119817214440033f26ddf7bf", + "sha256:d8681909f7b44d0b7b86e653ca152d6dff0eb5eb41694e163c6092124f8246d7", + "sha256:e36f229acfe250dc660790840916eb49726c928e8ce10fbdf90715090fe4ae02", + "sha256:fe85ed6836165d52ae8b88f99527d3d1b2362e0cb90b005409b8bed90e9059b3" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==1.10.0" + "version": "==1.10.1" }, "mypy-extensions": { "hashes": [ @@ -4218,11 +4255,11 @@ }, "types-docutils": { "hashes": [ - "sha256:7716ec6c68b5179b7ba1738cace2f1326e64df9f44b7ab08d9904d32c23fc15f", - "sha256:7f6e84ba8fcd2454c5b8bb8d77384d091a901929cc2b31079316e10eb346580a" + "sha256:99a7b4a8fc8fa77e7eef0de6c4097943654a6d7afbde54334ab9b8321e07f23e", + "sha256:abf04092a52a9e87d4d2c0aa376eedd2a2b2a55607b59f4c06b25ef0c81918ea" ], "markers": "python_version >= '3.8'", - "version": "==0.21.0.20240423" + "version": "==0.21.0.20240708" }, "types-html5lib": { "hashes": [ @@ -4250,15 +4287,6 @@ "markers": "python_version >= '3.8'", "version": "==10.2.0.20240520" }, - "types-psycopg2": { - "hashes": [ - "sha256:05db256f4a459fb21a426b8e7fca0656c3539105ff0208eaf6bdaf406a387087", - "sha256:644d6644d64ebbe37203229b00771012fb3b3bddd507a129a2e136485990e4f8" - ], - "index": "pypi", - "markers": "python_version >= '3.8'", - "version": "==2.9.21.20240417" - }, "types-pygments": { "hashes": [ "sha256:11c90bc1737c9af55e5569558b88df7c2233e12325cb516215f722271444e91d", @@ -4304,20 +4332,20 @@ }, "types-requests": { "hashes": [ - "sha256:3f98d7bbd0dd94ebd10ff43a7fbe20c3b8528acace6d8efafef0b6a184793f06", - "sha256:ed3946063ea9fbc6b5fc0c44fa279188bae42d582cb63760be6cb4b9d06c3de8" + "sha256:97bac6b54b5bd4cf91d407e62f0932a74821bc2211f22116d9ee1dd643826caf", + "sha256:ed5e8a412fcc39159d6319385c009d642845f250c63902718f605cd90faade31" ], "markers": "python_version >= '3.8'", - "version": "==2.32.0.20240602" + "version": "==2.32.0.20240622" }, "types-setuptools": { "hashes": [ - "sha256:8f5379b9948682d72a9ab531fbe52932e84c4f38deda570255f9bae3edd766bc", - "sha256:e31fee7b9d15ef53980526579ac6089b3ae51a005a281acf97178e90ac71aff6" + "sha256:2f8d28d16ca1607080f9fdf19595bd49c942884b2bbd6529c9b8a9a8fc8db911", + "sha256:6b892d5441c2ed58dd255724516e3df1db54892fb20597599aea66d04c3e4d7f" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==70.0.0.20240524" + "version": "==70.2.0.20240704" }, "types-tqdm": { "hashes": [ @@ -4330,19 +4358,19 @@ }, "typing-extensions": { "hashes": [ - "sha256:6024b58b69089e5a89c347397254e35f1bf02a907728ec7fee9bf0fe837d203a", - "sha256:915f5e35ff76f56588223f15fdd5938f9a1cf9195c0de25130c627e4d597f6d1" + "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", + "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8" ], "markers": "python_version < '3.11'", - "version": "==4.12.1" + "version": "==4.12.2" }, "urllib3": { "hashes": [ - "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d", - "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19" + "sha256:a448b2f64d686155468037e1ace9f2d2199776e17f0a46610480d311f73e3472", + "sha256:dd505485549a7a552833da5e6063639d0d177c04f23bc3864e41e5dc5f612168" ], "markers": "python_version >= '3.8'", - "version": "==2.2.1" + "version": "==2.2.2" } } } From 9e2bf4820a5c07fe3172233842dbd2921607f634 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 10 Jul 2024 20:14:59 -0700 Subject: [PATCH 37/39] Enhancement: wrapping of saved view fields d-n-d UI (#7216) --- src-ui/package-lock.json | 7 ++++--- .../app/components/admin/settings/settings.component.html | 2 +- .../input/drag-drop-select/drag-drop-select.component.html | 6 +++--- .../input/drag-drop-select/drag-drop-select.component.scss | 4 ---- 4 files changed, 8 insertions(+), 11 deletions(-) diff --git a/src-ui/package-lock.json b/src-ui/package-lock.json index 966c8c203..ab635fabd 100644 --- a/src-ui/package-lock.json +++ b/src-ui/package-lock.json @@ -1513,9 +1513,10 @@ } }, "node_modules/@angular/cdk": { - "version": "18.0.6", - "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-18.0.6.tgz", - "integrity": "sha512-9CmlQ8uZ0cHuj+1jDdabbFw90QpjrJzh1/cgeHN/8vAGE4ranxX3l6cqpVxuoWRLkB2ykTHt2xeoTM8y0d9ERA==", + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-18.1.0.tgz", + "integrity": "sha512-GWUyJQ7KdOS0WwQPp7UKnRd7lUKvOrMvktqNWfSxBy/VEdyEeKlXfghk6GQ4u1RXFZ2RU0m1KhX8rY9srYJOwA==", + "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, diff --git a/src-ui/src/app/components/admin/settings/settings.component.html b/src-ui/src/app/components/admin/settings/settings.component.html index 285599639..d146b3657 100644 --- a/src-ui/src/app/components/admin/settings/settings.component.html +++ b/src-ui/src/app/components/admin/settings/settings.component.html @@ -348,7 +348,7 @@ @for (view of savedViews; track view) {
  • -
    +
    diff --git a/src-ui/src/app/components/common/input/drag-drop-select/drag-drop-select.component.html b/src-ui/src/app/components/common/input/drag-drop-select/drag-drop-select.component.html index bd7359e23..2a2c0a780 100644 --- a/src-ui/src/app/components/common/input/drag-drop-select/drag-drop-select.component.html +++ b/src-ui/src/app/components/common/input/drag-drop-select/drag-drop-select.component.html @@ -13,10 +13,10 @@ }
    -
    -
    +
    @for (item of unselectedItems; track item.id) { diff --git a/src-ui/src/app/components/common/input/drag-drop-select/drag-drop-select.component.scss b/src-ui/src/app/components/common/input/drag-drop-select/drag-drop-select.component.scss index d30c9848b..483c6c592 100644 --- a/src-ui/src/app/components/common/input/drag-drop-select/drag-drop-select.component.scss +++ b/src-ui/src/app/components/common/input/drag-drop-select/drag-drop-select.component.scss @@ -1,7 +1,3 @@ .badge { cursor: move; } - -.d-flex { - overflow-x: scroll; -} From de8ac013eea0bfc4f844ae52fca45c9532e703b5 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 10 Jul 2024 20:27:04 -0700 Subject: [PATCH 38/39] Enhancement: disable add split button when approrpriate (#7215) --- .../split-confirm-dialog.component.html | 2 +- .../split-confirm-dialog.component.spec.ts | 12 ++++++++++++ .../split-confirm-dialog.component.ts | 8 ++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html b/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html index 411f5ab79..7fb68218a 100644 --- a/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html +++ b/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html @@ -23,7 +23,7 @@
    - diff --git a/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.spec.ts b/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.spec.ts index 66bf2bf71..ffb5e12f3 100644 --- a/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.spec.ts @@ -92,4 +92,16 @@ describe('SplitConfirmDialogComponent', () => { component.pdfPreviewLoaded({ numPages: 5 } as any) expect(component.totalPages).toEqual(5) }) + + it('should correctly disable split button', () => { + component.totalPages = 5 + component.page = 1 + expect(component.canSplit).toBeTruthy() + component.page = 5 + expect(component.canSplit).toBeFalsy() + component.page = 4 + expect(component.canSplit).toBeTruthy() + component['pages'] = new Set([1, 2, 3, 4]) + expect(component.canSplit).toBeFalsy() + }) }) diff --git a/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.ts b/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.ts index 266da00ab..d5f264116 100644 --- a/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.ts +++ b/src-ui/src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.ts @@ -42,6 +42,14 @@ export class SplitConfirmDialogComponent public totalPages: number public deleteOriginal: boolean = false + public get canSplit(): boolean { + return ( + this.page < this.totalPages && + this.pages.size < this.totalPages - 1 && + !this.pages.has(this.page) + ) + } + public get pdfSrc(): string { return this.documentService.getPreviewUrl(this.documentID) } From eaea42334b06ee991e762dfba1c0653d49efe19a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Jul 2024 20:29:17 -0700 Subject: [PATCH 39/39] New Crowdin translations by GitHub Action (#7124) Co-authored-by: Crowdin Bot --- src-ui/src/locale/messages.af_ZA.xlf | 196 +++-- src-ui/src/locale/messages.ar_AR.xlf | 196 +++-- src-ui/src/locale/messages.be_BY.xlf | 196 +++-- src-ui/src/locale/messages.bg_BG.xlf | 196 +++-- src-ui/src/locale/messages.ca_ES.xlf | 198 +++-- src-ui/src/locale/messages.cs_CZ.xlf | 196 +++-- src-ui/src/locale/messages.da_DK.xlf | 196 +++-- src-ui/src/locale/messages.de_DE.xlf | 196 +++-- src-ui/src/locale/messages.el_GR.xlf | 196 +++-- src-ui/src/locale/messages.es_ES.xlf | 196 +++-- src-ui/src/locale/messages.fi_FI.xlf | 196 +++-- src-ui/src/locale/messages.fr_FR.xlf | 200 +++-- src-ui/src/locale/messages.he_IL.xlf | 196 +++-- src-ui/src/locale/messages.hr_HR.xlf | 196 +++-- src-ui/src/locale/messages.hu_HU.xlf | 196 +++-- src-ui/src/locale/messages.id_ID.xlf | 386 +++++---- src-ui/src/locale/messages.it_IT.xlf | 196 +++-- src-ui/src/locale/messages.ja_JP.xlf | 196 +++-- src-ui/src/locale/messages.ko_KR.xlf | 826 +++++++++--------- src-ui/src/locale/messages.lb_LU.xlf | 196 +++-- src-ui/src/locale/messages.lv_LV.xlf | 196 +++-- src-ui/src/locale/messages.nl_NL.xlf | 244 +++--- src-ui/src/locale/messages.no_NO.xlf | 376 +++++---- src-ui/src/locale/messages.pl_PL.xlf | 196 +++-- src-ui/src/locale/messages.pt_BR.xlf | 266 +++--- src-ui/src/locale/messages.pt_PT.xlf | 196 +++-- src-ui/src/locale/messages.ro_RO.xlf | 196 +++-- src-ui/src/locale/messages.ru_RU.xlf | 196 +++-- src-ui/src/locale/messages.sk_SK.xlf | 196 +++-- src-ui/src/locale/messages.sl_SI.xlf | 196 +++-- src-ui/src/locale/messages.sr_CS.xlf | 196 +++-- src-ui/src/locale/messages.sv_SE.xlf | 196 +++-- src-ui/src/locale/messages.th_TH.xlf | 196 +++-- src-ui/src/locale/messages.tr_TR.xlf | 196 +++-- src-ui/src/locale/messages.uk_UA.xlf | 196 +++-- src-ui/src/locale/messages.vi_VN.xlf | 196 +++-- src-ui/src/locale/messages.zh_CN.xlf | 196 +++-- src-ui/src/locale/messages.zh_TW.xlf | 196 +++-- src/locale/af_ZA/LC_MESSAGES/django.po | 626 +++++++------- src/locale/ar_AR/LC_MESSAGES/django.po | 626 +++++++------- src/locale/be_BY/LC_MESSAGES/django.po | 626 +++++++------- src/locale/bg_BG/LC_MESSAGES/django.po | 626 +++++++------- src/locale/ca_ES/LC_MESSAGES/django.po | 628 +++++++------- src/locale/cs_CZ/LC_MESSAGES/django.po | 626 +++++++------- src/locale/da_DK/LC_MESSAGES/django.po | 626 +++++++------- src/locale/de_DE/LC_MESSAGES/django.po | 626 +++++++------- src/locale/el_GR/LC_MESSAGES/django.po | 626 +++++++------- src/locale/es_ES/LC_MESSAGES/django.po | 626 +++++++------- src/locale/fi_FI/LC_MESSAGES/django.po | 626 +++++++------- src/locale/fr_FR/LC_MESSAGES/django.po | 628 +++++++------- src/locale/he_IL/LC_MESSAGES/django.po | 626 +++++++------- src/locale/hr_HR/LC_MESSAGES/django.po | 626 +++++++------- src/locale/hu_HU/LC_MESSAGES/django.po | 626 +++++++------- src/locale/id_ID/LC_MESSAGES/django.po | 788 ++++++++--------- src/locale/it_IT/LC_MESSAGES/django.po | 626 +++++++------- src/locale/ja_JP/LC_MESSAGES/django.po | 626 +++++++------- src/locale/ko_KR/LC_MESSAGES/django.po | 1077 ++++++++++++------------ src/locale/lb_LU/LC_MESSAGES/django.po | 626 +++++++------- src/locale/lv_LV/LC_MESSAGES/django.po | 626 +++++++------- src/locale/nl_NL/LC_MESSAGES/django.po | 626 +++++++------- src/locale/no_NO/LC_MESSAGES/django.po | 742 ++++++++-------- src/locale/pl_PL/LC_MESSAGES/django.po | 626 +++++++------- src/locale/pt_BR/LC_MESSAGES/django.po | 626 +++++++------- src/locale/pt_PT/LC_MESSAGES/django.po | 626 +++++++------- src/locale/ro_RO/LC_MESSAGES/django.po | 626 +++++++------- src/locale/ru_RU/LC_MESSAGES/django.po | 626 +++++++------- src/locale/sk_SK/LC_MESSAGES/django.po | 626 +++++++------- src/locale/sl_SI/LC_MESSAGES/django.po | 626 +++++++------- src/locale/sr_CS/LC_MESSAGES/django.po | 626 +++++++------- src/locale/sv_SE/LC_MESSAGES/django.po | 626 +++++++------- src/locale/th_TH/LC_MESSAGES/django.po | 626 +++++++------- src/locale/tr_TR/LC_MESSAGES/django.po | 626 +++++++------- src/locale/uk_UA/LC_MESSAGES/django.po | 626 +++++++------- src/locale/vi_VN/LC_MESSAGES/django.po | 626 +++++++------- src/locale/zh_CN/LC_MESSAGES/django.po | 626 +++++++------- src/locale/zh_TW/LC_MESSAGES/django.po | 626 +++++++------- 76 files changed, 17839 insertions(+), 15254 deletions(-) diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf index f59edd5ef..6bde7fcc6 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Verwerp @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error deleting document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Gebruikersnaam @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Rekening @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Kies @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Inhoud @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Datum gewysig @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Datum toegevoeg @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Medialêernaam @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Oorspronklike lêernaam @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Oorspronklike MD5 kontrolesom @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Oorspronklike lêergrootte @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Oorspronklike MIME-tipe @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 MD5-kontrolesomargief @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Lêergrootteargief @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Oorspronklike dokumentmetadata @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Geargiveerdedokumentmetadata @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Voorskou @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Bewaar & volgende @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Save & close @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Voer wagwoord in @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Geen e-posrekeninge gedefinieer. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 E-posreëls @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Voeg reël toe + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Geen e-posreëls gedefinieer. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index a901969d7..b6a599511 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 تجاهل @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 تم حذف المستند + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + خطأ أثناء حذف المستند + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 هذه العملية ستقوم بحذف المستندات المحددة بشكل دائم. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 هذه العملية ستقوم بحذف جميع المستندات الموجودة في سلة المهملات بشكل دائم. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 تم حذف المستند (المستندات) + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + خطأ أثناء حذف المستند (أو المستندات) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 تم استعادة المستند + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + حدث خطأ أثناء استعادة المستند + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 تم استعادة المستند (المستندات) + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + حدث خطأ أثناء استعادة المستند (أو المستندات) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + اسم المستخدم @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ لا يمكن تغيير نوع البيانات بعد إنشاء الحقل + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 إنشاء حقل مخصص جديد @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 تحرير حقل مخصص @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 الحساب @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 تصفية المستندات مع @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 لم يتم العثور على أية عناصر @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + تحديد @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 محتوى @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 تاريخ التعديل @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 تاريخ الإضافة @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 اسم ملف الوسائط @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 اسم الملف الأصلي @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 مجموع MD5 الاختباري للأصل @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 حجم الملف الأصلي @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 نوع mime الأصلي @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 مجموع MD5 الاختباري للأرشيف @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 حجم ملف الأرشيف @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 بيانات التعريف للمستند الأصلي @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 بيانات التعريف للمستند الأصلي @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 معاينة @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 ملاحظات @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 السجل التاريخي @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 حفظ & التالي @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 حفظ وإغلاق @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 أدخل كلمة المرور @@ -6698,14 +6754,6 @@ نقل لسلة المهملات - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - خطأ أثناء حذف المستند - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 لا توجد حسابات بريدية. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 قواعد البريد @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 إضافة قاعدة + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 لا توجد قواعد للبريد. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 بولياني @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 التاريخ @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 عدد صحيح @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 رقم @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 العملة @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 النص @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 الرابط @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 رابط مستند diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index 7baa322f2..290eb9cfa 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Адхіліць @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error deleting document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Імя карыстальніка @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Account @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Выбраць @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Змест @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Дата змянення @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Дата дадання @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Імя медыяфайла @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Арыгінальная назва файла @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Арыгінальная кантрольная сума MD5 @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Арыгінальны памер файла @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Арыгінальны MIME тып @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 MD5 сума архіва @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Памер файла архіва @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Арыгінальныя метададзеныя дакумента @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Метададзеныя архіўнага дакумента @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Preview @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Захаваць & наступны @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Save & close @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Увядзіце пароль @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No mail accounts defined. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Mail rules @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Add Rule + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No mail rules defined. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf index 9ce6b5ab4..7c41d2243 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Откажи @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Грешка при изтриване на документа + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Потребителско име @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Типа данни не може да бъде променен, след създаване на поле + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Създаване на ново персонализирано поле @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Редактиране на персонализирано поле @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Профил @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Филтриране на документи с @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Няма намерени елементи @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Избор @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Съдържание @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Дата на промяна @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Дата на добавяне @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Име на медиен файл @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Оригинално име на файла @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Оригинална контролна сума MD5 @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Оригинален размер на файла @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Оригинален mime тип @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Архивна контролна сума MD5 @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Размер на архива @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Оригинални метаданни на документ @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Архивирани метаданни на документа @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Преглед @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Запази & следващото @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Запази & затвори @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Въведете парола @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Грешка при изтриване на документа - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Няма дефинирани пощенски профили. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Правила за поща @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Добавяне на правило + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Няма дефинирани правила за поща. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Булева @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Дата @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Цяло число @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Число @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Пари @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Текст @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Връзка към документ diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index ce9f0d8ec..4f86ee1d4 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Descarta @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document eliminat + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error esborrant document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 L'operació esborrarà els documents seleccionats. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 L'operació esborrarà tots els documents de la brossa. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) eliminat(s) + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error esborrant document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restaurat + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restaurant document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restaurat(s) + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restaurant document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Nom usuari @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -2947,7 +2991,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 88 - Ruta emmagatzematge + Rutes emmagatzematge Custom Fields @@ -3709,11 +3753,19 @@ No es pot canviar tipus de dades després que el camp s'ha creat + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Crear nou camp personalitzat @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Editar camp personalitzat @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Compte @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filtra documents amb aquest @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Elements no trobats @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Selecciona @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Contingut @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Data modificació @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Data afegit @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Nom Arxiu @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Nom arxiu original @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Original MD5 checksum @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Mida arxiu original @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Tipus mímic original @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 MD5 checksum arxivat @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Mida arxiu arxivat @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Metadades del document original @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Metadades del document arxivat @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Vista prèvia @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 Historial @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Desa & següent @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Desa & tanca @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Introdueix Contrasenya @@ -6698,14 +6754,6 @@ Mou a la brossa - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error esborrant document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Sense comptes de correu definides. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Normes correu @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Afegir norma + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Ordre ordenació + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Sense regles de correu definides. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Booleà @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Data @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Enter @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Número @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetari @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Enllaç Document diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index c93eec639..660412bad 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Zrušit @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error deleting document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Uživatelské jméno @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Account @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Vybrat @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Obsah @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Upraveno @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Přidána @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Název souboru @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Original filename @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Původní kontrolní součet MD5 @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Původní velikost souboru @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Původní typ mime @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Kontrolní součet MD5 archivu @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Velikost souboru archivu @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Metadata původního dokumentu @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Metadata archivovaného dokumentu @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Preview @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Poznámky @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Uložit a další @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Save & close @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Enter Password @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No mail accounts defined. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Mail rules @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Add Rule + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No mail rules defined. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index f11cab2e5..51f17f439 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Forkast @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error deleting document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Brugernavn @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Account @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Vælg @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Indhold @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Ændringsdato @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Tilføjelsesdato @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Filnavn for medie @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Original filename @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Original MD5 kontrolsum @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Original filstørrelse @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Original mimetype @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Arkiv MD5 kontrolsum @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Arkiv filstørrelse @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Original dokumentmetadata @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Arkiveret dokumentmetadata @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Preview @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Gem & næste @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Save & close @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Indtast adgangskode @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No mail accounts defined. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Mail rules @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Add Rule + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No mail rules defined. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index aeb681a24..f73778b57 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Verwerfen @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Dokument gelöscht + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Fehler beim Löschen des Dokuments + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 Dieser Vorgang wird die ausgewählten Dokumente unwiderruflich löschen. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 Dieser Vorgang wird alle Dokumente im Papierkorb unwiderruflich löschen. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Dokument(e) gelöscht + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Fehler beim Löschen der Dokumente + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Dokument wiederhergestellt + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Fehler beim Wiederherstellen des Dokuments + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Dokument(e) wiederhergestellt + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Fehler beim Wiederherstellen der Dokumente + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Benutzername @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Datentyp kann nach der Erstellung des Feldes nicht mehr geändert werden + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Option hinzufügen + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Neues benutzerdefiniertes Feld erstellen @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Benutzerdefiniertes Feld bearbeiten @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Konto @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Dokumente mit diesem filtern @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Keine Elemente gefunden @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Auswählen @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Inhalt @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Geändert am @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Hinzugefügt am @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Media-Dateiname @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Ursprünglicher Dateiname @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 MD5-Prüfsumme Original @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Dateigröße Original @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 MIME-Typ Original @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 MD5-Prüfsumme Archiv @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Dateigröße Archiv @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Metadaten Original @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Metadaten Archiv @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Vorschau @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notizen @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 Verlauf @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Speichern & weiter @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Speichern & schließen @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Kennwort eingeben @@ -6698,14 +6754,6 @@ In den Papierkorb verschieben - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Fehler beim Löschen des Dokuments - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Keine E-Mail-Konten vorhanden. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 E-Mail-Regeln @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Regel hinzufügen + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sortierreihenfolge + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Keine E-Mail-Regeln vorhanden. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Wahrheitswert @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Datum @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Ganzzahl @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Zahl @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Währung @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 URL @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Dokumentenverknüpfung diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index 6641a0f14..05f6b3125 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Απόρριψη @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Σφάλμα διαγραφής εγγράφου + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Όνομα Χρήστη @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Λογαριασμός @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Φιλτράρισμα εγγράφων με @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Επιλογή @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Περιεχόμενο @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Ημερομηνία τροποποίησης @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Ημερομηνία προσθήκης @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Όνομα αρχείου πολυμέσων @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Πρωτότυπο όνομα αρχείου @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Αρχικό checksum MD5 @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Αρχικό μέγεθος αρχείου @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Αρχικός τύπος mime @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Αρχειοθέτηση MD5 checksum @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Μέγεθος αρχείου αρχειοθέτησης @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Πρωτότυπα μεταδεδομένα εγγράφου @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Αρχειοθετημένα μεταδεδομένα εγγράφου @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Προεπισκόπηση @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Αποθήκευση & επόμενο @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Αποθήκευση & κλείσιμο @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Εισαγωγή Κωδικού Πρόσβασης @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Σφάλμα διαγραφής εγγράφου - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Δεν έχουν οριστεί λογαριασμοί αλληλογραφίας. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Κανόνες αλληλογραφίας @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Προσθήκη Κανόνα + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Δεν έχουν οριστεί κανόνες αλληλογραφίας. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Δυαδικό @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Ημερομηνία @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Ακέραιος @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Αριθμός @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Νομισματικό @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Κείμενο @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index a645a5c76..9e73b54f9 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Descartar @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error al eliminar documento + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Nombre de usuario @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ El tipo de dato no puede ser cambiado después de crear un campo + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Crear un nuevo campo personalizado @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Editar campo personalizado @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Cuenta @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filtrar documentos con @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No se encontraron elementos @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Seleccionar @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Contenido @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Fecha de modificación @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Fecha de subida @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Nombre del fichero @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Nombre del archivo original @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Comprobación MD5 original @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Tamaño del fichero original @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Tipo MIME original @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Comprobación MD5 del archivo @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Tamaño del archivo @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Metadatos originales @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Metadatos archivados @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Vista previa @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notas @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Guardar y continuar @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Guardar & cerrar @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Introducir contraseña @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error al eliminar documento - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No hay ninguna cuenta de correo configurada. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Reglas de correo @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Añadir regla + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No hay reglas de correo definidas. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Booleano @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Fecha @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Número Entero @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Número @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetario @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Texto @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 URL @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Enlace al documento diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index 2834eeaf7..ab5702f26 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Hylkää @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Virhe asiakirjaa poistaessa + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Käyttäjänimi @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Datatyyppiä ei voi muuttaa, kun kenttä on luotu + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Luo uusi mukautettu kenttä @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Muokkaa mukautettua kenttää @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Tili @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Valitse @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Sisältö @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Muokkauspäivämäärä @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Lisäyspäivämäärä @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Median tiedostonimi @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Alkuperäinen tiedoston nimi @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Alkuperäinen MD5-tarkistussumma @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Alkuperäinen tiedostokoko @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Alkuperäinen mime-tyyppi @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Arkistoidun MD5-tarkistussumma @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Arkistoidun tiedostokoko @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Alkuperäisen asiakirjan metatiedot @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Arkistoidun asiakirjan metatiedot @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Esikatsele @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 Historia @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Tallenna & Lopeta @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Tallenna ja sulje @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Syötä salasana @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Virhe asiakirjaa poistaessa - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Sähköpostitilejä ei ole määritelty. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Sähköpostisäännöt @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Lisää sääntö + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Sähköpostisääntöjä ei ole määritelty. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Päiväys @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Kokonaisluku @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Numero @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Valuutta @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Teksti @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 URL @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Asiakirjan linkki diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 490427f42..bb38d629d 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Abandonner @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1711,7 +1715,7 @@ src/app/components/admin/settings/settings.component.html 386 - Peittes cartes + Petites cartes Large Cards @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document effacé + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Erreur lors de la suppression du document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 Cette action effacera définitivement les documents sélectionnés. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 Cette opération effacera définitivement tous les documents de la corbeille. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) effacé(s) + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Une erreur s'est produite lors de la suppression du/des document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restauré + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Une erreur s'est produite lors de la restauration du document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restauré(s) + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Une erreur s'est produite lors de la restauration du/des document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Nom d'utilisateur @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Le type de données ne peut pas être modifié après la création d'un champ + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Créer un nouveau champ personnalisé @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Modifier le champ personnalisé @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Compte @@ -4659,7 +4711,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 160 - Peut inclure certains placeholders, voir la <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + Peut inclure certains caractères génériques, voir la <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. Assign tags @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filtrer les documents avec ce @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Aucun élément trouvé @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Sélectionner @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Contenu @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Date de modification @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Date d'ajout @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Nom de fichier du média @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Nom du fichier d'origine @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Somme de contrôle MD5 de l'original @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Taille du fichier original @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Type MIME de l'original @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Somme de contrôle MD5 de l'archive @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Taille du fichier archivé @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Métadonnées du document original @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Métadonnées du document archivé @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Prévisualisation @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 Historique @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Enregistrer & suivant @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Enregister & fermer @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Saisir le mot de passe @@ -6698,14 +6754,6 @@ Déplacer vers la corbeille - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Erreur lors de la suppression du document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Aucun compte de messagerie défini. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Règles de courriel @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Ajouter une règle + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Ordre de tri + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Aucune règle de courriel définie. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Booléen @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Nombre entier @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Nombre @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monétaire @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Texte @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 URL @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Lien du Document diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index a3e46e4bc..fa46df653 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 בטל @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + שגיאה במחיקת מסמך + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + שם משתמש @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 חשבון @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 לא נמצאו פריטים @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + בחר @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 תוכן @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 תאריך שינוי @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 תאריך הוספה @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 שם קובץ המסמך @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 שם קובץ מקורי @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 סכום בדיקה MD5 לקובץ המקורי @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 גודל הקובץ המקורי @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 סוג ה-mime המקורי @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 סכום בדיקה MD5 לקובץ בארכיון @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 גודל הקובץ בארכיון @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 מטא-נתונים של המסמך המקורי @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 מטא-נתונים של המסמך בארכיון @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 תצוגה מקדימה @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 שמור & הבא @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 שמור & סגור @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 הזן סיסמה @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - שגיאה במחיקת מסמך - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 לא הוגדרו חשבונות דואר. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 כללי דואר @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 הוסף כלל + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 לא הוגדרו כללים למיון דואר. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index 16e73adb9..e06f8909e 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Discard @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error deleting document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Korisničko ime @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Tip podataka ne može se promijeniti nakon što je polje stvoreno + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Račun @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Odaberi @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Content @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Date modified @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Date added @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Media filename @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Original filename @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Original MD5 checksum @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Original file size @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Original mime type @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Archive MD5 checksum @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Archive file size @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Original document metadata @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Archived document metadata @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Preview @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Save & next @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Save & close @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Enter Password @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No mail accounts defined. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Mail rules @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Add Rule + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No mail rules defined. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index 2fc20cc1d..8174e3521 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Eldob @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Hiba a dokumentum törlésében + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Felhasználónév @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Az adattípus nem módosítható a mező létrehozása után + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Új egyéni mező létrehozása @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Egyéni mező szerkesztése @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Fiók @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Szűrje meg a dokumentumokat ezzel a címmel @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Nincs találat @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Kiválaszt @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Tartalom @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Módosított dátum @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Hozzáadás dátuma @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Média fájlnév @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Eredeti fájlnév @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Eredeti MD5 ellenőrző összeg @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Eredeti fájlméret @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Eredeti mime típus @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Archívum MD5 ellenőrző összege @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Archivált fájl mérete @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Eredeti dokumentum metaadatai @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Archivált dokumentum metaadatok @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Előnézet @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Mentés & következő @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Mentés & bezárás @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Jelszó megadása @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Hiba a dokumentum törlésében - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Nincsenek e-mail fiókok definiálva. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Mail szabályok @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Szabály hozzáadása + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Nincsenek meghatározott levelezési szabályok. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Dátum @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Egész szám @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Szám @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetáris @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Szöveg @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Dokumentum link diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index e0306892c..2765eb9b2 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -499,7 +499,7 @@ src/app/app.component.ts 214 - Workflows give you more control over the document pipeline. + Workflows memberi Anda lebih banyak kontrol atas alur dokumen. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -511,7 +511,7 @@ src/app/components/admin/tasks/tasks.component.html 4 - File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. + File Tasks menunjukkan kepada Anda dokumen yang di-consumed oleh Paperless-ngx sedang menunggu, atau mungkin gagal selama proses. Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -519,7 +519,7 @@ src/app/app.component.ts 230 - Check out the settings for various tweaks to the web app and toggle settings for saved views. + Lihat pengaturan untuk berbagai penyesuaian pada aplikasi web dan beralih ke pengaturan tampilan yang disimpan. Thank you! 🙏 @@ -535,7 +535,7 @@ src/app/app.component.ts 240 - There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. + Ada <em>banyak sekali fitur dan informasi</em> yang tidak kami bahas di sini, tetapi ini bisa membantu Anda untuk memulai. Lihatlah dokumentasi atau kunjungi proyek ini di GitHub untuk mempelajari lebih lanjut atau melaporkan masalah. Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -559,7 +559,7 @@ src/app/components/admin/config/config.component.html 4 - Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence. + Pilihan konfigurasi global yang berlaku untuk setiap pengguna <strong>Paperless-ngx ini</strong>. Pilihan juga dapat diatur menggunakan environment variable atau file konfigurasi, namun variable <em>value</em> di sini akan selalu diutamakan. Read the documentation about this setting @@ -567,7 +567,7 @@ src/app/components/admin/config/config.component.html 25 - Read the documentation about this setting + Silahkan baca dokumentasi tentang pengaturan ini Enable @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Batalkan @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -723,7 +723,7 @@ src/app/components/admin/logs/logs.component.html 4 - Review the log files for the application and for email checking. + Silahkan lihat kembali log file aplikasi dan log email checking. Auto refresh @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -823,7 +823,7 @@ src/app/components/admin/settings/settings.component.html 4 - Options to customize appearance, notifications, saved views and more. Settings apply to the <strong>current user only</strong>. + Pilihan untuk menyesuaikan tampilan, pemberitahuan, tampilan yang disimpan, dan lainnya. Pengaturan berlaku untuk <strong>pengguna saat ini</strong>. Start tour @@ -1035,7 +1035,7 @@ src/app/components/admin/settings/settings.component.html 172,175 - Update checking works by pinging the public GitHub API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Pengecekan pembaruan dilakukan dengan melakukan ping ke publik GitHub API untuk rilis terbaru guna mengetahui apakah versi baru telah tersedia. Pembaruan aplikasi yang sebenarnya harus dilakukan secara manual. No tracking data is collected by the app in any way. @@ -1043,7 +1043,7 @@ src/app/components/admin/settings/settings.component.html 177,179 - No tracking data is collected by the app in any way. + Tidak ada data yang dikumpulkan oleh aplikasi dengan cara apa pun. Enable update checking @@ -1067,7 +1067,7 @@ src/app/components/admin/settings/settings.component.html 187 - Automatically remove inbox tag(s) on save + Secara otomatis menghapus tag kotak masuk saat menyimpan Bulk editing @@ -1103,7 +1103,7 @@ src/app/components/app-frame/global-search/global-search.component.ts 104 - Global search + Pencarian menyeluruh Do not include advanced search results @@ -1111,7 +1111,7 @@ src/app/components/admin/settings/settings.component.html 204 - Do not include advanced search results + Jangan sertakan hasil pencarian lanjutan Full search links to @@ -1119,7 +1119,7 @@ src/app/components/admin/settings/settings.component.html 212 - Full search links to + Ke tautan pencarian lengkap Title and content search @@ -1127,7 +1127,7 @@ src/app/components/admin/settings/settings.component.html 216 - Title and content search + Pencarian Judul dan Isi Konten Advanced search @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1371,7 +1371,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 71 - Edit permissions also grant viewing permissions + Izin mengubah dan juga memberikan izin melihat dokumen Notifications @@ -1419,7 +1419,7 @@ src/app/components/admin/settings/settings.component.html 328 - Suppress notifications on dashboard + Jangan Tampilkan Notifikasi pada dashboard This will suppress all messages about document processing status on the dashboard. @@ -1427,7 +1427,7 @@ src/app/components/admin/settings/settings.component.html 328 - This will suppress all messages about document processing status on the dashboard. + Ini akan menyembunyikan semua pesan tentang status pemrosesan dokumen di dasbor. Saved views @@ -1447,7 +1447,7 @@ src/app/components/admin/settings/settings.component.html 342 - Show warning when closing saved views with unsaved changes + Tampilkan peringatan saat menutup tampilan yang disimpan dengan perubahan yang belum disimpan Views @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1687,7 +1691,7 @@ src/app/components/admin/settings/settings.component.html 380 - Documents page size + Ukuran halaman dokumen Display as @@ -1695,7 +1699,7 @@ src/app/components/admin/settings/settings.component.html 383 - Display as + Tmapilkan sebagai Table @@ -1703,7 +1707,7 @@ src/app/components/admin/settings/settings.component.html 385 - Table + Tabel Small Cards @@ -1711,7 +1715,7 @@ src/app/components/admin/settings/settings.component.html 386 - Small Cards + Small Cards Large Cards @@ -1719,7 +1723,7 @@ src/app/components/admin/settings/settings.component.html 387 - Large Cards + Large Cards Show @@ -1731,7 +1735,7 @@ src/app/components/document-list/document-list.component.html 17 - Show + Tampilkan Default @@ -1751,7 +1755,7 @@ src/app/components/admin/settings/settings.component.html 400 - No saved views defined. + Tidak ada tampilan tersimpan yang didefinisikan. Cancel @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -1839,7 +1843,7 @@ src/app/components/admin/settings/settings.component.ts 65 - Use date format of display language + Gunakan format tanggal dari bahasa yang digunakan Error retrieving users @@ -1863,7 +1867,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 63 - Error retrieving groups + Gagal mengambil daftar grup Saved view "" deleted. @@ -1871,7 +1875,7 @@ src/app/components/admin/settings/settings.component.ts 427 - Saved view "" deleted. + Tampilan tersimpan "" dihapus. Settings were saved successfully. @@ -1879,7 +1883,7 @@ src/app/components/admin/settings/settings.component.ts 561 - Settings were saved successfully. + Pengaturan berhasil disimpan. Settings were saved successfully. Reload is required to apply some changes. @@ -1887,7 +1891,7 @@ src/app/components/admin/settings/settings.component.ts 565 - Settings were saved successfully. Reload is required to apply some changes. + Pengaturan berhasil disimpan. Muat ulang diperlukan untuk menerapkan beberapa perubahan. Reload now @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2115,7 +2119,7 @@ src/app/components/admin/tasks/tasks.component.html 72 - click for full output + klik untuk hasil lengkap Dismiss @@ -2143,7 +2147,7 @@ src/app/components/admin/tasks/tasks.component.html 109 - {VAR_PLURAL, plural, =1 {One task} other { total tasks}} + {VAR_PLURAL, plural, =1 {Satu tugas} other { total tugas}}  ( selected) @@ -2151,7 +2155,7 @@ src/app/components/admin/tasks/tasks.component.html 111 -  ( selected) + ( dipilih) Failed @@ -2159,7 +2163,7 @@ src/app/components/admin/tasks/tasks.component.html 123,125 - Failed + Gagal Complete @@ -2167,7 +2171,7 @@ src/app/components/admin/tasks/tasks.component.html 131,133 - Complete + Selesai Started @@ -2175,7 +2179,7 @@ src/app/components/admin/tasks/tasks.component.html 139,141 - Started + Dimulai Queued @@ -2183,7 +2187,7 @@ src/app/components/admin/tasks/tasks.component.html 147,149 - Queued + Antrian Dismiss selected @@ -2207,7 +2211,7 @@ src/app/components/admin/tasks/tasks.component.ts 65 - Confirm Dismiss All + Konfirmasi batalkan semua Dismiss all tasks? @@ -2263,7 +2267,7 @@ src/app/components/app-frame/app-frame.component.html 274 - Trash + Sampah Manage trashed documents that are pending deletion. @@ -2271,7 +2275,7 @@ src/app/components/admin/trash/trash.component.html 4 - Manage trashed documents that are pending deletion. + Kelola dokumen sampah yang belum dihapus secara permanen. Restore selected @@ -2279,7 +2283,7 @@ src/app/components/admin/trash/trash.component.html 11 - Restore selected + Pulihkan yang dipilih Delete selected @@ -2287,7 +2291,7 @@ src/app/components/admin/trash/trash.component.html 14 - Delete selected + Hapus yang dipilih Empty trash @@ -2295,7 +2299,7 @@ src/app/components/admin/trash/trash.component.html 17 - Empty trash + Kosongkan Sampah Remaining @@ -2303,7 +2307,7 @@ src/app/components/admin/trash/trash.component.html 36 - Remaining + Tersisa days @@ -2311,7 +2315,7 @@ src/app/components/admin/trash/trash.component.html 58 - days + hari Restore @@ -2323,7 +2327,7 @@ src/app/components/admin/trash/trash.component.html 73 - Restore + Pulihkan {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} @@ -2331,7 +2335,7 @@ src/app/components/admin/trash/trash.component.html 89 - {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + {VAR_PLURAL, plural, =1 {Satu dokumen dalam tempat sampah} other { total dokumen dalam tempat sampah}} Confirm delete @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2359,7 +2363,7 @@ src/app/components/admin/trash/trash.component.ts 54 - This operation will permanently delete this document. + Tindakan ini akan menghapus dokumen ini secara permanen. This operation cannot be undone. @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,49 +2409,85 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 - Document deleted + Dokumen dihapus + + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Kesalahan saat menghapus dokumen This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 - This operation will permanently delete the selected documents. + Tindakan ini akan menghapus dokumen yang dipilih secara permanen. This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 - This operation will permanently delete all documents in the trash. + Tindakan ini akan menghapus semua dokumen didalam trash box secara permanen. Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 - Document(s) deleted + Dokumen dihapus + + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Kesalahan saat menghapus dokumen. Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 - Document restored + Dokumen dipulihkan + + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Kesalahan saat memulihkan dokumen Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 - Document(s) restored + Dokumen dipulihkan + + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Kesalahan saat memulihkan dokumen Users & Groups @@ -2463,7 +2503,7 @@ src/app/components/app-frame/app-frame.component.html 244 - Users & Groups + Users & Groups Create, delete and edit users and groups. @@ -2471,7 +2511,7 @@ src/app/components/admin/users-groups/users-groups.component.html 4 - Create, delete and edit users and groups. + Buat, hapus, dan ubah user dan grup. Users @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Nama pengguna @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -2967,7 +3011,7 @@ src/app/components/manage/custom-fields/custom-fields.component.html 2 - Custom Fields + Area Kustom Workflows @@ -3099,7 +3143,7 @@ src/app/components/app-frame/global-search/global-search.component.html 26 - Search + Cari Open @@ -3111,7 +3155,7 @@ src/app/components/app-frame/global-search/global-search.component.html 56 - Open + Buka Filter documents @@ -3119,7 +3163,7 @@ src/app/components/app-frame/global-search/global-search.component.html 62 - Filter documents + Filter Dokumen Download @@ -3155,7 +3199,7 @@ src/app/components/app-frame/global-search/global-search.component.html 87 - No results + Hasil tidak ditemukan Documents @@ -3163,7 +3207,7 @@ src/app/components/app-frame/global-search/global-search.component.html 90 - Documents + Dokumen Saved Views @@ -3171,7 +3215,7 @@ src/app/components/app-frame/global-search/global-search.component.html 96 - Saved Views + Tampilan yang Disimpan Tags @@ -3179,7 +3223,7 @@ src/app/components/app-frame/global-search/global-search.component.html 103 - Tags + Label Correspondents @@ -3187,7 +3231,7 @@ src/app/components/app-frame/global-search/global-search.component.html 110 - Correspondents + Koresponden Document types @@ -3195,7 +3239,7 @@ src/app/components/app-frame/global-search/global-search.component.html 117 - Document types + Jenis dokumen Storage paths @@ -3203,7 +3247,7 @@ src/app/components/app-frame/global-search/global-search.component.html 124 - Storage paths + Lokasi penyimpanan Users @@ -3211,7 +3255,7 @@ src/app/components/app-frame/global-search/global-search.component.html 131 - Users + Pengguna Groups @@ -3219,7 +3263,7 @@ src/app/components/app-frame/global-search/global-search.component.html 138 - Groups + Grup Custom fields @@ -3227,7 +3271,7 @@ src/app/components/app-frame/global-search/global-search.component.html 145 - Custom fields + Area khusus Mail accounts @@ -3235,7 +3279,7 @@ src/app/components/app-frame/global-search/global-search.component.html 152 - Mail accounts + Akun surel Mail rules @@ -3243,7 +3287,7 @@ src/app/components/app-frame/global-search/global-search.component.html 159 - Mail rules + Peraturan surel Workflows @@ -3251,7 +3295,7 @@ src/app/components/app-frame/global-search/global-search.component.html 166 - Workflows + Alur kerja Successfully updated object. @@ -3263,7 +3307,7 @@ src/app/components/app-frame/global-search/global-search.component.ts 231 - Successfully updated object. + Object berhasil diupdate. Error occurred saving object. @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3835,7 +3887,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 22 - Character Set + Set karakter Test @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Akun @@ -3927,7 +3979,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 15 - Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server. + Subfolder harus dipisahkan dengan pembatas, biasanya berupa titik ('.') atau garis miring ('/'), namun hal ini berbeda-beda pada setiap server mail. Maximum age (days) @@ -3951,7 +4003,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 18 - Consumption scope + Ruang lingkup konsumsi See docs for .eml processing requirements @@ -3959,7 +4011,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 18 - See docs for .eml processing requirements + Lihat dokumentasi untuk syarat pemrosesan file dengan extensi .eml Rule order @@ -3975,7 +4027,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 22 - Paperless will only process mails that match all of the filters specified below. + Paperless hanya akan memproses surel yang sama persis all dengan filter spesifik yang diberikan dibawah ini. Filter from @@ -4023,7 +4075,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 27 - Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + Hanya proses dokumen yang sepenuhnya cocok dengan nama file ini jika ditentukan. Karakter pengganti seperti *.pdf atau *faktur* diperbolehkan. Abaikan huruf besar/kecil. Filter attachment filename excluding @@ -4039,7 +4091,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 28 - Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + Jangan proses dokumen yang sepenuhnya sama dengan nama file ini jika ditentukan. Karakter pengganti seperti *.pdf atau *faktur* diperbolehkan. Abaikan huruf besar/kecil. Action @@ -4055,7 +4107,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 31 - Action is only performed when documents are consumed from the mail. Mails without attachments remain entirely untouched. + Tindakan hanya dilakukan ketika dokumen diproses berasal dari email. Email tanpa lampiran tidak akan diproses. Action parameter @@ -4063,7 +4115,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 33 - Action parameter + Parameter tindakan Assign title from @@ -4147,7 +4199,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 31 - Process all files, including 'inline' attachments + Proses semua file termasuk attachment Process message as .eml @@ -4179,7 +4231,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 61 - Mark as read, don't process read mails + Tandai sudah dibaca, jangan proses surel yang sudah dibaca Flag the mail, don't process flagged mails @@ -4187,7 +4239,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 65 - Flag the mail, don't process flagged mails + Berikan bendera pada surel, jangan proses surel yang diberikan bendera Tag the mail with specified tag, don't process tagged mails @@ -4195,7 +4247,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 69 - Tag the mail with specified tag, don't process tagged mails + Berikan tag pada surel degan tag spesifik, jangan proses surel yang diberikan tag Use subject as title @@ -4211,7 +4263,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 80 - Use attachment filename as title + Gunakan nama file attachment sebagai judul Do not assign title from this rule @@ -4219,7 +4271,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 84 - Do not assign title from this rule + Jangan menetapkan judul dari aturan ini Do not assign a correspondent @@ -4227,7 +4279,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 91 - Do not assign a correspondent + Jangan menugaskan koresponden Use mail address @@ -4251,7 +4303,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 103 - Use correspondent selected below + Gunakan koresponden yang dipilih dibawah ini Create new mail rule @@ -4279,7 +4331,7 @@ src/app/components/manage/storage-path-list/storage-path-list.component.ts 42 - Path + Lokasi folder/file e.g. @@ -4295,7 +4347,7 @@ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts 30 - or use slashes to add directories e.g. + Atau gunakan slashes ("/") untuk menambah direktori, contoh: See <a target="_blank" href="https://docs.paperless-ngx.com/advanced_usage/#file-name-handling">documentation</a> for full list. @@ -4303,7 +4355,7 @@ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts 32 - See <a target="_blank" href="https://docs.paperless-ngx.com/advanced_usage/#file-name-handling">documentation</a> for full list. + Lihat <a target="_blank" href="https://docs.paperless-ngx.com/advanced_usage/#file-name-handling">dokumentasi</a> untuk daftar lengkap. Create new storage path @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Saring dokumen dengan ini @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Barang tidak ditemukan @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Pilih @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Konten @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Tanggal dimodifikasi @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Tanggal ditambahkan @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Nama Berkas Media @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Nama file asli @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Checksum MD5 Asli @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Ukuran file asli @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Jenis mime asli @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Archive MD5 checksum @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Ukuran file arsip @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Original document metadata @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Archived document metadata @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Pratinjau @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Simpan & lanjut @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Simpan & tutup @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Masukan Kata Sandi @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Kesalahan saat menghapus dokumen - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No mail accounts defined. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Peraturan surel @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Tambah Aturan + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No mail rules defined. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Tanggal @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Teks @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index 25e9fcca5..81edc53fc 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Scarta @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Errore durante l'eliminazione del documento + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Nome utente @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Il tipo di dati non può essere modificato dopo la creazione del campo + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Crea un nuovo campo personalizzato @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Modifica campo personalizzato @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Profilo @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filtra i documenti con questo @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Nessun elemento trovato @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Seleziona @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Contenuto @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Data modifica @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Data aggiunta @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Nome file @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Nome file originale @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Checksum MD5 originale @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Dimensione file originale @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Tipo mime originale @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Checksum MD5 archivio @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Dimensione file archivio @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Metadati del documento originale @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Metadati del documento archiviato @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Anteprima @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Note @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 Cronologia @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Salva e vai al prossimo @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Salva & chiudi @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Immettere Password @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Errore durante l'eliminazione del documento - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Nessun account e-mail definito. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Regole email @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Aggiungi regola + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Nessuna regola email definita. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Booleano (sì/no) @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Data @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Numero Intero @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Numero @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Valuta @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Testo @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Link Documento diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf index 4725cec0e..096a3a99c 100644 --- a/src-ui/src/locale/messages.ja_JP.xlf +++ b/src-ui/src/locale/messages.ja_JP.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 破棄 @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + ドキュメントの削除に失敗しました + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + ユーザー名 @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ 項目の作成後に、データの種類を変更することはできません + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 新規カスタム項目の作成 @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 カスタム項目の編集 @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 アカウント @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 この でドキュメントをフィルター @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 アイテムが見つかりません @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + 選択 @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 内容 @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 更新日 @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 追加日 @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 メディアファイル名 @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 元のファイル名 @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 元の MD5 チェックサム @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 元のファイルサイズ @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 元の MIME タイプ @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 アーカイブの MD5 チェックサム @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 アーカイブのファイルサイズ @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 元のドキュメントのメタデータ @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 アーカイブされたドキュメントのメタデータ @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 プレビュー @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 メモ @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 保存して次へ @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 保存して閉じる @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 パスワードを入力 @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - ドキュメントの削除に失敗しました - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 メールアカウントは定義されていません。 @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 メールルール @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 ルールを追加 + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 メールルールは定義されていません。 @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 ブール値 @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 日付 @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 整数 @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 数値 @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 通貨 (ドル) @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 文字列 @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 URL @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 ドキュメントリンク diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf index a7ed472d8..f5dfe4e76 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -44,7 +44,7 @@ node_modules/src/ngb-config.ts 13 - «« + «« Previous month @@ -74,7 +74,7 @@ 13 Currently selected slide number read by screen reader - Slide of + 을 슬라이드합니다. Hours @@ -90,7 +90,7 @@ node_modules/src/ngb-config.ts 13 - « + Previous @@ -106,7 +106,7 @@ node_modules/src/ngb-config.ts 13 - MM + MM » @@ -114,7 +114,7 @@ node_modules/src/ngb-config.ts 13 - » + » Select year @@ -162,7 +162,7 @@ node_modules/src/ngb-config.ts 13 - »» + »» First @@ -178,7 +178,7 @@ node_modules/src/ngb-config.ts 13 - Increment hours + 시간 증가 Previous @@ -194,7 +194,7 @@ node_modules/src/ngb-config.ts 13 - Decrement hours + 감소 시간 Next @@ -210,7 +210,7 @@ node_modules/src/ngb-config.ts 13 - Increment minutes + 분 단위 증가 Last @@ -226,7 +226,7 @@ node_modules/src/ngb-config.ts 13 - Decrement minutes + 분 감소 SS @@ -234,7 +234,7 @@ node_modules/src/ngb-config.ts 13 - SS + SS Seconds @@ -250,7 +250,7 @@ node_modules/src/ngb-config.ts 13 - Increment seconds + 초 단위 증가 Decrement seconds @@ -258,7 +258,7 @@ node_modules/src/ngb-config.ts 13 - Decrement seconds + 초 단위로 감소 @@ -499,7 +499,7 @@ src/app/app.component.ts 214 - Workflows give you more control over the document pipeline. + 워크플로를 통해 문서 파이프라인을 더욱 효과적으로 제어할 수 있습니다. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -511,7 +511,7 @@ src/app/components/admin/tasks/tasks.component.html 4 - File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. + 파일 작업에는 사용되었거나, 사용 대기 중이거나, 프로세스 중에 실패했을 수 있는 문서가 표시됩니다. Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -551,7 +551,7 @@ src/app/components/admin/config/config.component.html 2 - Application Configuration + 애플리케이션 설정 Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence. @@ -559,7 +559,7 @@ src/app/components/admin/config/config.component.html 4 - Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence. + 이 설치된 Paperless-ngx의 <strong>모든<strong> 사용자에게 적용되는 글로벌 앱 구성 옵션입니다. 옵션은 환경 변수나 구성 파일을 통해서도 설정할 수 있지만, 여기 설정된 값이 항상 우선합니다. Read the documentation about this setting @@ -567,7 +567,7 @@ src/app/components/admin/config/config.component.html 25 - Read the documentation about this setting + 이 설정에 대한 설명서를 읽어보세요. Enable @@ -575,7 +575,7 @@ src/app/components/admin/config/config.component.html 34 - Enable + 사용 Discard @@ -585,9 +585,9 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 - Discard + 폐기 Save @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -659,7 +659,7 @@ src/app/components/admin/config/config.component.ts 81 - Error retrieving config + 구성 검색 중 오류 발생 Invalid JSON @@ -667,7 +667,7 @@ src/app/components/admin/config/config.component.ts 107 - Invalid JSON + 잘못된 JSON Configuration updated @@ -675,7 +675,7 @@ src/app/components/admin/config/config.component.ts 151 - Configuration updated + 설정 업데이트 An error occurred updating configuration @@ -683,7 +683,7 @@ src/app/components/admin/config/config.component.ts 156 - An error occurred updating configuration + 구성을 업데이트하는 동안 오류가 발생했습니다. File successfully updated @@ -691,7 +691,7 @@ src/app/components/admin/config/config.component.ts 178 - File successfully updated + 파일 업데이트 성공 An error occurred uploading file @@ -699,7 +699,7 @@ src/app/components/admin/config/config.component.ts 183 - An error occurred uploading file + 파일 업로드 중 오류가 발생했습니다. Logs @@ -723,7 +723,7 @@ src/app/components/admin/logs/logs.component.html 4 - Review the log files for the application and for email checking. + 애플리케이션 및 이메일 확인을 위한 로그 파일을 검토합니다. Auto refresh @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -823,7 +823,7 @@ src/app/components/admin/settings/settings.component.html 4 - Options to customize appearance, notifications, saved views and more. Settings apply to the <strong>current user only</strong>. + 외관, 알림, 저장된 보기 등을 사용자 정의할 수 있는 옵션입니다. 설정은 <strong>현재 사용자에게만<strong> 적용됩니다. Start tour @@ -843,7 +843,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 2 - System Status + 시스템 상태 Open Django Admin @@ -883,7 +883,7 @@ src/app/components/admin/settings/settings.component.html 60 - You need to reload the page after applying a new language. + 새 언어를 적용한 후 페이지를 새로 고침해야 합니다. Date display @@ -891,7 +891,7 @@ src/app/components/admin/settings/settings.component.html 68 - Date display + 날짜 표시 Date format @@ -899,7 +899,7 @@ src/app/components/admin/settings/settings.component.html 85 - Date format + 날짜 형식 Short: @@ -907,7 +907,7 @@ src/app/components/admin/settings/settings.component.html 91,92 - Short: + 짧은: Medium: @@ -915,7 +915,7 @@ src/app/components/admin/settings/settings.component.html 95,96 - Medium: + 중간: Long: @@ -923,7 +923,7 @@ src/app/components/admin/settings/settings.component.html 99,100 - Long: + 긴: Items per page @@ -1003,7 +1003,7 @@ src/app/components/admin/settings/settings.component.html 150 - Invert thumbnails in dark mode + 어두운 모드에서 썸네일 반전 Theme Color @@ -1035,7 +1035,7 @@ src/app/components/admin/settings/settings.component.html 172,175 - Update checking works by pinging the public GitHub API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + 업데이트 확인은 최신 릴리스를 확인하기 위해 공개된 GitHub API를 핑하여 새 버전이 있는지 여부를 확인하는 방식으로 작동합니다. 실제 앱 업데이트는 여전히 수동으로 수행해야 합니다. No tracking data is collected by the app in any way. @@ -1043,7 +1043,7 @@ src/app/components/admin/settings/settings.component.html 177,179 - No tracking data is collected by the app in any way. + 앱은 어떠한 방식으로도 추적 데이터를 수집하지 않습니다. Enable update checking @@ -1059,7 +1059,7 @@ src/app/components/admin/settings/settings.component.html 183 - Document editing + 문서 편집중 Automatically remove inbox tag(s) on save @@ -1067,7 +1067,7 @@ src/app/components/admin/settings/settings.component.html 187 - Automatically remove inbox tag(s) on save + 저장 시 받은 편지함 태그 자동 제거 Bulk editing @@ -1075,7 +1075,7 @@ src/app/components/admin/settings/settings.component.html 191 - Bulk editing + 대량 편집중 Show confirmation dialogs @@ -1083,7 +1083,7 @@ src/app/components/admin/settings/settings.component.html 195 - Show confirmation dialogs + 종료 확인 대화 상자 Apply on close @@ -1091,7 +1091,7 @@ src/app/components/admin/settings/settings.component.html 196 - Apply on close + 적용 후 닫기 Global search @@ -1103,7 +1103,7 @@ src/app/components/app-frame/global-search/global-search.component.ts 104 - Global search + 전체 검색 Do not include advanced search results @@ -1111,7 +1111,7 @@ src/app/components/admin/settings/settings.component.html 204 - Do not include advanced search results + 고급 검색 결과를 포함하지 않습니다. Full search links to @@ -1119,7 +1119,7 @@ src/app/components/admin/settings/settings.component.html 212 - Full search links to + 전체 검색 링크 Title and content search @@ -1127,7 +1127,7 @@ src/app/components/admin/settings/settings.component.html 216 - Title and content search + 제목 및 콘텐츠 검색 Advanced search @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1243,7 +1243,7 @@ src/app/components/admin/settings/settings.component.html 243,245 - Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI + 웹 UI를 통해 만든 개체(태그, 메일 규칙 등) 에 대한 설정이 이 사용자 계정에 적용됩니다. Default Owner @@ -1251,7 +1251,7 @@ src/app/components/admin/settings/settings.component.html 250 - Default Owner + 기본 소유자 Objects without an owner can be viewed and edited by all users @@ -1263,7 +1263,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 32 - Objects without an owner can be viewed and edited by all users + 소유자가 없는 개체는 모든 사용자가 보고 편집할 수 있습니다. Default View Permissions @@ -1395,7 +1395,7 @@ src/app/components/admin/settings/settings.component.html 325 - Show notifications when new documents are detected + 새 문서가 감지되면 알림 표시 Show notifications when document processing completes successfully @@ -1403,7 +1403,7 @@ src/app/components/admin/settings/settings.component.html 326 - Show notifications when document processing completes successfully + 문서 처리가 성공적으로 완료되면 알림 표시 Show notifications when document processing fails @@ -1411,7 +1411,7 @@ src/app/components/admin/settings/settings.component.html 327 - Show notifications when document processing fails + 문서 처리 실패 시 알림 표시 Suppress notifications on dashboard @@ -1419,7 +1419,7 @@ src/app/components/admin/settings/settings.component.html 328 - Suppress notifications on dashboard + 대시보드에서 알림 표시 안 함 This will suppress all messages about document processing status on the dashboard. @@ -1427,7 +1427,7 @@ src/app/components/admin/settings/settings.component.html 328 - This will suppress all messages about document processing status on the dashboard. + 이렇게 하면 대시보드에서 문서 처리 상태에 대한 모든 메시지가 표시되지 않습니다. Saved views @@ -1439,7 +1439,7 @@ src/app/components/app-frame/app-frame.component.html 98 - Saved views + 저장된 보기 Show warning when closing saved views with unsaved changes @@ -1447,7 +1447,7 @@ src/app/components/admin/settings/settings.component.html 342 - Show warning when closing saved views with unsaved changes + 저장되지 않은 변경 사항이 있는 저장된 보기를 닫을 때 경고 표시 Views @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1687,7 +1691,7 @@ src/app/components/admin/settings/settings.component.html 380 - Documents page size + 문서 페이지 크기 Display as @@ -1695,7 +1699,7 @@ src/app/components/admin/settings/settings.component.html 383 - Display as + 다음으로 표시 Table @@ -1703,7 +1707,7 @@ src/app/components/admin/settings/settings.component.html 385 - Table + 테이블 Small Cards @@ -1711,7 +1715,7 @@ src/app/components/admin/settings/settings.component.html 386 - Small Cards + 작은 카드 Large Cards @@ -1719,7 +1723,7 @@ src/app/components/admin/settings/settings.component.html 387 - Large Cards + 큰 카드 Show @@ -1731,7 +1735,7 @@ src/app/components/document-list/document-list.component.html 17 - Show + 표시 Default @@ -1751,7 +1755,7 @@ src/app/components/admin/settings/settings.component.html 400 - No saved views defined. + 정의된 저장된 보기가 없습니다. Cancel @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -1851,7 +1855,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 51 - Error retrieving users + 사용자 검색 오류 Error retrieving groups @@ -1863,7 +1867,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 63 - Error retrieving groups + 그룹 검색 오류 Saved view "" deleted. @@ -1871,7 +1875,7 @@ src/app/components/admin/settings/settings.component.ts 427 - Saved view "" deleted. + 저장된 보기 "" 삭제됨. Settings were saved successfully. @@ -1879,7 +1883,7 @@ src/app/components/admin/settings/settings.component.ts 561 - Settings were saved successfully. + 성공적으로 설정이 저장되었습니다 Settings were saved successfully. Reload is required to apply some changes. @@ -1887,7 +1891,7 @@ src/app/components/admin/settings/settings.component.ts 565 - Settings were saved successfully. Reload is required to apply some changes. + 설정이 성공적으로 저장되었습니다. 일부 변경 사항을 적용하려면 새로 고침이 필요합니다. Reload now @@ -1959,7 +1963,7 @@ src/app/components/manage/management-list/management-list.component.html 3 - Clear selection + 선택 지우기 Name @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2115,7 +2119,7 @@ src/app/components/admin/tasks/tasks.component.html 72 - click for full output + 전체 출력을 보려면 클릭 Dismiss @@ -2127,7 +2131,7 @@ src/app/components/admin/tasks/tasks.component.ts 68 - Dismiss + 해제 Open Document @@ -2143,7 +2147,7 @@ src/app/components/admin/tasks/tasks.component.html 109 - {VAR_PLURAL, plural, =1 {One task} other { total tasks}} + {VAR_PLURAL, plural, =1 {One task} other { total tasks}}  ( selected) @@ -2151,7 +2155,7 @@ src/app/components/admin/tasks/tasks.component.html 111 -  ( selected) + ( selected) Failed @@ -2159,7 +2163,7 @@ src/app/components/admin/tasks/tasks.component.html 123,125 - Failed + 실패함 Complete @@ -2167,7 +2171,7 @@ src/app/components/admin/tasks/tasks.component.html 131,133 - Complete + 완료 Started @@ -2175,7 +2179,7 @@ src/app/components/admin/tasks/tasks.component.html 139,141 - Started + 시작됨 Queued @@ -2183,7 +2187,7 @@ src/app/components/admin/tasks/tasks.component.html 147,149 - Queued + 대기열 Dismiss selected @@ -2191,7 +2195,7 @@ src/app/components/admin/tasks/tasks.component.ts 31 - Dismiss selected + 선택 해제 Dismiss all @@ -2199,7 +2203,7 @@ src/app/components/admin/tasks/tasks.component.ts 32 - Dismiss all + 모두 해제 Confirm Dismiss All @@ -2207,7 +2211,7 @@ src/app/components/admin/tasks/tasks.component.ts 65 - Confirm Dismiss All + 모두 해제 확인 Dismiss all tasks? @@ -2215,7 +2219,7 @@ src/app/components/admin/tasks/tasks.component.ts 66 - Dismiss all tasks? + 모든 작업을 해제하시겠습니까? queued @@ -2263,7 +2267,7 @@ src/app/components/app-frame/app-frame.component.html 274 - Trash + 휴지통 Manage trashed documents that are pending deletion. @@ -2271,7 +2275,7 @@ src/app/components/admin/trash/trash.component.html 4 - Manage trashed documents that are pending deletion. + 삭제 대기 중인 휴지통 문서를 관리하세요. Restore selected @@ -2279,7 +2283,7 @@ src/app/components/admin/trash/trash.component.html 11 - Restore selected + 선택한 복원 Delete selected @@ -2287,7 +2291,7 @@ src/app/components/admin/trash/trash.component.html 14 - Delete selected + 선택 항목 삭제 Empty trash @@ -2295,7 +2299,7 @@ src/app/components/admin/trash/trash.component.html 17 - Empty trash + 휴지통 비우기 Remaining @@ -2303,7 +2307,7 @@ src/app/components/admin/trash/trash.component.html 36 - Remaining + 남은 양 days @@ -2311,7 +2315,7 @@ src/app/components/admin/trash/trash.component.html 58 - days + Restore @@ -2323,7 +2327,7 @@ src/app/components/admin/trash/trash.component.html 73 - Restore + 복원 {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} @@ -2331,7 +2335,7 @@ src/app/components/admin/trash/trash.component.html 89 - {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + {VAR_PLURAL, plural, =1 {휴지통에 문서 하나} other {휴지통에 개의 문서}} Confirm delete @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2359,7 +2363,7 @@ src/app/components/admin/trash/trash.component.ts 54 - This operation will permanently delete this document. + 이 작업을 수행하면 이 문서가 영구적으로 삭제됩니다. This operation cannot be undone. @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,49 +2409,85 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 - Document deleted + 문서 삭제됨 + + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + 문서 삭제 오류 This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 - This operation will permanently delete the selected documents. + 이 작업을 수행하면 선택한 문서가 영구적으로 삭제됩니다. This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 - This operation will permanently delete all documents in the trash. + 이 작업을 수행하면 휴지통에 있는 모든 문서가 영구적으로 삭제됩니다. Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 - Document(s) deleted + 문서(들) 삭제됨 + + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + 문서(들) 삭제 중 오류 발생 Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 - Document restored + 문서 복원됨 + + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + 문서 복원 중 오류 발생 Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 - Document(s) restored + 문서(들) 복원됨 + + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + 문서(들) 복원 중 오류 발생 Users & Groups @@ -2471,7 +2511,7 @@ src/app/components/admin/users-groups/users-groups.component.html 4 - Create, delete and edit users and groups. + 사용자 및 그룹을 생성, 삭제 및 편집합니다. Users @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + 사용자 이름 @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -2639,7 +2683,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 96 - Saved user "". + 사용자 ""가 저장되었습니다. Error saving user. @@ -2747,7 +2791,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 148 - Saved group "". + 그룹 ""가 저장되었습니다. Error saving group. @@ -2755,7 +2799,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 156 - Error saving group. + 오류 저장 그룹. Confirm delete user group @@ -2795,7 +2839,7 @@ src/app/components/app-frame/app-frame.component.html 20 - by Paperless-ngx + 오류 저장 그룹. Logged in as @@ -2803,7 +2847,7 @@ src/app/components/app-frame/app-frame.component.html 42 - Logged in as + 로 로그인 되었습니다. My Profile @@ -2879,7 +2923,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 72 - Correspondents + 특파원 Tags @@ -2983,7 +3027,7 @@ src/app/components/manage/workflows/workflows.component.html 2 - Workflows + 워크플로우 Mail @@ -3015,7 +3059,7 @@ src/app/components/app-frame/app-frame.component.html 237 - Configuration + 환경설정 GitHub @@ -3031,7 +3075,7 @@ src/app/components/app-frame/app-frame.component.html 298,299 - is available. + 사용 가능함 Click to view. @@ -3087,7 +3131,7 @@ src/app/components/app-frame/app-frame.component.ts 233 - An error occurred while saving update checking settings. + 설정을 저장하는 중 오류가 발생하였습니다. Search @@ -3099,7 +3143,7 @@ src/app/components/app-frame/global-search/global-search.component.html 26 - Search + 검색 Open @@ -3111,7 +3155,7 @@ src/app/components/app-frame/global-search/global-search.component.html 56 - Open + 열기 Filter documents @@ -3119,7 +3163,7 @@ src/app/components/app-frame/global-search/global-search.component.html 62 - Filter documents + 문서 필터링 Download @@ -3155,7 +3199,7 @@ src/app/components/app-frame/global-search/global-search.component.html 87 - No results + 결과 없음 Documents @@ -3163,7 +3207,7 @@ src/app/components/app-frame/global-search/global-search.component.html 90 - Documents + 문서 Saved Views @@ -3171,7 +3215,7 @@ src/app/components/app-frame/global-search/global-search.component.html 96 - Saved Views + 저장된 보기 Tags @@ -3179,7 +3223,7 @@ src/app/components/app-frame/global-search/global-search.component.html 103 - Tags + 태그 Correspondents @@ -3187,7 +3231,7 @@ src/app/components/app-frame/global-search/global-search.component.html 110 - Correspondents + 특파원 Document types @@ -3195,7 +3239,7 @@ src/app/components/app-frame/global-search/global-search.component.html 117 - Document types + 문서 유형 Storage paths @@ -3203,7 +3247,7 @@ src/app/components/app-frame/global-search/global-search.component.html 124 - Storage paths + 저장소 경로 Users @@ -3211,7 +3255,7 @@ src/app/components/app-frame/global-search/global-search.component.html 131 - Users + 사용자 Groups @@ -3219,7 +3263,7 @@ src/app/components/app-frame/global-search/global-search.component.html 138 - Groups + 그룹 Custom fields @@ -3227,7 +3271,7 @@ src/app/components/app-frame/global-search/global-search.component.html 145 - Custom fields + 사용자 정의 필드 Mail accounts @@ -3235,7 +3279,7 @@ src/app/components/app-frame/global-search/global-search.component.html 152 - Mail accounts + 메일 계정 Mail rules @@ -3243,7 +3287,7 @@ src/app/components/app-frame/global-search/global-search.component.html 159 - Mail rules + 메일 규칙 Workflows @@ -3251,7 +3295,7 @@ src/app/components/app-frame/global-search/global-search.component.html 166 - Workflows + 워크플로우 Successfully updated object. @@ -3263,7 +3307,7 @@ src/app/components/app-frame/global-search/global-search.component.ts 231 - Successfully updated object. + 개체를 성공적으로 가져왔습니다. Error occurred saving object. @@ -3275,7 +3319,7 @@ src/app/components/app-frame/global-search/global-search.component.ts 234 - Error occurred saving object. + 개체를 저장하는 동안 오류가 발생했습니다. Clear @@ -3307,7 +3351,7 @@ src/app/components/common/confirm-button/confirm-button.component.ts 20 - Are you sure? + 확실한가요? Confirmation @@ -3391,7 +3435,7 @@ src/app/components/document-detail/document-detail.component.html 7,8 - of + Pages to remove @@ -3399,7 +3443,7 @@ src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html 16 - Pages to remove + 제거할 페이지 Documents: @@ -3407,7 +3451,7 @@ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html 9 - Documents: + 문서: Use metadata from: @@ -3415,7 +3459,7 @@ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html 22 - Use metadata from: + 메타데이터 사용 출처: Regenerate all metadata @@ -3423,7 +3467,7 @@ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html 24 - Regenerate all metadata + 모든 메타데이터 재생성 Delete original documents after successful merge @@ -3431,7 +3475,7 @@ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html 32 - Delete original documents after successful merge + 병합에 성공한 후 원본 문서 삭제 Note that only PDFs will be included. @@ -3439,7 +3483,7 @@ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html 34 - Note that only PDFs will be included. + PDF만 포함된다는 점에 유의하세요. Note that only PDFs will be rotated. @@ -3447,7 +3491,7 @@ src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html 25 - Note that only PDFs will be rotated. + PDF만 회전된다는 점에 유의하세요. Add Split @@ -3455,7 +3499,7 @@ src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html 28 - Add Split + 분할 추가 Delete original document after successful split @@ -3463,7 +3507,7 @@ src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html 49 - Delete original document after successful split + 병합에 성공한 후 원본 문서 삭제 View @@ -3491,7 +3535,7 @@ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html 10 - Search fields + 필드 검색 Create new field @@ -3499,7 +3543,7 @@ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html 21 - Create new field + 새 필드 만들기 Saved field "". @@ -3511,7 +3555,7 @@ src/app/components/manage/custom-fields/custom-fields.component.ts 56 - Saved field "". + 저장된 필드 """. Error saving field. @@ -3523,7 +3567,7 @@ src/app/components/manage/custom-fields/custom-fields.component.ts 63 - Error saving field. + 필드 저장 오류. now @@ -3631,7 +3675,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 16 - Matching algorithm + 알고리즘 일치 Matching pattern @@ -3651,7 +3695,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 - Matching pattern + 패턴 일치 Case insensitive @@ -3675,7 +3719,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 137 - Case insensitive + 대소문자 구분 안 함 Create new correspondent @@ -3683,7 +3727,7 @@ src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 27 - Create new correspondent + 새 특파원 만들기 Edit correspondent @@ -3691,7 +3735,7 @@ src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 31 - Edit correspondent + 특파원 편집 Data type @@ -3707,23 +3751,31 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html 14 - Data type cannot be changed after a field is created + 필드를 만든 후에는 데이터 유형을 변경할 수 없습니다. + + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 - Create new custom field + 새 사용자 필드 생성 Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 - Edit custom field + 사용자 정의 필드 Create new document type @@ -3731,7 +3783,7 @@ src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.ts 27 - Create new document type + 새로운 문서 유형 생성 Edit document type @@ -3739,7 +3791,7 @@ src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.ts 31 - Edit document type + 문서 유형 수정 Create new item @@ -3747,7 +3799,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 111 - Create new item + 새로운 아이템 생성 Edit item @@ -3755,7 +3807,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 115 - Edit item + 아이템 수정 Create new user group @@ -3763,7 +3815,7 @@ src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts 26 - Create new user group + 새로운 사용자 그룹 생성 Edit user group @@ -3771,7 +3823,7 @@ src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts 30 - Edit user group + 사용자 그룹 편집 IMAP Server @@ -3819,7 +3871,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 21 - Password is token + 비밀번호는 토큰입니다. Check if the password above is a token used for authentication @@ -3827,7 +3879,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 21 - Check if the password above is a token used for authentication + 위의 비밀번호가 인증에 사용되는 토큰인지 확인하세요. Character Set @@ -3843,7 +3895,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 37 - Test + 테스트 No encryption @@ -3859,7 +3911,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 12 - SSL + SSL STARTTLS @@ -3867,7 +3919,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 13 - STARTTLS + STARTTLS Create new mail account @@ -3891,7 +3943,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 87 - Successfully connected to the mail server + 메일 서버에 성공적으로 연결되었습니다. Unable to connect to the mail server @@ -3899,7 +3951,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 88 - Unable to connect to the mail server + 서버에 연결할 수 없습니다 Account @@ -3909,9 +3961,9 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 - Account + 계정 Folder @@ -3919,7 +3971,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 15 - Folder + 폴더 Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server. @@ -3927,7 +3979,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 15 - Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server. + 하위 폴더는 점('.') 또는 슬래시('/') 와 같은 구분 기호로 구분해야 하지만 메일 서버에 따라 다릅니다. Maximum age (days) @@ -3935,7 +3987,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 16 - Maximum age (days) + 최대 연령(일) Attachment type @@ -3943,7 +3995,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 17 - Attachment type + 첨부 파일 유형 Consumption scope @@ -3951,7 +4003,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 18 - Consumption scope + 사용 범위 See docs for .eml processing requirements @@ -3959,7 +4011,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 18 - See docs for .eml processing requirements + .eml 처리 요구 사항에 대한 문서 참조 Rule order @@ -3967,7 +4019,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 19 - Rule order + 규칙 순서 Paperless will only process mails that match all of the filters specified below. @@ -3975,7 +4027,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 22 - Paperless will only process mails that match all of the filters specified below. + Paperless는 아래 지정된 필터들을 모두 만족하는 메일만 처리합니다. Filter from @@ -3983,7 +4035,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 23 - Filter from + 에서 필터링 Filter to @@ -3991,7 +4043,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 24 - Filter to + 필터로 Filter subject @@ -3999,7 +4051,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 25 - Filter subject + 제목 필터링 Filter body @@ -4007,7 +4059,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 26 - Filter body + 필터 본문 Filter attachment filename includes @@ -4015,7 +4067,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 27 - Filter attachment filename includes + 첨부 파일 이름 포함 필터링 Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -4023,7 +4075,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 27 - Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + 지정된 경우 파일 이름과 완전히 일치하는 문서만 사용합니다. *.pdf와 같은 와일드카드 또는 invoice와 같은 것이 허용됩니다. 대소문자를 구분하지 않습니다. Filter attachment filename excluding @@ -4031,7 +4083,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 28 - Filter attachment filename excluding + 필터 첨부 파일명 전용 Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -4039,7 +4091,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 28 - Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + 지정된 경우 파일 이름과 완전히 일치하는 문서만 사용합니다. *.pdf와 같은 와일드카드 또는 *invoice*와 같은 것이 허용됩니다. 대소문자를 구분하지 않습니다. Action @@ -4047,7 +4099,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 31 - Action + 작업 Action is only performed when documents are consumed from the mail. Mails without attachments remain entirely untouched. @@ -4055,7 +4107,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 31 - Action is only performed when documents are consumed from the mail. Mails without attachments remain entirely untouched. + 작업은 메일에서 문서가 소비된 경우에만 수행됩니다. 첨부 파일이 없는 메일은 완전히 그대로 유지됩니다. Action parameter @@ -4063,7 +4115,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 33 - Action parameter + 액션 매개변수 Assign title from @@ -4071,7 +4123,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 35 - Assign title from + 에서 제목 지정 Assign document type @@ -4083,7 +4135,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 162 - Assign document type + 이 문서 유형 지정 Assign correspondent from @@ -4091,7 +4143,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 38 - Assign correspondent from + 에서 통신원을 지정합니다. Assign correspondent @@ -4103,7 +4155,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 163 - Assign correspondent + 에서 통신원을 지정합니다. Assign owner from rule @@ -4111,7 +4163,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 42 - Assign owner from rule + 규칙에서 소유자 지정 Error @@ -4139,7 +4191,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 38 - Only process attachments + 첨부 파일만 처리합니다 Process all files, including 'inline' attachments @@ -4147,7 +4199,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 31 - Process all files, including 'inline' attachments + '인라인' 첨부파일을 포함한 모든 파일을 처리합니다. Process message as .eml @@ -4155,7 +4207,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 42 - Process message as .eml + 메시지를 .eml로 처리 Process message as .eml and attachments separately @@ -4163,7 +4215,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 46 - Process message as .eml and attachments separately + 메시지를 .eml로 처리하고 첨부 파일은 별도로 처리합니다. Move to specified folder @@ -4171,7 +4223,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 57 - Move to specified folder + 지정된 폴더로 이동 Mark as read, don't process read mails @@ -4179,7 +4231,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 61 - Mark as read, don't process read mails + 읽음으로 표시, 읽은 메일 처리하지 않기 Flag the mail, don't process flagged mails @@ -4187,7 +4239,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 65 - Flag the mail, don't process flagged mails + 메일에 플래그를 지정하고, 플래그를 지정한 메일은 처리하지 않습니다. Tag the mail with specified tag, don't process tagged mails @@ -4195,7 +4247,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 69 - Tag the mail with specified tag, don't process tagged mails + 지정된 태그로 메일에 태그를 지정하고 태그가 지정된 메일은 처리하지 않습니다. Use subject as title @@ -4203,7 +4255,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 76 - Use subject as title + 제목으로 주제를 사용 Use attachment filename as title @@ -4211,7 +4263,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 80 - Use attachment filename as title + 첨부 파일 이름을 제목으로 사용 Do not assign title from this rule @@ -4219,7 +4271,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 84 - Do not assign title from this rule + 규칙에서 제목 지정하지 않기 Do not assign a correspondent @@ -4227,7 +4279,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 91 - Do not assign a correspondent + 담당자를 지정하지 마십시오. Use mail address @@ -4235,7 +4287,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 95 - Use mail address + 메일 주소 사용 Use name (or mail address if not available) @@ -4243,7 +4295,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 99 - Use name (or mail address if not available) + 이름(또는 사용할 수 없는 경우 메일 주소) 사용 Use correspondent selected below @@ -4251,7 +4303,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 103 - Use correspondent selected below + 아래에서 선택한 특파원 사용 Create new mail rule @@ -4287,7 +4339,7 @@ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts 28 - e.g. + e.g. or use slashes to add directories e.g. @@ -4295,7 +4347,7 @@ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts 30 - or use slashes to add directories e.g. + 또는 슬래시를 사용하여 디렉토리를 추가할 수 있습니다. 예를 들어, See <a target="_blank" href="https://docs.paperless-ngx.com/advanced_usage/#file-name-handling">documentation</a> for full list. @@ -4303,7 +4355,7 @@ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts 32 - See <a target="_blank" href="https://docs.paperless-ngx.com/advanced_usage/#file-name-handling">documentation</a> for full list. + 전체 목록은 <a target="_blank" href="https://docs.paperless-ngx.com/advanced_usage/#file-name-handling">문서</a>를 참조하세요. Create new storage path @@ -4311,7 +4363,7 @@ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts 37 - Create new storage path + 새 저장소 경로 만들기 Edit storage path @@ -4319,7 +4371,7 @@ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts 41 - Edit storage path + 저장소 경로 Color @@ -4339,7 +4391,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 15 - Inbox tag + 받은 편지함 태그 Inbox tags are automatically assigned to all consumed documents. @@ -4347,7 +4399,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 15 - Inbox tags are automatically assigned to all consumed documents. + 받은 편지함 태그는 소비된 모든 문서에 자동으로 할당됩니다. Create new tag @@ -4355,7 +4407,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts 28 - Create new tag + 새 태그 생성 Edit tag @@ -4363,7 +4415,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts 32 - Edit tag + 태그 편집 Email @@ -4407,7 +4459,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 22 - Active + 활성화 Admin @@ -4415,7 +4467,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 26 - Admin + 관리자 Access logs, Django backend @@ -4423,7 +4475,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 26 - Access logs, Django backend + 액세스 로그, 장고 백엔드 Superuser @@ -4431,7 +4483,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 30 - Superuser + 슈퍼유저 (Grants all permissions and can view objects) @@ -4439,7 +4491,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 30 - (Grants all permissions and can view objects) + (모든 권한을 부여하며 객체를 볼 수 있습니다) Create new user account @@ -4479,7 +4531,7 @@ src/app/components/manage/workflows/workflows.component.html 30 - Enabled + 활성화됨 Triggers @@ -4491,7 +4543,7 @@ src/app/components/manage/workflows/workflows.component.html 20 - Triggers + 트리거 Trigger Workflow On: @@ -4499,7 +4551,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 31 - Trigger Workflow On: + 트리거 워크플로우 켜기 Add Trigger @@ -4507,7 +4559,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 33 - Add Trigger + 트리거 추가 Apply Actions: @@ -4515,7 +4567,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 73 - Apply Actions: + 작업 적용: Add Action @@ -4523,7 +4575,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 75 - Add Action + 작업 추가 Trigger type @@ -4531,7 +4583,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 121 - Trigger type + 트리거 유형 Trigger for documents that match all filters specified below. @@ -4539,7 +4591,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 122 - Trigger for documents that match all filters specified below. + 아래에 지정된 모든 필터와 일치하는 문서에 대해 트리거합니다. Filter filename @@ -4547,7 +4599,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 125 - Filter filename + 파일 이름 필터 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -4555,7 +4607,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 125 - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + 지정된 경우 파일 이름과 완전히 일치하는 문서만 사용합니다. *.pdf와 같은 와일드카드 또는 *invoice*와 같은 것이 허용됩니다. 대소문자를 구분하지 않습니다. Filter sources @@ -4875,7 +4927,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 73 - Removal + 제거 Create new workflow @@ -4883,7 +4935,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 142 - Create new workflow + 새 워크플로 만들기 Edit workflow @@ -4891,7 +4943,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 146 - Edit workflow + 워크플로우 편집 All @@ -4983,7 +5035,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 63 - Click again to exclude items. + 항목을 제외하려면 다시 클릭합니다. Not assigned @@ -4992,7 +5044,7 @@ 340 Filter drop down element to filter for documents with no correspondent/type/tag assigned - Not assigned + 할당되지 않음 Open filter @@ -5000,7 +5052,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts 452 - Open filter + "" 필터 열기 Keyboard shortcuts @@ -5008,7 +5060,7 @@ src/app/components/common/hotkey-dialog/hotkey-dialog.component.ts 20 - Keyboard shortcuts + 키보드 단축키 Remove @@ -5090,9 +5142,9 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 - Filter documents with this + 로 문서 필터링 Remove link @@ -5100,7 +5152,7 @@ src/app/components/common/input/document-link/document-link.component.html 30 - Remove link + 링크 삭제 Open link @@ -5128,7 +5180,7 @@ src/app/components/common/input/drag-drop-select/drag-drop-select.component.ts 23 - Selected items + 선택한 아이템 No items selected @@ -5136,7 +5188,7 @@ src/app/components/common/input/drag-drop-select/drag-drop-select.component.ts 29 - No items selected + 선택한 항목 없음 Upload @@ -5144,7 +5196,7 @@ src/app/components/common/input/file/file.component.html 15 - Upload + 업로드 Show password @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 항목 없음 @@ -5213,7 +5265,7 @@ src/app/components/common/input/switch/switch.component.html 39 - Note: value has not yet been set and will not apply until explicitly changed + 참고: 값이 아직 설정되지 않았으며 명시적으로 변경될 때까지 적용되지 않습니다. Add tag @@ -5229,7 +5281,7 @@ src/app/components/common/input/tags/tags.component.html 20 - Remove tag + 태그 제거 Filter documents with these Tags @@ -5237,7 +5289,7 @@ src/app/components/common/input/tags/tags.component.html 41 - Filter documents with these Tags + 다음 태그를 사용하여 문서 필터링 What's this? @@ -5245,7 +5297,7 @@ src/app/components/common/page-header/page-header.component.html 9 - What's this? + 이것은 무엇입니까? Read more @@ -5253,7 +5305,7 @@ src/app/components/common/page-header/page-header.component.html 15 - Read more + 더 보기 Merge with existing permissions @@ -5261,7 +5313,7 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.html 14 - Merge with existing permissions + 기존 권한과 병합 Set permissions @@ -5285,7 +5337,7 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.ts 74 - Existing owner, user and group permissions will be merged with these settings. + 기존 소유자, 사용자 및 그룹 권한은 이러한 설정과 병합됩니다. Any and all existing owner, user and group permissions will be replaced. @@ -5293,7 +5345,7 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.ts 75 - Any and all existing owner, user and group permissions will be replaced. + 기존의 모든 소유자, 사용자 및 그룹 권한이 대체됩니다. My documents @@ -5325,7 +5377,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 56 - Unowned + 소유자 없음 Hide unowned @@ -5333,7 +5385,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 88 - Hide unowned + 소유자 없음 숨기기 Type @@ -5465,7 +5517,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 59 - Connected social accounts + 소셜 계정 연결 Set a password before disconnecting social account. @@ -5473,7 +5525,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 63 - Set a password before disconnecting social account. + 소셜 계정 연결을 해제하기 전에 비밀번호를 설정하세요. Disconnect @@ -5481,7 +5533,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 69 - Disconnect + 연결 끊기 Disconnect social account @@ -5489,7 +5541,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 71 - Disconnect social account + 소셜 계정 연결 해제 Warning: disconnecting social accounts cannot be undone @@ -5497,7 +5549,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 81 - Warning: disconnecting social accounts cannot be undone + 경고: 소셜 계정 연결 해제는 되돌릴 수 없습니다. Connect new social account @@ -5505,7 +5557,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 86 - Connect new social account + 새로운 소셜 계정 연결하기 Emails must match @@ -5529,7 +5581,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 156 - Profile updated successfully + 프로필 업데이트 성공 Error saving profile @@ -5553,7 +5605,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 210 - Error disconnecting social account + 소셜 계정 연결 해제 Select @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + 선택 @@ -5597,7 +5653,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.html 9,11 - No existing links + 기존 링크 없음 Share @@ -5613,7 +5669,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.html 47 - Share archive version + 아카이브 버전 공유 Expires @@ -5665,7 +5721,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.ts 75 - Error retrieving links + 링크 검색 오류 days @@ -5673,7 +5729,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.ts 94 - days + Error deleting link @@ -5697,7 +5753,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 18 - Environment + 환경 Paperless-ngx Version @@ -5705,7 +5761,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 22 - Paperless-ngx Version + Paperless-ngx 버전 Install Type @@ -5713,7 +5769,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 24 - Install Type + 설치 타입 Server OS @@ -5721,7 +5777,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 26 - Server OS + 서버 OS Media Storage @@ -5729,7 +5785,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 28 - Media Storage + 미디어 저장소 available @@ -5737,7 +5793,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 31 - available + 사용가능 total @@ -5745,7 +5801,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 31 - total + 전체 Database @@ -5753,7 +5809,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 41 - Database + 데이터베이스 Status @@ -5777,7 +5833,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 56 - Migration Status + 마이그레이션 상태 Up to date @@ -5785,7 +5841,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 59 - Up to date + 최신 상태 Latest Migration @@ -5793,7 +5849,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 64 - Latest Migration + 최신 마이그레이션 Pending Migrations @@ -5801,7 +5857,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 66 - Pending Migrations + 보류 중인 마이그레이션 Tasks @@ -5809,7 +5865,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 83 - Tasks + 작업 Redis Status @@ -5817,7 +5873,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 87 - Redis Status + Redis 상태 Celery Status @@ -5825,7 +5881,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 96 - Celery Status + 셀러리 상태 Search Index @@ -5833,7 +5889,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 105 - Search Index + 검색 색인 Last Updated @@ -5841,7 +5897,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 119 - Last Updated + 마지막 업데이트 Classifier @@ -5849,7 +5905,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 121 - Classifier + 분류기 Last Trained @@ -5857,7 +5913,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 139 - Last Trained + 마지막 훈련 Copy Raw Error @@ -5865,7 +5921,7 @@ src/app/components/common/toasts/toasts.component.html 41 - Copy Raw Error + 원본 오류 복사 Hello , welcome to @@ -5873,7 +5929,7 @@ src/app/components/dashboard/dashboard.component.ts 38 - Hello , welcome to + 안녕하세요 님, 에 오신 것을 환영합니다. Welcome to @@ -5881,7 +5937,7 @@ src/app/components/dashboard/dashboard.component.ts 40 - Welcome to + 에 오신 것을 환영합니다. Dashboard updated @@ -5889,7 +5945,7 @@ src/app/components/dashboard/dashboard.component.ts 71 - Dashboard updated + 대시보드 업데이트 Error updating dashboard @@ -5897,7 +5953,7 @@ src/app/components/dashboard/dashboard.component.ts 74 - Error updating dashboard + 대시보드 업데이트 중 오류 발생 Show all @@ -5925,7 +5981,7 @@ src/app/components/document-list/document-list.component.html 275 - Filter by correspondent + 특파원별 필터링 Filter by document type @@ -5941,7 +5997,7 @@ src/app/components/document-list/document-list.component.html 310 - Filter by document type + 문서 유형별로 필터링 Filter by storage path @@ -5957,7 +6013,7 @@ src/app/components/document-list/document-list.component.html 317 - Filter by storage path + 저장 경로별 필터링 View Preview @@ -5989,7 +6045,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 5 - Go to inbox + 받은편지함으로 이동 Documents in inbox @@ -5997,7 +6053,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 6 - Documents in inbox + 받은 편지함의 문서 Go to documents @@ -6029,7 +6085,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 20 - Current ASN + 현재 ASN Other @@ -6070,7 +6126,7 @@ 20 This button dismisses all status messages about processed documents on the dashboard (failed and successful) - Dismiss completed + 선택 해제 {VAR_PLURAL, plural, =1 {One more document} other { more documents}} @@ -6087,7 +6143,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 44 - Processing: + 처리 중: Failed: @@ -6116,7 +6172,7 @@ 346 this string is used to separate processing, failed and added on the file upload widget - , + , Paperless-ngx is running! @@ -6132,7 +6188,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 3 - You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below. + 문서 업로드를 시작할 준비가 되었습니다! 이 웹 앱의 다양한 기능을 직접 살펴보거나 아래 버튼을 사용하여 빠른 둘러보기를 시작하세요. More detail on how to use and configure Paperless-ngx is always available in the documentation. @@ -6140,7 +6196,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 4 - More detail on how to use and configure Paperless-ngx is always available in the documentation. + Paperless-ngx의 사용 및 구성에 대한 자세한 내용은 항상 문서에서 확인할 수 있습니다. Thanks for being a part of the Paperless-ngx community! @@ -6148,7 +6204,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 7 - Thanks for being a part of the Paperless-ngx community! + Paperless-ngx 커뮤니티의 일원이 되어 주셔서 감사합니다! Start the tour @@ -6164,7 +6220,7 @@ src/app/components/document-asn/document-asn.component.html 1 - Searching document with asn + Asn으로 문서 검색하기 - @@ -6172,7 +6228,7 @@ src/app/components/document-detail/document-detail.component.html 11 - - + - + @@ -6180,7 +6236,7 @@ src/app/components/document-detail/document-detail.component.html 19 - + + + Download original @@ -6200,7 +6256,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Reprocess + 재처리 More like this @@ -6212,7 +6268,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 54 - More like this + 비슷한 항목 더보기 Split @@ -6220,7 +6276,7 @@ src/app/components/document-detail/document-detail.component.html 57 - Split + 분할 Rotate @@ -6232,7 +6288,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 114 - Rotate + 회전 Delete page(s) @@ -6240,7 +6296,7 @@ src/app/components/document-detail/document-detail.component.html 65 - Delete page(s) + 페이지 삭제 Close @@ -6264,7 +6320,7 @@ src/app/components/document-detail/document-detail.component.html 92 - Previous + 이전 Details @@ -6272,7 +6328,7 @@ src/app/components/document-detail/document-detail.component.html 105 - Details + 세부 사항 Title @@ -6304,7 +6360,7 @@ src/app/components/document-detail/document-detail.component.html 109 - Archive serial number + 보관 일련 번호 Date created @@ -6312,7 +6368,7 @@ src/app/components/document-detail/document-detail.component.html 110 - Date created + 작성 날짜 Correspondent @@ -6340,7 +6396,7 @@ src/app/data/document.ts 89 - Correspondent + 작성자 Document type @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 내용 @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,23 +6474,23 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 - Date modified + 수정 날짜 Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 - Date added + 추가된 날짜 Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 미디어 파일명 @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 원본 파일명 @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 원본 MD5 체크섬 @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 원본 파일 사이즈 @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 원본 MIME 타입 @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 MD5 체크섬 기록 @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 파일 사이즈 기록 @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 원본 문서 메타데이터 @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 문서 메타데이터 기록됨 @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 미리보기 @@ -6514,23 +6570,23 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 - Notes + 침고 History src/app/components/document-detail/document-detail.component.html - 294 + 304 - History + 이력 Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 저장 후 다음 @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 저장 후 닫기 @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 비밀번호 입력 @@ -6556,7 +6612,7 @@ src/app/components/document-detail/document-detail.component.ts 342,344 - An error occurred loading content: + 콘텐츠를 로드하는 동안 오류가 발생했습니다: Document changes detected @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - 문서 삭제 오류 - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No mail accounts defined. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Mail rules @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Add Rule + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No mail rules defined. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 URL @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 문서 링크 diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index 08c89623b..dae8413b2 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Verwerfen @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error deleting document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Benotzernumm @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Account @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Auswielen @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Inhalt @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Verännert um @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Dobäigesat um @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Dateinumm vum Mediefichier @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Original Dateinumm @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 MD5-Préifzomm vum Original @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Dateigréisst vum Original @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Urspréngleche MIME-Typ @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 MD5-Préifzomm vum Archiv @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Archiv-Dateigréisst @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Metadate vum Original-Dokument @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Metadate vum Archiv-Dokument @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Preview @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Späicheren a weider @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Save & close @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Passwuert aginn @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No mail accounts defined. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Mail rules @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Add Rule + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No mail rules defined. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf index 5a3813858..4460b2703 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Discard @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error deleting document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Lietotājvārds @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Konts @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Nav ierakstu @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Select @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Saturs @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Labošanas datums @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Pievienošanas datums @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Media filename @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Original filename @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Original MD5 checksum @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Original file size @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Original mime type @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Arhīva MD5 kontrolsumma @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Arhīva faila izmērs @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Original document metadata @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Arhivētā dokumenta metadati @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Preview @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Save & next @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Save & close @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Enter Password @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No mail accounts defined. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Mail rules @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Add Rule + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No mail rules defined. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Dokumenta saite diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index 37b9e9bb3..3350d957c 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Negeren @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2263,7 +2267,7 @@ src/app/components/app-frame/app-frame.component.html 274 - Trash + Prullenbak Manage trashed documents that are pending deletion. @@ -2271,7 +2275,7 @@ src/app/components/admin/trash/trash.component.html 4 - Manage trashed documents that are pending deletion. + Beheer documenten in de prullenbak die nog verwijderd moeten worden. Restore selected @@ -2279,7 +2283,7 @@ src/app/components/admin/trash/trash.component.html 11 - Restore selected + Geselecteerde herstellen Delete selected @@ -2287,7 +2291,7 @@ src/app/components/admin/trash/trash.component.html 14 - Delete selected + Geselecteerde verwijderen Empty trash @@ -2295,7 +2299,7 @@ src/app/components/admin/trash/trash.component.html 17 - Empty trash + Prullenbak leegmaken Remaining @@ -2303,7 +2307,7 @@ src/app/components/admin/trash/trash.component.html 36 - Remaining + Resterend days @@ -2311,7 +2315,7 @@ src/app/components/admin/trash/trash.component.html 58 - days + dagen Restore @@ -2323,7 +2327,7 @@ src/app/components/admin/trash/trash.component.html 73 - Restore + Herstellen {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} @@ -2331,7 +2335,7 @@ src/app/components/admin/trash/trash.component.html 89 - {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + {VAR_PLURAL, plural, =1 {Eén document in de prullenbak} other { documenten in totaal in de prullenbak}} Confirm delete @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2359,7 +2363,7 @@ src/app/components/admin/trash/trash.component.ts 54 - This operation will permanently delete this document. + Deze bewerking zal dit document permanent verwijderen. This operation cannot be undone. @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,49 +2409,85 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 - Document deleted + Document verwijderd + + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Fout bij verwijderen document This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 - This operation will permanently delete the selected documents. + Deze bewerking zal de geselecteerde documenten permanent verwijderen. This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 - This operation will permanently delete all documents in the trash. + Deze bewerking zal alle documenten in de prullenbak permanent verwijderen. Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 - Document(s) deleted + Document(en) verwijderd + + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Fout bij verwijderen document(en) Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 - Document restored + Document hersteld + + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Fout bij herstellen document Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 - Document(s) restored + Document(en) hersteld + + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Fout bij herstellen document(en) Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Gebruikersnaam @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Gegevenstype kan niet worden gewijzigd nadat een veld is aangemaakt + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Nieuw aangepast veld @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Bewerk aangepast veld @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Account @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documenten met deze @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Geen items gevonden @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Selecteer @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Inhoud @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Wijzigingsdatum @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Datum toegevoegd @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Media bestandsnaam @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Originele bestandsnaam @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Originele MD5 checksum @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Originele bestandsgrootte @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Oorspronkelijke mime-type @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Archief MD5 checksum @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Archief bestandsgrootte @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Originele document metadata @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Gearchiveerde document metadata @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Voorbeeld @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notities @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 Geschiedenis @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Opslaan & volgende @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Opslaan & sluiten @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Wachtwoord invoeren @@ -6672,7 +6728,7 @@ src/app/components/document-detail/document-detail.component.ts 777 - Do you really want to move the document "" to the trash? + Weet je zeker dat je het document "" naar de prullenbak wilt verplaatsen? Documents can be restored prior to permanent deletion. @@ -6696,15 +6752,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 716 - Move to trash - - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Fout bij verwijderen document + Verplaatsen naar prullenbak Reprocess confirm @@ -6724,7 +6772,7 @@ src/app/components/document-detail/document-detail.component.ts 820 - This operation will permanently recreate the archive file for this document. + Met deze bewerking wordt het gearchiveerde bestand voor dit document permanent opnieuw gemaakt. The archive file will be re-generated with the current settings. @@ -6732,7 +6780,7 @@ src/app/components/document-detail/document-detail.component.ts 821 - The archive file will be re-generated with the current settings. + Het gearchiveerde bestand wordt opnieuw gegenereerd met de huidige instellingen. Reprocess operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -7210,7 +7258,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 713 - Move selected document(s) to the trash? + Verplaats geselecteerde document(en) naar de prullenbak? This operation will permanently recreate the archive files for selected document(s). @@ -7218,7 +7266,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 755 - This operation will permanently recreate the archive files for selected document(s). + Met deze bewerking worden de gearchiveerde bestanden voor geselecteerde document(en) permanent opnieuw aangemaakt. The archive files will be re-generated with the current settings. @@ -7226,7 +7274,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 756 - The archive files will be re-generated with the current settings. + De gearchiveerde bestanden worden opnieuw gegenereerd met de huidige instellingen. This operation will permanently rotate the original version of document(s). @@ -7302,7 +7350,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 80,81 - Created: + Aangemaakt: Added: @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Geen e-mailaccounts gedefinieerd. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 E-mailregels @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Regel toevoegen + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Geen e-mailregels gedefinieerd. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Datum @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Geheel getal @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Getal @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetair @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Tekst @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Documentkoppeling diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index 7d968a8aa..198c49215 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -279,7 +279,7 @@ src/app/app.component.ts 94 - Document was added to Paperless-ngx. + Dokumentet ble lagt til i paperless-ngx. Open document @@ -319,7 +319,7 @@ src/app/app.component.ts 124 - Document is being processed by Paperless-ngx. + Dokument blir behandlet av paperless-ngx. Dashboard @@ -551,7 +551,7 @@ src/app/components/admin/config/config.component.html 2 - Application Configuration + Applikasjonskonfigurasjon Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence. @@ -575,7 +575,7 @@ src/app/components/admin/config/config.component.html 34 - Enable + Aktiver Discard @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Forkast @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -659,7 +659,7 @@ src/app/components/admin/config/config.component.ts 81 - Error retrieving config + Feil ved henting av konfigurasjon Invalid JSON @@ -667,7 +667,7 @@ src/app/components/admin/config/config.component.ts 107 - Invalid JSON + Ugyldig JSON Configuration updated @@ -675,7 +675,7 @@ src/app/components/admin/config/config.component.ts 151 - Configuration updated + Konfigurasjon oppdatert An error occurred updating configuration @@ -683,7 +683,7 @@ src/app/components/admin/config/config.component.ts 156 - An error occurred updating configuration + En feil oppstod under oppdatering av konfigurasjon File successfully updated @@ -691,7 +691,7 @@ src/app/components/admin/config/config.component.ts 178 - File successfully updated + Filen ble oppdatert An error occurred uploading file @@ -699,7 +699,7 @@ src/app/components/admin/config/config.component.ts 183 - An error occurred uploading file + En feil oppsto ved opplasting av fil Logs @@ -723,7 +723,7 @@ src/app/components/admin/logs/logs.component.html 4 - Review the log files for the application and for email checking. + Se gjennom loggfilene for applikasjonen og for sjekk av e-post. Auto refresh @@ -735,7 +735,7 @@ src/app/components/admin/tasks/tasks.component.html 16 - Auto refresh + Oppdater automatisk Loading... @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -843,7 +843,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 2 - System Status + System Status Open Django Admin @@ -1059,7 +1059,7 @@ src/app/components/admin/settings/settings.component.html 183 - Document editing + Dokument redigering Automatically remove inbox tag(s) on save @@ -1067,7 +1067,7 @@ src/app/components/admin/settings/settings.component.html 187 - Automatically remove inbox tag(s) on save + Fjern innboks-etikett(er) automatisk ved lagring Bulk editing @@ -1103,7 +1103,7 @@ src/app/components/app-frame/global-search/global-search.component.ts 104 - Global search + Globalt søk Do not include advanced search results @@ -1111,7 +1111,7 @@ src/app/components/admin/settings/settings.component.html 204 - Do not include advanced search results + Ikke inkluder avanserte søkeresultater Full search links to @@ -1119,7 +1119,7 @@ src/app/components/admin/settings/settings.component.html 212 - Full search links to + Full søk lenker til Title and content search @@ -1127,7 +1127,7 @@ src/app/components/admin/settings/settings.component.html 216 - Title and content search + Titel og innholdssøk Advanced search @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1695,7 +1699,7 @@ src/app/components/admin/settings/settings.component.html 383 - Display as + Vis som Table @@ -1703,7 +1707,7 @@ src/app/components/admin/settings/settings.component.html 385 - Table + Tabell Small Cards @@ -1711,7 +1715,7 @@ src/app/components/admin/settings/settings.component.html 386 - Small Cards + Små kort Large Cards @@ -1719,7 +1723,7 @@ src/app/components/admin/settings/settings.component.html 387 - Large Cards + Store kort Show @@ -1731,7 +1735,7 @@ src/app/components/document-list/document-list.component.html 17 - Show + Vis Default @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2263,7 +2267,7 @@ src/app/components/app-frame/app-frame.component.html 274 - Trash + Papirkurv Manage trashed documents that are pending deletion. @@ -2279,7 +2283,7 @@ src/app/components/admin/trash/trash.component.html 11 - Restore selected + Gjenopprett valgte Delete selected @@ -2287,7 +2291,7 @@ src/app/components/admin/trash/trash.component.html 14 - Delete selected + Slett valgte Empty trash @@ -2295,7 +2299,7 @@ src/app/components/admin/trash/trash.component.html 17 - Empty trash + Tøm papirkurven Remaining @@ -2303,7 +2307,7 @@ src/app/components/admin/trash/trash.component.html 36 - Remaining + Gjenstående days @@ -2323,7 +2327,7 @@ src/app/components/admin/trash/trash.component.html 73 - Restore + Gjenopprett {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,49 +2409,85 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 - Document deleted + Dokument slettet + + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Feil ved sletting av dokumentet This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 - This operation will permanently delete the selected documents. + Denne operasjonen vil slette de valgte dokumentene for godt. This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 - This operation will permanently delete all documents in the trash. + Denne operasjonen vil slette alle dokumentene i papirkurven for godt. Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 - Document(s) deleted + Dokument(er) slettet + + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Feil ved sletting av dokument(er) Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 - Document restored + Dokument gjenopprettet + + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Feil ved gjenoppretting av dokument Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 - Document(s) restored + Dokument(er) gjenopprettet + + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Feil ved gjenoppretting av dokument(er) Users & Groups @@ -2471,7 +2511,7 @@ src/app/components/admin/users-groups/users-groups.component.html 4 - Create, delete and edit users and groups. + Opprette, slette og redigere brukere og grupper. Users @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Brukernavn @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -2619,7 +2663,7 @@ src/app/components/admin/users-groups/users-groups.component.html 84 - No groups defined + Ingen grupper definert Password has been changed, you will be logged out momentarily. @@ -2631,7 +2675,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 159 - Password has been changed, you will be logged out momentarily. + Passordet har blitt endret, du vil bli logget ut øyeblikkelig. Saved user "". @@ -2639,7 +2683,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 96 - Saved user "". + Lagret bruker "". Error saving user. @@ -2795,7 +2839,7 @@ src/app/components/app-frame/app-frame.component.html 20 - by Paperless-ngx + av Paperless-ngx Logged in as @@ -2811,7 +2855,7 @@ src/app/components/app-frame/app-frame.component.html 46 - My Profile + Min Profil Logout @@ -2931,7 +2975,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 80 - Document Types + Dokumenttyper Storage Paths @@ -2947,7 +2991,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 88 - Storage Paths + Lagringsstier Custom Fields @@ -2967,7 +3011,7 @@ src/app/components/manage/custom-fields/custom-fields.component.html 2 - Custom Fields + Egendefinerte felt Workflows @@ -2983,7 +3027,7 @@ src/app/components/manage/workflows/workflows.component.html 2 - Workflows + Arbeidsprosesser Mail @@ -3003,7 +3047,7 @@ src/app/components/app-frame/app-frame.component.html 222 - Administration + Administrasjon Configuration @@ -3015,7 +3059,7 @@ src/app/components/app-frame/app-frame.component.html 237 - Configuration + Konfigurasjon GitHub @@ -3071,7 +3115,7 @@ src/app/components/app-frame/app-frame.component.ts 209 - Sidebar views updated + Sidepanel visning oppdatert Error updating sidebar views @@ -3079,7 +3123,7 @@ src/app/components/app-frame/app-frame.component.ts 212 - Error updating sidebar views + Feil ved oppdatering av sidepanelet An error occurred while saving update checking settings. @@ -3099,7 +3143,7 @@ src/app/components/app-frame/global-search/global-search.component.html 26 - Search + Søk Open @@ -3111,7 +3155,7 @@ src/app/components/app-frame/global-search/global-search.component.html 56 - Open + Åpne Filter documents @@ -3119,7 +3163,7 @@ src/app/components/app-frame/global-search/global-search.component.html 62 - Filter documents + Filtrer dokumenter Download @@ -3155,7 +3199,7 @@ src/app/components/app-frame/global-search/global-search.component.html 87 - No results + Ingen resultater Documents @@ -3163,7 +3207,7 @@ src/app/components/app-frame/global-search/global-search.component.html 90 - Documents + Dokumenter Saved Views @@ -3171,7 +3215,7 @@ src/app/components/app-frame/global-search/global-search.component.html 96 - Saved Views + Lagrede visninger Tags @@ -3179,7 +3223,7 @@ src/app/components/app-frame/global-search/global-search.component.html 103 - Tags + Etiketter Correspondents @@ -3187,7 +3231,7 @@ src/app/components/app-frame/global-search/global-search.component.html 110 - Correspondents + Korrespondenter Document types @@ -3195,7 +3239,7 @@ src/app/components/app-frame/global-search/global-search.component.html 117 - Document types + Dokumenttyper Storage paths @@ -3203,7 +3247,7 @@ src/app/components/app-frame/global-search/global-search.component.html 124 - Storage paths + Lagringsstier Users @@ -3211,7 +3255,7 @@ src/app/components/app-frame/global-search/global-search.component.html 131 - Users + Brukere Groups @@ -3219,7 +3263,7 @@ src/app/components/app-frame/global-search/global-search.component.html 138 - Groups + Grupper Custom fields @@ -3227,7 +3271,7 @@ src/app/components/app-frame/global-search/global-search.component.html 145 - Custom fields + Egendefinerte felt Mail accounts @@ -3235,7 +3279,7 @@ src/app/components/app-frame/global-search/global-search.component.html 152 - Mail accounts + E-postkontoer Mail rules @@ -3243,7 +3287,7 @@ src/app/components/app-frame/global-search/global-search.component.html 159 - Mail rules + E-post regler Workflows @@ -3251,7 +3295,7 @@ src/app/components/app-frame/global-search/global-search.component.html 166 - Workflows + Arbeidsprosesser Successfully updated object. @@ -3263,7 +3307,7 @@ src/app/components/app-frame/global-search/global-search.component.ts 231 - Successfully updated object. + Objektet ble oppdatert. Error occurred saving object. @@ -3275,7 +3319,7 @@ src/app/components/app-frame/global-search/global-search.component.ts 234 - Error occurred saving object. + Feil ved lagring av objekt. Clear @@ -3307,7 +3351,7 @@ src/app/components/common/confirm-button/confirm-button.component.ts 20 - Are you sure? + Er du sikker? Confirmation @@ -3391,7 +3435,7 @@ src/app/components/document-detail/document-detail.component.html 7,8 - of + av Pages to remove @@ -3399,7 +3443,7 @@ src/app/components/common/confirm-dialog/delete-pages-confirm-dialog/delete-pages-confirm-dialog.component.html 16 - Pages to remove + Sider som skal fjernes Documents: @@ -3407,7 +3451,7 @@ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html 9 - Documents: + Dokumenter: Use metadata from: @@ -3415,7 +3459,7 @@ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html 22 - Use metadata from: + Bruk metadata fra: Regenerate all metadata @@ -3423,7 +3467,7 @@ src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html 24 - Regenerate all metadata + Regenerer alle metadata Delete original documents after successful merge @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Konto @@ -4415,7 +4467,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 26 - Admin + Administrator Access logs, Django backend @@ -4675,7 +4727,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 164 - Assign storage path + Tildel lagringssti Assign custom fields @@ -4691,7 +4743,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 168 - Assign owner + Tilordne eier Assign view permissions @@ -4699,7 +4751,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 170 - Assign view permissions + Tilordne visningstillatelser Assign edit permissions @@ -4707,7 +4759,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 189 - Assign edit permissions + Tilordne redigeringstillatelser Remove tags @@ -4715,7 +4767,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 216 - Remove tags + Fjern etiketter Remove all @@ -4747,7 +4799,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 254 - Remove all + Fjern alle Remove correspondents @@ -4755,7 +4807,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 222 - Remove correspondents + Fjern korrespondenter Remove document types @@ -4763,7 +4815,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 228 - Remove document types + Fjern dokumenttyper Remove storage paths @@ -4771,7 +4823,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 234 - Remove storage paths + Fjern lagringsstier Remove custom fields @@ -4787,7 +4839,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 247 - Remove owners + Fjern eiere Remove permissions @@ -4795,7 +4847,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 253 - Remove permissions + Fjern tillatelser View permissions @@ -4803,7 +4855,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 256 - View permissions + Vis rettigheter Edit permissions @@ -4811,7 +4863,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 275 - Edit permissions + Endre rettigheter Consume Folder @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filtrer dokumenter med dette @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Velg @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Innhold @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Dato endret @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Dato lagt til @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Media filnavn @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Opprinnelig filnavn @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Opprinnelig MD5-sjekksum @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Opprinnelig filstørrelse @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Opprinnelig mimetype @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Arkiver MD5-sjekksum @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Arkivstørrelse @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Opprinnelig dokumentmetadata @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Arkivert dokumentmetadata @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Forhåndsvis @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Lagre & Avslutt @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Lagre & Lukk @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Skriv inn passord @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -7146,7 +7194,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 512 - This operation will assign the storage path "" to selected document(s). + Denne operasjonen vil tilegne lagringsstien "" til valgte dokument(er). This operation will remove the storage path from selected document(s). @@ -7154,7 +7202,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 514 - This operation will remove the storage path from selected document(s). + Denne operasjonen vil fjerne lagringsstien fra valgte dokument(er). Confirm custom field assignment @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Ingen e-postkontoer definert. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 E-post regler @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Legg til regel + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Ingen e-postregler definert. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index 7a95f5fad..1cd22afeb 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Zaniechaj @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Dokument został usunięty + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Błąd usuwania dokumentu + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 Ta operacja spowoduje trwałe usunięcie wybranych dokumentów. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 Ta operacja spowoduje trwałe usunięcie wszystkich dokumentów z kosza. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Dokument(y) zostały usunięte + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Błąd usuwania dokumentu(ów) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Dokument został przywrócony + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Błąd przywracania dokumentu + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Dokument(y) zostały przywrócone + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Błąd przywracania dokumentu(ów) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Nazwa użytkownika @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Typ danych nie może być zmieniony po utworzeniu pola + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Utwórz nowe pole dodatkowe @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edytuj pole dodatkowe @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Konto @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filtruj dokumenty z tym @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Nie znaleziono elementów @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Wybierz @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Zawartość @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Data modyfikacji @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Data dodania @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Nazwa pliku @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Oryginalna nazwa pliku @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 MD5 - Suma kontrolna Oryginału @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Rozmiar oryginalnego pliku @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Typ mime oryginału @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Suma kontrolna archiwum @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Rozmiar pliku archiwalnego @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Metadane oryginalnego dokumentu @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Metadane zarchiwizowanego dokumentu @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Podgląd @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notatki @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 Historia @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Zapisz & następny @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Zapisz & zamknij @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Wprowadź hasło @@ -6698,14 +6754,6 @@ Przenieś do kosza - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Błąd usuwania dokumentu - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Nie zdefiniowano kont pocztowych. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Reguły poczty @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Dodaj regułę + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Nie zdefiniowano reguł poczty. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Wartość logiczna @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Data @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Liczba całkowita @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Liczba rzeczywista @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Format księgowy @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Tekst @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Adres URL @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Link do dokumentu diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index 80dc0e5ca..79678e4c0 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -178,7 +178,7 @@ node_modules/src/ngb-config.ts 13 - Increment hours + Acrescentar horas Previous @@ -194,7 +194,7 @@ node_modules/src/ngb-config.ts 13 - Decrement hours + Deduzir horas Next @@ -210,7 +210,7 @@ node_modules/src/ngb-config.ts 13 - Increment minutes + Acrescentar minutos Last @@ -226,7 +226,7 @@ node_modules/src/ngb-config.ts 13 - Decrement minutes + Deduzir minutos SS @@ -250,7 +250,7 @@ node_modules/src/ngb-config.ts 13 - Increment seconds + Acrescentar segundos Decrement seconds @@ -258,7 +258,7 @@ node_modules/src/ngb-config.ts 13 - Decrement seconds + Deduzir segundos @@ -491,7 +491,7 @@ src/app/components/manage/mail/mail.component.html 4 - Manage e-mail accounts and rules for automatically importing documents. + Gerenciar contas de e-mail e regras para importação automática de documentos Workflows give you more control over the document pipeline. @@ -575,7 +575,7 @@ src/app/components/admin/config/config.component.html 34 - Enable + Habilitar Discard @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Descartar @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1103,7 +1103,7 @@ src/app/components/app-frame/global-search/global-search.component.ts 104 - Global search + Pesquisa global Do not include advanced search results @@ -1111,7 +1111,7 @@ src/app/components/admin/settings/settings.component.html 204 - Do not include advanced search results + Não incluir resultados de pesquisa avançados Full search links to @@ -1119,7 +1119,7 @@ src/app/components/admin/settings/settings.component.html 212 - Full search links to + Links completos de pesquisa para Title and content search @@ -1127,7 +1127,7 @@ src/app/components/admin/settings/settings.component.html 216 - Title and content search + Pesquisa por Título e Conteúdo Advanced search @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1687,7 +1691,7 @@ src/app/components/admin/settings/settings.component.html 380 - Documents page size + Tamanho da página de Documentos Display as @@ -1695,7 +1699,7 @@ src/app/components/admin/settings/settings.component.html 383 - Display as + Exibir como Table @@ -1703,7 +1707,7 @@ src/app/components/admin/settings/settings.component.html 385 - Table + Tabela Small Cards @@ -1711,7 +1715,7 @@ src/app/components/admin/settings/settings.component.html 386 - Small Cards + Cartões pequenos Large Cards @@ -1719,7 +1723,7 @@ src/app/components/admin/settings/settings.component.html 387 - Large Cards + Cartões grandes Show @@ -1731,7 +1735,7 @@ src/app/components/document-list/document-list.component.html 17 - Show + Mostrar Default @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2143,7 +2147,7 @@ src/app/components/admin/tasks/tasks.component.html 109 - {VAR_PLURAL, plural, =1 {One task} other { total tasks}} + {VAR_PLURAL, plural, =1 {Uma tarefa} other { de tarefas}}  ( selected) @@ -2263,7 +2267,7 @@ src/app/components/app-frame/app-frame.component.html 274 - Trash + Lixeira Manage trashed documents that are pending deletion. @@ -2271,7 +2275,7 @@ src/app/components/admin/trash/trash.component.html 4 - Manage trashed documents that are pending deletion. + Gerenciar documentos da lixeira que estão pendentes de exclusão. Restore selected @@ -2279,7 +2283,7 @@ src/app/components/admin/trash/trash.component.html 11 - Restore selected + Restaurar os itens selecionados Delete selected @@ -2287,7 +2291,7 @@ src/app/components/admin/trash/trash.component.html 14 - Delete selected + Excluir os itens selecionados Empty trash @@ -2295,7 +2299,7 @@ src/app/components/admin/trash/trash.component.html 17 - Empty trash + Esvaziar Lixeira Remaining @@ -2311,7 +2315,7 @@ src/app/components/admin/trash/trash.component.html 58 - days + dias Restore @@ -2323,7 +2327,7 @@ src/app/components/admin/trash/trash.component.html 73 - Restore + Restaurar {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} @@ -2331,7 +2335,7 @@ src/app/components/admin/trash/trash.component.html 89 - {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + {VAR_PLURAL, plural, one {Nenhum documento}=1 { documento} other { documentos}} na lixeira Confirm delete @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2359,7 +2363,7 @@ src/app/components/admin/trash/trash.component.ts 54 - This operation will permanently delete this document. + Esta operação irá apagar permanentemente este documento. This operation cannot be undone. @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,49 +2409,85 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 - Document deleted + Documento excluído + + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Erro ao apagar documento This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 - This operation will permanently delete the selected documents. + Essa operação irá excluir permanentemente o(s) documento(s) selecionado(s). This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 - This operation will permanently delete all documents in the trash. + Esta operação irá excluir permanentemente todos os documentos da lixeira. Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 - Document(s) deleted + Documento(s) excluído(s) + + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Erro ao apagar documento(s) Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 - Document restored + Documento restaurado + + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Erro ao restaurar documento Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 - Document(s) restored + Documento(s) restaurados + + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Erro ao restaurar documento(s) Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Usuário @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3099,7 +3143,7 @@ src/app/components/app-frame/global-search/global-search.component.html 26 - Search + Pesquisa Open @@ -3709,11 +3753,19 @@ Tipo de dado não pode ser alterado após a criação do campo + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Novo campo personalizado @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Editar campo personalizado @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Conta @@ -5091,7 +5143,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc src/app/components/common/input/select/select.component.ts - 158 + 163 Filtrar documentos com esse @@ -5184,7 +5236,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5204,7 +5256,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Nenhum item encontrado @@ -5570,6 +5622,10 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Selecione @@ -6399,7 +6455,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Conteúdo @@ -6407,7 +6463,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6419,7 +6475,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Data de modificação @@ -6427,7 +6483,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Data de adição @@ -6435,7 +6491,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Nome do arquivo @@ -6443,7 +6499,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Nome do arquivo original @@ -6451,7 +6507,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Soma de verificação MD5 original @@ -6459,7 +6515,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Tamanho do arquivo original @@ -6467,7 +6523,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Tipo mime original @@ -6475,7 +6531,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Soma de verificação MD5 de arquivamento @@ -6483,7 +6539,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Tamanho arquivado @@ -6491,7 +6547,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Metadados do documento original @@ -6499,7 +6555,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Metadados do documento arquivado @@ -6507,7 +6563,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Pré-visualizar @@ -6515,7 +6571,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notas @@ -6523,7 +6579,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6531,7 +6587,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Salvar & próximo @@ -6539,7 +6595,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Salvar & Fechar @@ -6547,7 +6603,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Digite a senha @@ -6699,14 +6755,6 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8109,7 +8157,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Nenhuma conta de e-mail definida. @@ -8117,7 +8165,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Regras de e-mail @@ -8125,15 +8173,23 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Adicionar Regra + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Nenhuma regra de e-mail definida. @@ -8621,7 +8677,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Boolean src/app/data/custom-field.ts - 17 + 18 Booleano @@ -8629,7 +8685,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Date src/app/data/custom-field.ts - 21 + 22 Data @@ -8637,7 +8693,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Integer src/app/data/custom-field.ts - 25 + 26 Número inteiro @@ -8645,7 +8701,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Number src/app/data/custom-field.ts - 29 + 30 Número @@ -8653,7 +8709,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Monetary src/app/data/custom-field.ts - 33 + 34 Unidade monetária @@ -8661,7 +8717,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Text src/app/data/custom-field.ts - 37 + 38 Texto @@ -8669,7 +8725,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Url src/app/data/custom-field.ts - 41 + 42 URL @@ -8677,7 +8733,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index 00659cfaf..7f4ff8352 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Descartar @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error deleting document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Nome de utilizador @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Conta @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filtrar documentos com este @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Selecione @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Conteúdo @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Data de modificação @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Data de adição @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Nome do ficheiro @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Nome original do ficheiro @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Checksum MD5 original @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Tamanho do ficheiro original @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Tipo mime original @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Checksum MD5 do arquivo @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Tamanho do arquivo @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Metadados do documento original @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Metadados do documento arquivado @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Pré-Visualizar @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Guardar & próximo @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Gravar e fechar @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Introduzir Palavra-Passe @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Sem contas de email definidas. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Regras de email @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Adicionar Regra + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Sem regras de email definidas. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index 1ed68b1fa..dd63cb252 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Renunță @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error deleting document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Nume @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Cont @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Selectează @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Conținut @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Data ultimei modificări @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Data adăugării @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Numele fișierului media @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Original filename @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 MD5 original @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Dimensiunea fișierului original @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Tip MIME original @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 MD5 arhivă @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Mărimea arhivei @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Metadatele documentului original @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Metadatele documentului arhivat @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Preview @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Salvează și continuă @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Save & close @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Enter Password @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No mail accounts defined. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Mail rules @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Add Rule + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No mail rules defined. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index 0a3af6cc0..8f24190d4 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Отменить @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Ошибка удаления документа + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Имя пользователя @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Нельзя изменить дататип после создания поля + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Создать новое пользовательское поле @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Редактировать пользовательское поле @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Учётная запись @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Фильтровать документы с этим @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Объектов не найдено @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Выбрать @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Содержимое @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Дата изменения @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Дата добавления @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Имя файла @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Исходное имя файла @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Оригинальная MD5 сумма @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Размер оригинального файла @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Оригинальный MIME тип @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 MD5 сумма архива @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Размер архива @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Метаданные оригинального документа @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Метаданные архивного документа @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Предпросмотр @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Примечания @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Сохранить & следующий @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Сохранить & закрыть @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Введите пароль @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Ошибка удаления документа - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Нет заданных учётных записей почты. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Правила почты @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Добавить правило + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Нет заданных почтовых правил. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Логическое значение @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Дата @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Целое число @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Число @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Денежный @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Текст @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Ссылка @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Ярлык на документ diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index a7adc5a45..2de0f162e 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Zahodiť @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error deleting document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Meno používateľa @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Účet @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filtrovať dokumenty pomocou @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Vybrať @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Obsah @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Dátum úpravy @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Dátum pridania @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Názov súboru médií @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Originál - názov @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Originál - MD5 @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Originál - veľkosť @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Pôvodný MIME typ @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Archív - MD5 @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Archív - veľkosť @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Metadáta originálu @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Metadáta archívu @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Náhľad @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Uložiť & nasledujúci @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Uložiť & zatvoriť @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Zadajte Heslo @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Nie sú definované e-mailové účty. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 E-mailové pravidlá @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Pridať pravidlo + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Nie sú definované e-mailové pravidlá. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index d1a0a9ef3..dd72ce914 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Zavrzi @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Napaka pri brisanju dokumenta + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Uporabniško ime @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Podatkovnega tipa ni mogoče spremeniti, potem ko je polje ustvarjeno + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Ustvari novo polje po meri @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Uredi polje po meri @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Račun @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filtriraj dokumente s tem @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Ni najdenih elementov @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Izberi @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Vsebina @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Datum spremembe @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Datum vnosa @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Ime medijske datoteke @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Izvirno ime datoteke @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Izvirni MD5 checksum @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Izvirna velikost datoteke @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Izvirna mime vrsta @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Arhiviran MD5 checksum @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Velikost arhivske datoteke @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Izvirni metapodatki dokumenta @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Arhivirani metapodatki dokumenta @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Predogled @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Shrani & naslednjo @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Shrani & zapri @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Vnesi geslo @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Napaka pri brisanju dokumenta - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 E-poštni naslov ni nastavljen. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 E-poštna pravila @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Dodaj pravilo + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 E-poštni pravila niso nastavljena. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Logična vrednost @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Datum @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Celo število @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Številka @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Denarno @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Besedilo @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index 1d74b8951..ee3d744a7 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Odbaci @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Greška prilikom brisanja dokumenta + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Korisničko ime @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Tip podataka se ne može promeniti nakon kreiranja polja + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Kreiraj novo dodatno polje @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Izmeni dodatno polje @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Nalog @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filtriraj dokumenta po @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Nijedna stavka nije pronađena @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Izaberi @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Sadržaj @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Datum izmene @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Datum dodavanja @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Naziv fajla @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Originalno ime fajla @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Originalni MD5 checksum @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Originalna veličina fajla @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Originalni MIME tip @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Arhivni MD5 checksum @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Arhivna veličina fajla @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Metapodaci originalnog dokumenta @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Metapodaci arhivnog dokumenta @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Pregled @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Sačuvaj & sledeći @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Sačuvaj i zatvori @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Unesite lozinku @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Greška prilikom brisanja dokumenta - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Nema definisanih e-mail naloga. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Pravila e-pošte @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Dodaj pravilo + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Nema definisanih e-mail pravila. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Logičko @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Datum @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Ceo broj @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Broj @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetarno @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Tekst @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Veza ka dokumentu diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index ebbbd7192..1af58d3b2 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Avfärda @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error deleting document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Användarnamn @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Konto @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filtrera dokument med denna @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Välj @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Innehåll @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Datum ändrad @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Datum tillagd @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Media filnamn @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Ursprungligt filnamn @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Original MD5-kontrollsumma @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Ursprunglig filstorlek @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Ursprunglig mime-typ @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Arkiv MD5-kontrollsumma @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Arkiv filstorlek @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Ursprungliga dokument metadata @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Arkiverade dokument metadata @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Förhandsgranska @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Spara & nästa @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Spara & stäng @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Ange lösenord @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Inga e-postkonton har angetts. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 E-postregler @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Lägg regel + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Inga e-postregler har angetts. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf index 0432644b4..64c83b70e 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 ละทิ้ง @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + เกิดข้อผิดพลาดในการลบเอกสาร + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + ชื่อผู้ใช้ @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 บัญชี @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + เลือก @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 เนื้อหา @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 วันที่แก้ไข @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 วันที่เพิ่ม @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 ชื่อไฟล์สื่อ @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 ชื่อไฟล์ต้นฉบับ @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Original MD5 checksum @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 ขนาดไฟล์เดิม @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 MIME Type ของไฟล์เดิม @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 MD5 checksum ของไฟล์เก็บถาวร @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 ขนาดไฟล์เก็บถาวร @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Original document metadata @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Archived document metadata @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 ตัวอย่าง @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 บันทึก & ถัดไป @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 บันทึก & ปิด @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 กรอกรหัสผ่าน @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - เกิดข้อผิดพลาดในการลบเอกสาร - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No mail accounts defined. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 กฎเมล @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 เพิ่มกฎ + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No mail rules defined. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index 7fe4b8fcb..d9b239766 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Gözardı et @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error deleting document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Kullanıcı Adı @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Bir alan oluşturulduktan sonra veri türü değiştirilemez + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Hesap @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Seç @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Içerik @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Değiştirilme tarihi @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Ekleme tarihi @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Medya dosya ismi @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Orjinal dosya adı @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Orijinal MD5 sağlama toplamı @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Orijinal dosya boyutu @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Orijinal mime türü @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Arşiv MD5 sağlama toplamı @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Arşiv dosya boyutu @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Orijinal belge meta verisi @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Arşivlenen belge meta verileri @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Ön İzleme @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Kaydet & sonraki @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Save & close @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Parolayı girin @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No mail accounts defined. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Mail rules @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Add Rule + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No mail rules defined. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf index b5c91fe8b..0e1d40b2c 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Скасувати @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Помилка видалення документа + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Ім'я користувача @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Тип даних не можна змінити після створення поля + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Створити нове власне поле @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Редагувати власне поле @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Обліковий запис @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Фільтрувати документи за допомогою @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 Нічого не знайдено @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Вибрати @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Вміст @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Дата зміни @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Дата додавання @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Назва медіафайлу @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Оригінальна назва файлу @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Оригінальна контрольна сума MD5 @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Оригінальний розмір файлу @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Оригінальний тип MIME @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Контрольна сума MD5 архіву @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Розмір архіву @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Метадані оригінального документа @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Метадані архівованого документа @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Попередній перегляд @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Примітки @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Зберегти та перейти до наступного @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Зберегти та закрити @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Введіть пароль @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Помилка видалення документа - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 Немає поштових скриньок. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Правила пошти @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Додати правило + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 Немає правил пошти. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Логічне значення @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Дата @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Ціле число @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Номер @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Монетарний @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Текст @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url-адреса @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Посилання на документ diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf index b1e39ec04..b74d1b04e 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Discard @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error deleting document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Username @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Loại dữ liệu không thể thay đổi sau khi trường được tạo + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Tạo trường tùy chỉnh mới @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Chỉnh sửa trường tùy chỉnh @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Account @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Chọn @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Content @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Date modified @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Date added @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Media filename @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Original filename @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Original MD5 checksum @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Original file size @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Original mime type @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Archive MD5 checksum @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Archive file size @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Original document metadata @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Archived document metadata @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Preview @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Save & next @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Save & close @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Enter Password @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No mail accounts defined. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Mail rules @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Add Rule + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No mail rules defined. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index 555070e66..9f3134312 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 放弃 @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + 删除文档出错。 + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + 用户名 @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ 创建字段后不能更改数据类型 + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 创建新的自定义字段 @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 编辑自定义字段 @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 账号 @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + 选择 @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 内容 @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 修改日期 @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 日期已添加 @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 媒体文件名 @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 原文件名 @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 原始 MD5 校验和 @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 原始文件大小 @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 原始 mime 类型 @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 归档 MD5 校验和 @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 归档文件大小 @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 原始文档元数据 @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 归档文档元数据 @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 预览 @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 保存 & 下一个 @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 保存并关闭 @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 输入密码 @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - 删除文档出错。 - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No mail accounts defined. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Mail rules @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Add Rule + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No mail rules defined. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index 846356d9e..5d6670d0a 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -585,7 +585,7 @@ src/app/components/document-detail/document-detail.component.html - 337 + 347 Discard @@ -605,7 +605,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 19 + 36 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -645,7 +645,7 @@ src/app/components/document-detail/document-detail.component.html - 329 + 339 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -789,7 +789,7 @@ src/app/components/document-detail/document-detail.component.html - 346 + 356 src/app/components/document-list/document-list.component.html @@ -797,7 +797,7 @@ src/app/components/manage/mail/mail.component.html - 101 + 105 src/app/components/manage/management-list/management-list.component.html @@ -1193,7 +1193,7 @@ src/app/components/document-detail/document-detail.component.html - 305 + 315 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -1205,11 +1205,11 @@ src/app/components/manage/mail/mail.component.html - 37 + 39 src/app/components/manage/mail/mail.component.html - 81 + 85 src/app/components/manage/management-list/management-list.component.html @@ -1525,11 +1525,11 @@ src/app/components/manage/mail/mail.component.html - 22 + 23 src/app/components/manage/mail/mail.component.html - 66 + 69 src/app/components/manage/management-list/management-list.component.html @@ -1573,7 +1573,7 @@ src/app/components/admin/trash/trash.component.ts - 80 + 86 src/app/components/admin/users-groups/users-groups.component.html @@ -1583,6 +1583,10 @@ src/app/components/admin/users-groups/users-groups.component.html 76 + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 26 + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 @@ -1617,11 +1621,11 @@ src/app/components/manage/mail/mail.component.html - 40 + 42 src/app/components/manage/mail/mail.component.html - 84 + 88 src/app/components/manage/management-list/management-list.component.html @@ -1769,7 +1773,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 18 + 35 src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html @@ -2029,7 +2033,7 @@ src/app/components/manage/mail/mail.component.html - 64 + 66 src/app/components/manage/management-list/management-list.component.html @@ -2341,7 +2345,7 @@ src/app/components/admin/trash/trash.component.ts - 74 + 80 src/app/components/manage/management-list/management-list.component.ts @@ -2369,7 +2373,7 @@ src/app/components/admin/trash/trash.component.ts - 78 + 84 src/app/components/admin/users-groups/users-groups.component.ts @@ -2405,15 +2409,27 @@ Document deleted src/app/components/admin/trash/trash.component.ts - 63 + 64 Document deleted + + Error deleting document + + src/app/components/admin/trash/trash.component.ts + 69 + + + src/app/components/document-detail/document-detail.component.ts + 799 + + Error deleting document + This operation will permanently delete the selected documents. src/app/components/admin/trash/trash.component.ts - 76 + 82 This operation will permanently delete the selected documents. @@ -2421,7 +2437,7 @@ This operation will permanently delete all documents in the trash. src/app/components/admin/trash/trash.component.ts - 77 + 83 This operation will permanently delete all documents in the trash. @@ -2429,26 +2445,50 @@ Document(s) deleted src/app/components/admin/trash/trash.component.ts - 87 + 94 Document(s) deleted + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 101 + + Error deleting document(s) + Document restored src/app/components/admin/trash/trash.component.ts - 97 + 113 Document restored + + Error restoring document + + src/app/components/admin/trash/trash.component.ts + 117 + + Error restoring document + Document(s) restored src/app/components/admin/trash/trash.component.ts - 106 + 127 Document(s) restored + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 133 + + Error restoring document(s) + Users & Groups @@ -2507,6 +2547,10 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 + + src/app/components/manage/mail/mail.component.html + 22 + Username @@ -2561,11 +2605,11 @@ src/app/components/manage/mail/mail.component.html - 34 + 36 src/app/components/manage/mail/mail.component.html - 78 + 82 src/app/components/manage/management-list/management-list.component.html @@ -3709,11 +3753,19 @@ Data type cannot be changed after a field is created + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + Create new custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 36 + 80 Create new custom field @@ -3721,7 +3773,7 @@ Edit custom field src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts - 40 + 84 Edit custom field @@ -3909,7 +3961,7 @@ src/app/components/manage/mail/mail.component.html - 65 + 68 Account @@ -5090,7 +5142,7 @@ src/app/components/common/input/select/select.component.ts - 158 + 163 Filter documents with this @@ -5183,7 +5235,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 62 src/app/components/common/tag/tag.component.html @@ -5203,7 +5255,7 @@ No items found src/app/components/common/input/select/select.component.ts - 92 + 97 No items found @@ -5569,6 +5621,10 @@ src/app/components/document-list/document-list.component.html 6 + + src/app/data/custom-field.ts + 50 + Select @@ -6398,7 +6454,7 @@ Content src/app/components/document-detail/document-detail.component.html - 201 + 211 Content @@ -6406,7 +6462,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 210 + 220 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -6418,7 +6474,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 217 + 227 Date modified @@ -6426,7 +6482,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 221 + 231 Date added @@ -6434,7 +6490,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 225 + 235 Media filename @@ -6442,7 +6498,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 229 + 239 Original filename @@ -6450,7 +6506,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 233 + 243 Original MD5 checksum @@ -6458,7 +6514,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 237 + 247 Original file size @@ -6466,7 +6522,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 241 + 251 Original mime type @@ -6474,7 +6530,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 246 + 256 Archive MD5 checksum @@ -6482,7 +6538,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 252 + 262 Archive file size @@ -6490,7 +6546,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 261 + 271 Original document metadata @@ -6498,7 +6554,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 264 + 274 Archived document metadata @@ -6506,7 +6562,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 271 + 281 Preview @@ -6514,7 +6570,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 283,286 + 293,296 Notes @@ -6522,7 +6578,7 @@ History src/app/components/document-detail/document-detail.component.html - 294 + 304 History @@ -6530,7 +6586,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 331 + 341 Save & next @@ -6538,7 +6594,7 @@ Save & close src/app/components/document-detail/document-detail.component.html - 334 + 344 Save & close @@ -6546,7 +6602,7 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 385 + 395 Enter Password @@ -6698,14 +6754,6 @@ Move to trash - - Error deleting document - - src/app/components/document-detail/document-detail.component.ts - 799 - - Error deleting document - Reprocess confirm @@ -8108,7 +8156,7 @@ No mail accounts defined. src/app/components/manage/mail/mail.component.html - 48 + 50 No mail accounts defined. @@ -8116,7 +8164,7 @@ Mail rules src/app/components/manage/mail/mail.component.html - 56 + 58 Mail rules @@ -8124,15 +8172,23 @@ Add Rule src/app/components/manage/mail/mail.component.html - 58 + 60 Add Rule + + Sort Order + + src/app/components/manage/mail/mail.component.html + 67 + + Sort Order + No mail rules defined. src/app/components/manage/mail/mail.component.html - 92 + 96 No mail rules defined. @@ -8620,7 +8676,7 @@ Boolean src/app/data/custom-field.ts - 17 + 18 Boolean @@ -8628,7 +8684,7 @@ Date src/app/data/custom-field.ts - 21 + 22 Date @@ -8636,7 +8692,7 @@ Integer src/app/data/custom-field.ts - 25 + 26 Integer @@ -8644,7 +8700,7 @@ Number src/app/data/custom-field.ts - 29 + 30 Number @@ -8652,7 +8708,7 @@ Monetary src/app/data/custom-field.ts - 33 + 34 Monetary @@ -8660,7 +8716,7 @@ Text src/app/data/custom-field.ts - 37 + 38 Text @@ -8668,7 +8724,7 @@ Url src/app/data/custom-field.ts - 41 + 42 Url @@ -8676,7 +8732,7 @@ Document Link src/app/data/custom-field.ts - 45 + 46 Document Link diff --git a/src/locale/af_ZA/LC_MESSAGES/django.po b/src/locale/af_ZA/LC_MESSAGES/django.po index a038f9552..ebef30be5 100644 --- a/src/locale/af_ZA/LC_MESSAGES/django.po +++ b/src/locale/af_ZA/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:40\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Afrikaans\n" "Language: af_ZA\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokumente" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "eienaar" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Geen" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Enige woord" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Alle woorde" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Presiese ooreenkoms" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Reguliere uitdrukking" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "naam" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "ooreenkoms" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "ooreenkomsalgoritme" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "hoofletterongevoelig" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "korrespondent" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "korrespondente" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "kleur" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "is inmandjie-etiket" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Markeer hierdie etiket as ’n inmandjie-etiket: Alle nuwe verwerkte dokumente kry inmandjie-etikette." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "etiket" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "etikette" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "dokumenttipe" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "dokumenttipes" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "pad" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "bergpad" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "bergpaaie" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Ongeënkripteer" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Geënkripteer met GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "titel" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "inhoud" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Die rou data van die dokument. Hierdie veld word hoofsaaklik gebruik om te soek." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "MIME-tipe" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "kontrolesom" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Die kontrolesom van die oorspronklike dokument." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "argiefkontrolesom" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Die kontrolesom van die geargiveerde dokument." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "geskep" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "gewysig" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "tipe bergplek" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "toegevoeg" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "lêernaam" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Huidige lêernaam in argief" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "lêernaam in argief" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Huidige lêernaam in argief" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "oorspronklike lêernaam" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Die oorspronklike lêernaam toe dit opgelaai is" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "argiefreeksnommer" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Die ligging van hierdie dokument in u fisiese dokumentargief." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "dokument" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "dokumente" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "ontfout" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "inligting" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "waarskuwing" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "fout" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "krities" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "groep" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "boodskap" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "vlak" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "logboek" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "logboeke" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "toon in paneelbord" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "toon in systaaf" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "sorteerveld" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "sorteer omgekeerd" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "bewaarde aansig" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "bewaarde aansigte" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "titel bevat" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "inhoud bevat" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN is" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "korrespondent is" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "dokumenttipe is" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "is in inmandjie" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "het etiket" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "het enige etiket" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "geskep voor" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "geskep na" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "jaar geskep is" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "maand geskep is" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "dag geskep is" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "toegevoeg voor" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "toegevoeg na" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "gewysig voor" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "gewysig na" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "het geen etiket nie" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "het geen ASN nie" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "titel of inhoud bevat" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "deursoek inhoud" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "het etikette in" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN groter as" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN kleiner as" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "bewaarpad is" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "reëltipe" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "waarde" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "filterreël" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "filterreëls" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "Taak-ID" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID vir die taak wat uitgevoer is" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Bevestig" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Of die taak bevestig is via die tussenvlak of die API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Taaklêernaam" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Naam van die lêer waarvoor die taak uitgevoer is" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Taaknaam" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Naam van die uitgevoerde taak" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Taakstatus" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Huidige status van die taak wat uitgevoer word" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Geskepte datumtyd" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Datumtydveld wanneer die resultaat geskep is in UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Begonne datumtyd" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Datumtydveld wanneer die taak begin is in UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Voltooide datumtyd" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Datumtydveld wanneer die taak voltooi is in UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Resultaatdata" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Data wat deur die taak teruggegee is" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "gebruiker" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "notas" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Verwerk slegs dokumente wat volledig met hierdie lêernaam ooreenkom indien gespesifiseer. U kan jokertekens soos *.pdf of *faktuur* gebruik. Hoofletterongevoelig." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "ken hierdie etiket toe" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "ken hierdie dokumenttipe toe" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "ken hierdie korrespondent toe" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "volgorde" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "Ongeldige reguliere uitdrukking: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Ongeldige kleur." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Lêertipe %(type)s word nie ondersteun nie" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Ongeldige veranderlike bespeur." @@ -1085,11 +1097,11 @@ msgstr "Nog steeds hier?! H’m, iets is dalk fout." msgid "Here's a link to the docs." msgstr "Hier is ’n skakel na die dokumente." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "" @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Engels (VS)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arabies" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Belorussies" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Katalaans" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Tsjeggies" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Deens" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Duits" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Engels (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Spaans" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Fins" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Frans" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italiaans" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxemburgs" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Nederlands" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Pools" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugees (Brasilië)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugees" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Roemeens" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Russies" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Sloweens" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Serwies" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Sweeds" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turks" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Vereenvoudigde Sjinees" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx administrasie" @@ -1520,171 +1532,171 @@ msgstr "e-posreël" msgid "mail rules" msgstr "e-posreëls" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Verwerk slegs aanhegsels." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Verwerk volle e-pos (met ingebedde aanhegsels in lêer) as .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Verwerk volle e-pos (met ingebedde aanhegsels in lêer) as .eml + verwerk aanhegsels as afsonderlike dokumente" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Verwerk alle lêers, insluitend ‘inlyn’-aanhegsels." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Skrap" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Skuif na gegewe vouer" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Markeer as gelees, moenie geleeste e-posse verwerk nie" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Markeer die e-pos, moenie gemarkeerde e-posse verwerk nie" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Etiketteer die e-pos met die gespesifiseerde etiket, moenie geëtiketteerde e-posse verwerk nie" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Gebruik onderwerp as titel" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Gebruik aanhegsellêernaam as titel" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Moenie ’n korrespondent toeken nie" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Gebruik e-posadres" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Gebruik naam (of e-posadres indien nie beskikbaar nie)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Gebruik die korrespondent wat hier onder gekies is" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "rekening" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "vouer" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Subvouers moet deur ’n skeidingsteken geskei word, dikwels ’n (.) of solidus (/), maar dit wissel volgens e-posbediener." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filter van" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filter aan" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filter onderwerp" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filter inhoud" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "maksimum ouderdom" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Aangegee in dae." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "aanhegseltipe" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Inlyn aanhegsels sluit ingebedde beelde in, daarom is dit die beste om hierdie opsie met ’n lêernaamfilter te kombineer." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "verbruiksomvang" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "aksie" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "aksieparameter" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Bykomende parameter vir die gekose aksie hier bo, bv.: die teikenvouer vir die “skuif na vouer”-aksie. Subvouers moet deur punte geskei." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "ken titel toe van" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "ken korrespondent toe van" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "onderwerp" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "ontvang" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "verwerk" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "status" diff --git a/src/locale/ar_AR/LC_MESSAGES/django.po b/src/locale/ar_AR/LC_MESSAGES/django.po index 3a6e2d4d3..5b9be9236 100644 --- a/src/locale/ar_AR/LC_MESSAGES/django.po +++ b/src/locale/ar_AR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-24 00:27\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Arabic\n" "Language: ar_SA\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "المستندات" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "مالك" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "لا شيء" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "أي كلمة" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "كل الكلمات" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "تطابق تام" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "التعابير النظامية" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "كلمة مبهمة" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "تلقائي" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "اسم" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "تطابق" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "خوارزمية مطابقة" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "غير حساس" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "جهة التراسل" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "جهة التراسل" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "لون" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "علامة علبة الوارد" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "ضع علامة على هذه العلامة كعلامة علبة الوارد : سيتم وضع علامة على جميع المستندات المستهلكة حديثا مع علامات صندوق الواردات." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "علامة" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "علامات" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "نوع المستند" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "أنواع المستندات" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "مسار" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "مسار التخزين" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "مسارات التخزين" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "غير مشفرة" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "مشفر باستخدام حارس خصوصية GNU" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "عنوان" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "محتوى" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "بيانات النص الخام من المستند. يستخدم هذا الحقل أساسا للبحث." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "نوع الـ mime" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "بصمة المِلَفّ" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "بصمة المِلَفّ للمستند الأصلي." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "مجموع الاختباري للأرشيف" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "بصمة المِلَفّ للمستند ‏المحفوظ." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "أُنشئ" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "مُعدّل" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "نوع التخزين" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "أضيف" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "اسم المِلَفّ" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "اسم المِلَفّ الحالي في التخزين" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "اسم المِلَفّ ‏الأرشيف" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "اسم مِلَفّ ‏الأرشيف الحالي في التخزين" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "اسم المِلَفّ الأصلي" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "اسم المِلَفّ الأصلي عند تحميله" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "الرَّقْم التسلسلي للأرشيف" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "موقع هذا المستند في ‏أرشيف المستند الفيزيائي." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "مستند" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "المستندات" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "تصحيح الأخطاء" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "معلومات" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "تحذير" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "خطأ" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "حرج" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "مجموعة" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "رسالة" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "المستوى" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "سجل" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "السجلات" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "جدول" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "بطاقات صغيرة" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "بطاقات كبيرة" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "العنوان" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "تمّ إنشاؤه" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "تمّت إضافته" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "سِمَات" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "المُراسِل" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "نوع المستند" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "مسار الحفظ" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "ملاحظة" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "المالك" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "مُشتَرَك" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "ASN" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "عرض على لوحة التحكم" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "عرض على الشريط الجانبي" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "فرز الحقل" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "فرز بالعكس" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "عرض حجم الصفحة" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "عرض وضعية العرض" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "حقول عرض المستند" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "العرض المحفوظ" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "العروض المحفوظة" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "العنوان يحتوي" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "المحتوى يحتوي" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN هو" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "المراسل هو" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "نوع المستند" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "موجود في علبة الوارد" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "لديه علامة" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "لديه أي وسم" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "أنشئت قبل" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "أنشئت بعد" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "أنشئت سنة" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "أنشئت شهر" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "أنشئت يوم" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "أضيف قبل" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "أضيف بعد" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "عُدِّل قبل" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "عُدِّل بعد" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "ليس لديه علامة" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "ليس لديه ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "العنوان أو المحتوى يحتوي" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "استعلام كامل النص" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "المزيد مثل هذا" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "لديه علامات في" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN أكبر من" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN أقل من" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "مسار التخزين" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "له مراسل في" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "لا يوجد مراسل في" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "يحتوي على نوع المستند في" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "ليس لديه نوع مستند في" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "لديه مسار تخزين في" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "ليس لديه مسار تخزين في" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "المالك هو" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "لديه مالك في" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "ليس لديه مالك" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "ليس لديه مالك في" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "له قيمة حقل مخصص" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "تم المشاركة من قبلي" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "لديه حقول مخصصة" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "لديه حقل مخصص في" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "لا يحتوي على حقل مخصص في" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "لا يحتوي على حقل مخصص" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "نوع القاعدة" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "قيمة" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "تصفية القاعدة" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "تصفية القواعد" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "الرمز التعريفي للمهمة" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "رمز المعرف للمهمة التي كانت تعمل" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "مُعترف" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "إذا عرف على المهمة عبر الواجهة الأمامية أو API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "اسم ملف المهمة" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "اسم المِلَفّ الذي وكل بالمهمة" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "اسم المهمة" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "اسم المهمة التي كانت تعمل" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "حالة المهمة" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "الحالة الراهنة للمهمة قيد العمل" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "تاريخ و وقت الإنشاء" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "حقل التاريخ والوقت عند إنشاء نتيجة المهمة في UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "تاريخ و وقت البداية" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "حقل التاريخ والوقت عند بدء المهمة في UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "التاريخ و الوقت المكتمل" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "حقل التاريخ و الوقت عند اكتمال المهمة في UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "نتائج البيانات" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "البيانات المستردة من قبل المهمة" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "ملاحظه على المستند" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "المستخدم" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "ملاحظة" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "ملاحظات" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "أرشيف" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "الأصل" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "تاريخ الانتهاء" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "slug" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "مشاركة الرابط" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "مشاركة الروابط" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "سلسلة نصيّة" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "رابط" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "التاريخ" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "قيمة منطقية" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "عدد صحيح" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "عائم" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "قيمة نقدية" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "رابط المستند" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "نوع البيانات" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "حقل مخصص" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "حقول مخصصة" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "مثيل الحقل المخصص" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "مثيلات الحقل المخصصة" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "بدأ الإستهلاك" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "تم إضافة المستند" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "تم تحديث المستند" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "‏مِلَفّ الاستهلاك" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "تحميل Api" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "جلب البريد" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "نوع محفز انطلاق سير العمل" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "مسار التصفية" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "فقط استهلك المستندات ذات المسار الذي يطابق هذا إذا تم تحديده. البطاقات البرية المحددة كما * مسموح بها. الحالة غير حساسة." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "تصفية اسم الملف" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "فقط المستندات التي تتطابق تماما مع اسم هذا المِلَفّ إذا تم تحديدها. المحارف البديلة مثل *.pdf أو *الفواتير* مسموح بها. لأنها غير حساسة." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "تصفية المستندات من قاعدة البريد هذه" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "لديه هذه العلامة ( أو العلامات)" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "يحتوي على هذا النوع من المستندات" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "لديه هذا المراسل" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "محفز انطلاق سير العمل" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "محفزات انطلاق سير العمل" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "إسناد مهمة" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "إزالة" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "نوع إجراء سير العمل" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "تعيين العنوان" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "تعيين عنوان مستند، يمكن أن يتضمن بعض العناصر النائبة، انظر الوثائق." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "تعيين هذه العلامة" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "تعيين نوع هذا المستند" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "تعيين هذا المراسل" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "تعيين مسار التخزين هذا" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "تعيين هذا المالك" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "منح أذونات العرض إلى هؤلاء المستخدمين" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "منح صلاحيات العرض إلى هذه المجموعات" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "منح صلاحيات التغيير لهؤلاء المستخدمين" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "منح صلاحيات التغيير إلى هذه المجموعات" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "تعيين هذه الحقول المخصصة" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "إزالة هذا الوسم (أو الوسوم)" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "إزالة جميع الوسوم" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "إزالة نوع (أنواع) هذه المستندات" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "إزالة نوع أو أنواع هذه المستندات" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "إزالة هذا المراسل (أو هؤلاء المراسلين)" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "حذف كل المراسلين" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "إزالة مسار (أو مسارات) التخزين هذه" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "حذف كل مسارات الحفظ" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "إزالة هذا المالك (أو المالكين)" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "إزالة جميع المالكين" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "سحب أذونات العرض من هؤلاء المستخدمين" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "سحب أذونات العرض من هذه المجموعات" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "سحب أذونات التغيير من هؤلاء المستخدمين" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "سحب أذونات التغيير من هذه المجموعات" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "سحب كل الأذونات" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "حذف هذه الحقول المخصصة" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "حذف كل الحقول المخصصة" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "إجراء في سير العمل" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "إجراءات سير العمل" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "الطلب" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "قادحات triggers" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "إجراءات" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "مفعل" @@ -920,16 +932,16 @@ msgstr "مفعل" msgid "Invalid regular expression: %(error)s" msgstr "التعبير النظامي خاطىء: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "لون خاطئ." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "نوع الملف %(type)s غير مدعوم" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "اكتشاف متغير خاطئ." @@ -1086,11 +1098,11 @@ msgstr "مازلت هنا؟! همم، قد يكون هناك خطأ ما." msgid "Here's a link to the docs." msgstr "إليك رابط المستندات." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "لم يتم العثور على رابط المشاركة." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "انتهت صلاحية رابط المشاركة." @@ -1289,135 +1301,135 @@ msgstr "شعار التطبيق" msgid "paperless application settings" msgstr "إعدادات التطبيق paperless" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "الإنجليزية (الولايات المتحدة)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "العربية" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "اللغة الأفريقانية" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "البيلاروسية" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "البلغارية" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "اللغة الكتالونية" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "التشيكية" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "الدانماركية" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "الألمانية" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "اليونانية" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "الإنجليزية (المملكة المتحدة)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "الإسبانية" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "الفنلندية" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "الفرنسية" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "المجرية" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "الإيطالية" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "اليابانية" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "اللوكسمبرجية" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "النرويجية" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "الهولندية" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "البولندية" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "البرتغالية (البرازيل)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "البرتغالية" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "الرومانية" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "الروسية" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "السلوفاكية" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "السلوفانية" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "الصربية" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "السويدية" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "التركية" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "الأوكرانية" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "الصينية المبسطة" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx الإدارة" @@ -1521,171 +1533,171 @@ msgstr "قاعدة البريد" msgid "mail rules" msgstr "قواعد البريد" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "معالجة المرفقات فقط." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "معالجة البريد الكامل (مع المرفقات المضمنة في الملف) مثل .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "معالجة البريد الكامل (مع المرفقات المضمنة في الملف) مثل .eml + معالجة المرفقات كوثائق منفصلة" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "معالجة جميع الملفات، بما في ذلك المرفقات المضمنة." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "حذف" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "نقل إلى مجلد محدد" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "وضع علامة كمقروءة، لا تعالج الرسائل المقروءة" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "علم الرسالة، لا تعالج الرسائل المعلمة" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "علم الرسالة بعلامة محددة، لا تعالج الرسائل المُعلمة" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "استخدم الموضوع كعنوان" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "استخدم اسم الملف المرفق كعنوان" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "لا تقم بتعيين العنوان من القاعدة" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "لا تعيّن مراسل" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "استخدم عنوان البريد" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "استخدم الاسم (أو عنوان البريد إذا لم يكن متاحا)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "استخدم المراسل المحدد أدناه" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "الحساب" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "مجلد" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "يجب فصل المجلدات الفرعية باستخدام محدد، غالبا نقطة ('.') أو خط مائل ('/')، لكنها تختلف حسب خادم البريد." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "تصفية من" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "تصفية إلى" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "تصفية الموضوع" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "تصفية الجسم" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "فلترة أسماء الملفات المرفقة التي تحتوي على" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "فلترة أسماء الملفات المرفقة التي لا تحتوي على" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "لا تستهلك المستندات التي تتطابق تمامًا مع اسم الملف هذا إذا تم تحديده. يُسمح باستخدام أحرف البدل مثل *.pdf أو *invoice*. مع عدم اعتبار الحساسية لحالة الأحرف الصغيرة و الكبيرة." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "أقصى عُمُر" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "محدد بالأيام." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "نوع المرفق" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "تتضمن المرفقات المضمنة صورا مضمنة، لذا من الأفضل دمج هذا الخِيار مع تصفية اسم الملف." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "نطاق الاستهلاك" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "إجراء" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "إجراء المعامل" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "معامل إضافي للإجراء المحدد أعلاه، مثال: المجلد المستهدف للانتقال إلى إجراء مجلد. يجب أن تكون المجلدات الفرعية مفصولة بنقاط." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "تعيين العنوان من" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "تعيين مراسل من" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "تعيين مالك القاعدة إلى المستندات" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "المعرّف‫ الفريد (UID)" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "موضوع" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "الواردة" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "المعالجة" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "حالة" diff --git a/src/locale/be_BY/LC_MESSAGES/django.po b/src/locale/be_BY/LC_MESSAGES/django.po index 5688a1e95..3f2da15e2 100644 --- a/src/locale/be_BY/LC_MESSAGES/django.po +++ b/src/locale/be_BY/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:40\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Belarusian\n" "Language: be_BY\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Дакументы" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "уладальнік" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Нiчога" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Любое слова" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Усе словы" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Дакладнае супадзенне" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Рэгулярны выраз" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "назва" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "супадзенне" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "алгарытм супастаўлення" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "без уліку рэгістра" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "карэспандэнт" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "карэспандэнты" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "колер" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "гэта ўваходны тэг" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Пазначыць гэты тэг як тэг папкі \"Уваходныя\": Усе нядаўна спажытыя дакументы будуць пазначаны тэгамі \"Уваходныя\"." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "тэг" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "тэгі" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "тып дакумента" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "тыпы дакументаў" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "шлях" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "шлях захоўвання" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "шляхі захоўвання" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Незашыфраваны" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Зашыфравана з дапамогай GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "назва" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "змест" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Неапрацаваныя тэкставыя даныя дакумента. Гэта поле ў асноўным выкарыстоўваецца для пошуку." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "тып MIME" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "кантрольная сума" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Кантрольная сума зыходнага дакумента." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "кантрольная сума архіва" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Кантрольная сума архіўнага дакумента." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "створаны" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "мадыфікаваны" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "тып захоўвання" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "дададзена" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "імя файла" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Цяперашняе імя файла ў сховішчы" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "імя файла архіва" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Цяперашняе імя файла архіва ў сховішчы" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "арыгінальная назва файла" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "парадкавы нумар архіва" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Пазіцыя гэтага дакумента ў вашым фізічным архіве дакументаў." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "дакумент" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "дакументы" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "адладка" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "інфармацыя" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "папярэджанне" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "памылка" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "крытычны" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "група" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "паведамленне" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "узровень" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "лог" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "логі" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "паказаць на панэлі" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "паказаць у бакавой панэлі" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "поле сартавання" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "сартаваць у адваротным парадку" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "захаваны выгляд" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "захаваныя выгляды" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "назва змяшчае" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "змест змяшчае" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "карэспандэнт" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "тып дакумента" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "ва ўваходных" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "мае тэг" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "мае любы тэг" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "створана перад" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "створана пасля" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "год стварэння" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "месяц стварэння" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "дзень стварэння" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "даданы перад" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "даданы пасля" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "зменены перад" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "зменены пасля" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "не мае тэга" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "не мае ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "назва або змест смяшчае" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "поўнатэкставы запыт" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "мае тэгі ў" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "тып правіла" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "значэнне" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "правіла фільтрацыі" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "правілы фільтрацыі" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "карыстальнік" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Апрацоўваць толькі дакументы, якія цалкам супадаюць з імем файла (калі яно пазначана). Маскі, напрыклад *.pdf ці *рахунак*, дазволеныя. Без уліку рэгістра." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "прызначыць гэты тэг" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "прызначыць гэты тып дакумента" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "прызначыць гэтага карэспандэнта" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "парадак" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "Няправільны рэгулярны выраз: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Няправільны колер." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Тып файла %(type)s не падтрымліваецца" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Выяўлена няправільная зменная." @@ -1085,11 +1097,11 @@ msgstr "Яшчэ тут?! Хм, можа нешта не так." msgid "Here's a link to the docs." msgstr "Вось спасылка на дакументы." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "" @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Англійская (ЗША)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Беларуская" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Чэшская" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Дацкая" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Нямецкая" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Англійская (Вялікабрытанія)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Іспанская" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Французская" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Італьянская" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Люксембургская" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Нідэрландская" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Польская" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Партугальская (Бразілія)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Партугальская" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Румынская" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Руская" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Славенская" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Сербская" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Шведская" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Турэцкая" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Кітайская спрошчаная" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Адміністраванне Paperless-ngx" @@ -1520,171 +1532,171 @@ msgstr "правіла пошты" msgid "mail rules" msgstr "правілы пошты" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Апрацоўваць толькі ўкладанні." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Апрацоўваць усе файлы, уключаючы 'убудаваныя' укладанні." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Выдаліць" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Перамясціць у паказаную папку" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Пазначыць як прачытанае, не апрацоўваць прачытаныя лісты" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Пазначыць пошту, не апрацоўваць пазначаныя лісты" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Пазначце ліст указаным тэгам, не апрацоўвайце пазначаныя лісты" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Тэма ў якасці загалоўка" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Выкарыстоўваць імя ўкладзенага файла як загаловак" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Не прызначаць карэспандэнта" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Выкарыстоўваць email адрас" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Выкарыстоўваць імя (або адрас электроннай пошты, калі недаступна)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Выкарыстоўваць карэспандэнта, абранага ніжэй" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "ўліковы запіс" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "каталог" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Укладзеныя папкі павінны быць падзеленыя падзельнікам, часта кропкай ('.') або касой рысай ('/'), але гэта адрозніваецца ў залежнасці ад паштовага сервера." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "фільтр па адпраўніку" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "фільтр па тэме" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "фільтр па тэксце паведамлення" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "максімальны ўзрост" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Указваецца ў днях." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "тып укладання" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Убудаваныя ўкладанні ўключаюць убудаваныя выявы, таму лепш камбінаваць гэты варыянт з фільтрам імёнаў файла." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "дзеянне" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "параметр дзеяння" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Дадатковы параметр для дзеяння, абранага вышэй, гэта значыць, мэтавая папка дзеяння перамяшчэння ў папку. Падпапкі павінны быць падзеленыя кропкамі." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "прызначыць загаловак з" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "прызначыць карэспандэнта з" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "" diff --git a/src/locale/bg_BG/LC_MESSAGES/django.po b/src/locale/bg_BG/LC_MESSAGES/django.po index c15f457e4..90c2c9589 100644 --- a/src/locale/bg_BG/LC_MESSAGES/django.po +++ b/src/locale/bg_BG/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-15 00:25\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Документи" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "собственик" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Няма" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Всяка дума" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Всички думи" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Точно съвпадение" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Регулярен израз" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Неясна дума" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Автоматично" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "име" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "съвпадение" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "алгоритъм за съвпадение" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "без значение от големината на буквите" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "кореспондент" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "кореспонденти" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "цвят" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "етикет за входяща поща" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Маркира този етикет като етикет за входяща кутия: Всички новопостъпили документи ще бъдат маркирани с етикети за входяща кутия." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "етикет" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "етикети" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "вид на документа" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "видове документи" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "път" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "път към хранилище" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "пътища към хранилища" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Нешифрован" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Шифровано с GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "заглавие" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "съдържание" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Необработените, само текстови данни на документа. Това поле се използва предимно за търсене." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "mime тип" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "контролна сума" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Контролната сума на оригиналния документ." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "архивна контролна сума" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Контролната сума на архивирания документ." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "създадено" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "променено" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "вид на съхранение" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "добавено" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "име на файл" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Текущо име на файла в хранилището" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "име на архивен файл" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Текущо име на архивен файл в хранилище" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "оригинално име на файла" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Оригиналното име на файла, когато е бил качен" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "сериен номер на архива" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Мястото на този документ във вашия физически документален архив." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "документ" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "документи" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "отстраняване на грешки" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "информация" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "предупреждение" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "грешка" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "критично" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "група" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "съобщение" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "ниво" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "дневник" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "дневници" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "Таблица" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "Малки картинки" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "Големи картинки" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "Име" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "Създаден" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "Добавен" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "Тагове" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "Кореспондент" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "Вид документ" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "Директории за съхранение" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "Бележка" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "Собственик" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "Споделени" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "Архивен номер" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "показване в таблото за управление" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "показване в страничната лента" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "поле за сортиране" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "обратно сортиране" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "Големина на страница" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "Режим на изгледа" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "запазен изглед" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "запазени изгледи" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "заглавието съдържа" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "съдържанието съдържа" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN е" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "кореспондент е" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "тип на документа е" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "е във входящата кутия" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "има етикет" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "има някакъв етикет" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "създаден преди" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "създадена след" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "годината на създаване е" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "месецът на създаване е" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "ден на създаване е" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "добавено преди" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "добавено след" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "променено преди" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "променено след" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "няма етикет" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "не притежава Архивен номер" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "заглавието или съдържанието съдържа" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "пълнотекстова заявка" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "повече като този" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "има етикети в" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "Архивен номер, по-голям от" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "Архивен номер, по-малък от" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "път към хранилище" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "има кореспондент в" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "няма кореспондент в" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "има тип документ в" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "няма тип документ в" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "има път към хранилище в" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "няма път към хранилище в" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "собственик е" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "има собственик в" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "няма собственик" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "няма собственик в" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "има стойност в ръчно зададеното поле" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "е споделено от мен" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "тип правило" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "стойност" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "правило за филтриране" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "правила за филтриране" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID на задача" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Идентификатор на Celery за изпълнената задача" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Прието" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Ако задачата е потвърдена чрез интерфейса или API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Име на файл на задачата" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Име на файла, за който е изпълнена задачата" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Име на задача" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Име на задачата, която е изпълнена" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Състояние на задачата" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Текущо състояние на изпълняваната задача" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Дата и час на създаване" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Поле за дата и час, когато резултатът от задачата е създаден в UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Стартова дата и час" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Поле за дата и час, когато задачата е стартирана в UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Дата и час на завършване" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Поле за дата и час, когато задачата е завършена в UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Данни за резултат" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Данните, върнати от задачата" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Бележка за документа" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "потребител" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "бележка" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "бележки" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Архив" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Оригинал" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "валидност" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "slug" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "връзка за споделяне" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "връзки за споделяне" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Низ" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Дата" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Булева" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Цяло число" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Плаваща запетая" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Пари" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Връзка към документ" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "тип данни" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "персонализирано поле" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "персонализирани полета" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "инстанция на персонализирано поле" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "инстанции на персонализирани полета" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "Започната обработка" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Документът е добавен" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Документът е обновен" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Папка за консумация" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Качване на API" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Извличане на поща" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "Тип на тръгъра на работния процес" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "филтриране на път" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Да се консумират само документи с път, който съответства на този, ако е зададен. Позволени са заместващи символи, посочени като *. Нечувствителен към големината на буквите." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "филтриране по файлово име" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Да се консумират само документи, които изцяло съответстват на това файлово име, ако е посочено. Разрешени са заместващи символи като *.pdf или *invoice*. Нечувствителност към големи и малки букви." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "филтриране на документи по това правило за поща" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "има този/тези етикет/и" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "има този тип на документа" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "има този кореспондент" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "тръгър на работния процес" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "тръгъри на работния процес" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "Задача" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "Премахване" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "Тип на действието на работния процес" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "задаване на заглавие" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Задайте заглавие на документа, може да включва някои заместители, вижте документацията." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "задайте този етикет" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "задайте този тип документ" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "задайте този кореспондент" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "задайте този път за хранилище" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "задайте този собственик" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "предоставяне на права за преглед на тези потребители" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "предоставяне на права за преглед на тези групи" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "предоставяне на права за промяна на тези потребители" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "предоставяне на права за промяна на тези групи" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "присвояване на тези персонализирани полета" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "премахни този/тези етикект/и" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "премахни всички етикети" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "премахни този/тези тип/ове на документ" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "премахви всички типове на документ" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "премахни тези кореспонденти" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "прехахни всички кореспонденти" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "изтрий тези директории" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "изтрий всички директории" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "премахни всички тези собственици" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "премахни всички собственици" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "премахни всички права за прелед на тези потребители" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "премахни всички права за прелед на тези групи" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "премахни всички права за промяна на тези потребители" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "премахни всички права за прояна на тези групи" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "премахнете всички права" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "премахни тези потребителски полета" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "премахни всички потребителски полета" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "действие по работния процес" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "действия по работния процес" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "ред" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "тригъри" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "действия" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "активирано" @@ -920,16 +932,16 @@ msgstr "активирано" msgid "Invalid regular expression: %(error)s" msgstr "Невалиден регулярен израз: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Невалиден цвят." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Файловия тип %(type)s не се поддържа" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Засечена е невалидна променлива." @@ -1086,11 +1098,11 @@ msgstr "Все още сте тук?! Хм, може би нещо не е на msgid "Here's a link to the docs." msgstr "Ето връзка към документите." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Връзката за споделяне не беше открита." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Връзката за споделяне е изтекла." @@ -1289,135 +1301,135 @@ msgstr "Лого на софтуера" msgid "paperless application settings" msgstr "настройки на софтуера" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Английски (САЩ)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Арабски" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Африканс" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Беларуски" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Български" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Каталунски" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Чешки" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Датски" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Немски" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Гръцки" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Английски (Великобритания)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Испански" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Финландски" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Френски" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Унгарски" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Италиански" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "Японски" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Люксембургски" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Норвежки" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Холандски" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Полски" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Португалски (Бразилия)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Португалски" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Румънски" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Руски" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Словашки" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Словенски" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Сръбски" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Шведски" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Турски" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Украински" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Китайски опростен" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx администрация" @@ -1521,171 +1533,171 @@ msgstr "правило за поща" msgid "mail rules" msgstr "правила за поща" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Обработване само на прикачени файлове." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Обработка на цялата поща (с вградени прикачени файлове) като .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Обработка на цялата поща (с вградени прикачени файлове) като .eml + обработка на прикачени файлове като отделни документи" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Обработване на всички файлове, включително на \"вградените\" прикачени файлове." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Изтрий" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Преместване в специфична папка" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Маркиране като прочетено, да не се обработват прочетени писма" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Маркиране на писмото, да не се обработват маркираните писма" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Маркиране на писмото с определен етикет, да не се обработват маркирани писма" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Използване на тема като заглавие" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Използване на име на прикачен файл като заглавие" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "Да не се присвоява заглавие от правило" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Да не се присвоява кореспондент" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Използване на имейл адрес" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Използвано име (или пощенски адрес, ако няма такова)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Използване на кореспондента, избран по-долу" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "профил" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "папка" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Подпапките трябва да бъдат разделени с разделител, често точка ('.') или наклонена черта ('/'), но това варира в зависимост от пощенския сървър." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "филтриране от" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "филтриране към" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "филтриране на тема" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "филтриране на тяло" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "филтриране по име на прикачен файл включително" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "филтриране по име на прикачен файл изключително" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Да не се консумират документи, които напълно съвпадат с това име на файл, ако е посочено. Позволени са заместващи символи като *.pdf или *invoice*. Не се отчитат големи и малки букви." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "максимална възраст" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Посочва се в дни." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "тип на прикачения файл" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Вградените прикачени файлове включват вградени изображения, така че е най-добре да комбинирате тази опция с филтър за имена на файлове." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "обхват на консумацията" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "действие" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "параметър на действието" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Допълнителен параметър за действието, избрано по-горе, т.е. целевата папка на действието за преместване в папка. Подпапките трябва да бъдат разделени с точки." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "присвояване на заглавие от" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "присвояване на кореспондент от" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Присвояване на собственик на правило към документи" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "тема" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "приет" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "обработено" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "състояние" diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po index 5ac7203c4..e1d236acb 100644 --- a/src/locale/ca_ES/LC_MESSAGES/django.po +++ b/src/locale/ca_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-18 12:10\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Language: ca_ES\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "documents" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "propietari" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Cap" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Qualsevol paraula" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Totes paraules" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Coincidència exacte" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Expressió Regular" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Paraula Difusa" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automàtic" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "nom" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "coincidència" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "algoritme coincident" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "no distingeix entre majúscules i minúscules" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "corresponsal" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "corresponsals" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "color" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "etiqueta entrada" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Marca aquesta etiqueta com a etiqueta de safata d'entrada: tots els documents consumits s'etiquetaran amb etiquetes d'entrada." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "etiqueta" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "etiquetes" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "tipus document" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "tipus document" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "camí" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "ruta emmagatzematge" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "rutes emmagatzematge" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "No Encriptat" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Xifrat amb GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "títol" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "contingut" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Les dades en brut del document només és text. Aquest camp s'utilitza principalment per a la cerca." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "topus mimètic" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "checksum" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Checksum del document original." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "arxiva checksum" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "El checksum del document arxivat." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "creat" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "modificat" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "tipus emmagatzematge" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "afegit" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "nom arxiu" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Nom arxiu a emmagatzematge" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "nom arxiu arxivat" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Nom arxiu arxivat a emmagatzematge" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "nom arxiu original" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "El nom original del fitxer quan es va pujar" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "número de sèrie de l'arxiu" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Posició d'aquest document al vostre arxiu físic de documents." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "document" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "documents" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "depura" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informació" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "alerta" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "error" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "crític" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "grup" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "missatge" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "nivell" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "log" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "logs" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "Taula" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "Tarja Petita" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "Tarja Gran" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "Títol" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "Creat" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "Afegit" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "Etiquetes" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "Corresponsal" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "Tipus Document" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" -msgstr "Ruta emmagatzematge" +msgstr "Rutes Emmagatzematge" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "Nota" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "Propietari" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "Compartit" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "ASN" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "mostra al panell" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "mostra barra lateral" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "camp ordenació" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "ordenament invers" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "Veure mida pàgina" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "Veure mode visualització" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "Visualització camps document" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "vista guardada" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "vistes guardades" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "títol conté" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "contingut conté" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN és" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "corresponsal és" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "tipus document és" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "està safata entrada" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "té etiqueta" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "qualsevol etiqueta" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "creat abans" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "creat després" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "any creació és" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "mes creació és" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "dia creació és" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "afegit abans" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "afegit després" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "modificat abans" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "modificat després" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "no té etiqueta" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "no té ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "títol o contingut conté" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "consulta de text complet" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "més com aquest" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "té etiquetes a" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN més gran que" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN menor que" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "emmagatzematge és" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "té corresponsal a" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "no té corresponsal a" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "té tipus de document a" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "no té tipus de document a" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "té emmagatzematge a" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "no té emmagatzematge a" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "propietari és" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "té propietari a" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "no té propietari" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "no té propietari a" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "té camp personalitzat" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "compartit per mi" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "té camps personalitzat" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "té camp personalitzat" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "no té camp personalitzat" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "no té camp personalitzat" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "tipus de regla" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "valor" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "regla de filtre" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "regla de filtres" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID Tasca" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID per la tasca que es va executar" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Reconegut" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Si la tasca es reconeix mitjançant la interfície o l'API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Nom Arxiu tasca" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Nom del fitxer per al qual s'ha executat la tasca" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Nom tasca" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Nom de la tasca que s'ha executat" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Estat de tasca" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Estat actual de la tasca que s'està executant" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Data Hora Creació" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Camp data i hora en què es va iniciar la tasca UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Data Hora Creació" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Camp data i hora en què es va iniciar la tasca UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Data Hora completada" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Camp data i hora en què es va completar la tasca UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Dades del resultat" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Dades retornades per la tasca" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Nota pel document" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "usuari" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "nota" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "notes" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Arxiu" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Original" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "venciment" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "fitxa" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "comparteix enllaç" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "comparteix enllaços" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Cadena" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Data" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Booleà" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Enter" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Flotant" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Monetari" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Enllaç Document" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "tipus dada" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "camp personalitzat" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "camps personalitzats" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "instància de camp personalitzat" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "instàncies de camps personalitzats" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "Començada Consumpció" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Document Afegit" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Document Actualitzat" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Directori 'Condumir'" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Api Pujada" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Recollida Correu" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "Tipus d'activador de Workflow" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "filtra camins" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Consumeix documents amb la ruta que coincideixi si està especificada. Wilcards especificats amb * estan permessos, no sensitiu." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "filtra nom arxiu" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Consumiu només documents que coincideixin completament amb aquest nom de fitxer si s'especifica. Es permeten els comodins com ara *.pdf o *factura*. Cas insensitiu." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "filtra documents d'aquesta regla de correu" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "té aquestes etiquete(s)" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "té aquest tipus de document" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "té aquest corresponsal" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "disparador de flux" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "disparadors de fluxos" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "Assignació" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "Elimina" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "Tipus d'acció de disparador" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "assigna títol" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Assigna un títol de document, pot incloure alguns marcadors de posició, vegeu la documentació." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "assigna aquesta etiqueta" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "assigna aquest tipus de document" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "assigna aquest corresponsal" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "assigna aquesta ruta emmagatzematge" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "assigna aquest propietari" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "dona permisos visualització a aquests usuaris" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "dóna permisos de visionat a aquests grups" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "dóna permisos d'edició a aquests usuaris" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "dóna permisos d'edició a aquests grups" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "assigna aquests camps personalitzats" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "elimina aquesta etiqueta(es)" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "elimina totes les etiquetes" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "elimina aquest(s) tipus de document" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "elimina tots els tipus de document" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "suprimeix aquest(s) corresponsal(s)" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "elimina tots els corresponsals" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "elimina aquesta(es) ruta d'emmagatzemament" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "elimina totes les rutes d'emmagatzemament" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "elimina aquest(s) propietari(s)" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "elimina tots els propietaris" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "treu permisos visualització a aquests usuaris" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "treu permisos de visualització a aquests grups" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "treu permisos d'edició a aquests usuaris" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "treu permisos d'edició a aquests grups" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "treu tots els permisos" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "elimina aquests camps personalitzats" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "elimina tots els camps personalitzats" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "acció disparador" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "accions disparadors" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "ordena" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "disparadors" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "accions" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "habilitat" @@ -920,16 +932,16 @@ msgstr "habilitat" msgid "Invalid regular expression: %(error)s" msgstr "Expressió regular invàlida: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Color Invàlid." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Tipus arxiu %(type)s no suportat" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Variable detectada invàlida." @@ -1086,11 +1098,11 @@ msgstr "Encara Aquí?! Hmm, alguna cosa pot estar malament." msgid "Here's a link to the docs." msgstr "Link als documents." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "No s'ha trobat aquest enllaç." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "L'enllaç ha caducat." @@ -1289,135 +1301,135 @@ msgstr "Logo Aplicació" msgid "paperless application settings" msgstr "configuració de l'aplicació paperless" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "English (US)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Àrab" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Africà" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Bielorús" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Búlgar" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Català" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Txec" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Danès" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Alemany" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Grec" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Anglès (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Espanyol" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Finès" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Francès" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Hongarès" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italià" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "Japonès" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxemburguès" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Noruec" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Holandès" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polac" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portuguès (BZ)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portuguès" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Romanès" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Rus" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Eslovac" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Eslovè" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Serbi" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Suec" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turc" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ucranià" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Xinès Simplificat" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Administració Paperless-ngx" @@ -1521,171 +1533,171 @@ msgstr "norma e-mail" msgid "mail rules" msgstr "normes correu" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Només processa adjunts." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Processa el correu complet (amb fitxers adjunts incrustats al fitxer) com a .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Processa el correu complet (amb fitxers adjunts incrustats al fitxer) com a .eml + processa adjunts com a documents separats" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Processa tots els fitxers, inclosos els fitxers adjunts 'in line'." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Esborra" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Mou a carpeta especificada" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Marca com a llegit, no processeu els correus llegits" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Marca el correu, no processeu els missatges marcats" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Etiqueta el correu amb l'etiqueta especificada, no processeu correus etiquetats" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Utilitza assumpte com a títol" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Utilitzeu el nom del fitxer adjunt com a títol" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "No assignis títol desde regla" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "No assignar corresponsal" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Utilitza adreça correu" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Utilitza nom (o adreça de correu si no disponible)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Utilitza el corresponsal seleccionat a continuació" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "compte" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "carpeta" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Subcarpetes han d'estar separades per un delimitador, sovint un punt ('.') o una barra inclinada ('/'), però varia segons el servidor de correu." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtra de" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filtra a" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filtra assumpte" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filtra cos" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "filtra nom del fitxer adjunt incloent" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "filtra nom del fitxer adjunt excloent" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "No consumeixis documents que coincideixin aquest nom d'arxiu especificat. Comodins com *.pdf o *factura* permessos. Cas insensitiu." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "temps màxim" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Especificat en dies." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "tipus de fitxer adjunt" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Els fitxers adjunts inline inclouen imatges incrustades, per la qual cosa és millor combinar aquesta opció amb un filtre de nom de fitxer." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "àmbit de consum" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "acció" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "paràmetre d'accío" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Paràmetre addicional per a l'acció seleccionada anteriorment, la carpeta de destinació de l'acció de moure a la carpeta. Les subcarpetes han d'estar separades per punts." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "assignar títol desde" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "assigna corresponsal des de" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Assigna propietari de la regla a documents" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "assumpte" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "rebut" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "processat" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "estat" diff --git a/src/locale/cs_CZ/LC_MESSAGES/django.po b/src/locale/cs_CZ/LC_MESSAGES/django.po index f2b5f2051..bf3ad9784 100644 --- a/src/locale/cs_CZ/LC_MESSAGES/django.po +++ b/src/locale/cs_CZ/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:40\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokumenty" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "vlastník" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Žádný" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Jakékoliv slovo" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Všechna slova" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Přesná shoda" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Regulární výraz" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Fuzzy slovo" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automatický" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "název" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "shoda" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "algoritmus pro shodu" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "je ignorováno" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "korespondent" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "korespondenti" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "barva" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "tag přichozí" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Označí tento tag jako tag pro příchozí: Všechny nově zkonzumované dokumenty budou označeny tagem pro přichozí" -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "štítek" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "tagy" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "typ dokumentu" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "typy dokumentu" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "cesta" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "cesta k úložišti" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "cesty úložiště" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Nešifrované" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Šifrované pomocí GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "titulek" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "obsah" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Nezpracovaná, pouze textová data dokumentu. Toto pole je používáno především pro vyhledávání." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "mime typ" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "kontrolní součet" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Kontrolní součet původního dokumentu" -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "kontrolní součet archivu" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Kontrolní součet archivovaného dokumentu." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "vytvořeno" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "upraveno" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "typ úložiště" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "přidáno" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "název souboru" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Aktuální název souboru v úložišti" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "Název archivovaného souboru" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Aktuální název souboru archivu v úložišti" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "původní název souboru" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Původní název souboru při jeho nahrání" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "sériové číslo archivu" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Pozice dokumentu ve vašem archivu fyzických dokumentů" -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "dokument" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "dokumenty" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "ladění" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informace" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "varování" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "chyba" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kritická" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "skupina" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "zpráva" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "úroveň" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "záznam" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "záznamy" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "zobrazit v dashboardu" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "zobrazit v postranním menu" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "pole na řazení" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "třídit opačně" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "uložený pohled" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "uložené pohledy" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "titulek obsahuje" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "obsah obsahuje" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN je" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "korespondent je" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "typ dokumentu je" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "je v příchozích" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "má tag" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "má jakýkoliv tag" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "vytvořeno před" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "vytvořeno po" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "rok vytvoření je" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "měsíc vytvoření je" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "den vytvoření je" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "přidáno před" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "přidáno po" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "upraveno před" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "upraveno po" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "nemá tag" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "Nemá ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "Titulek nebo obsah obsahuje" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "Fulltextový dotaz" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "podobné" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "má štítky v" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN větší než" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN menší než" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "cesta k úložišti je" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "vlastník je" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "je sdílen mnou" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "typ pravidla" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "hodnota" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "filtrovací pravidlo" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "filtrovací pravidla" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID Úlohy" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID pro úlohu, která byla spuštěna" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Potvrzeno" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Pokud je úloha potvrzena prostřednictvím webu nebo API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Název souboru úlohy" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Název souboru, pro který byla úloha spuštěna" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Název Úlohy" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Název úlohy, která byla spuštěna" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Stav úkolu" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Aktuální stav spuštěného úkolu" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Datum a čas vytvoření" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Datum a čas, kdy byl výsledek úkolu vytvořen v UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Datum a čas zahájení" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Datum a čas, kdy byla úloha spuštěna v UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Datum a čas dokončení" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Datum a čas, kdy byl úkol dokončen v UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Data výsledku" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Data vrácena úlohou" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Poznámka k dokumentu" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "uživatel" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "poznámka" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "poznámky" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Datum" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Boolean" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Integer" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Float" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "vlastní pole" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Dokument byl přidán" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Doklad byl aktualizován" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Konzumovat jen dokumenty které přesně odpovídají tomuto názvu souboru pokud specifikováno. Zástupné znaky jako *.pdf nebo *invoice* jsou povoleny. Nezáleží na velikosti písmen." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "přiřadit tento tag" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "přiřadit tento typ dokumentu" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "přiřadit tohoto korespondenta" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "přiřadit tato vlastní pole" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "pořadí" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "akce" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "povoleno" @@ -920,16 +932,16 @@ msgstr "povoleno" msgid "Invalid regular expression: %(error)s" msgstr "Neplatný regulární výraz: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Neplatná barva." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Typ souboru %(type)s není podporován" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Zjištěna neplatná proměnná." @@ -1085,11 +1097,11 @@ msgstr "Stále tady?! Hmm, možná se něco pokazilo." msgid "Here's a link to the docs." msgstr "Zde je odkaz na dokumenty." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Tento odkaz nebyl nalezen." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Platnost odkazu vypršela." @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Angličtina (US)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arabština" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Běloruština" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Čeština" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Dánština" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Němčina" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Angličtina (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Španělština" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Francouzština" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italština" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Lucemburština" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Holandština" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polština" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugalština (Brazílie)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugalština" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Rumunština" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Ruština" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Slovinština" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Srbština" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Švédština" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turečtina" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Čínština (zjednodušená)" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Správa Paperless-ngx" @@ -1520,171 +1532,171 @@ msgstr "mailové pravidlo" msgid "mail rules" msgstr "mailová pravidla" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Zpracovávat jen přílohy" -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Zpracovávat celou poštovou zprávu (s vloženými přílohami) jako .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Zpracovávat celou poštovou zprávu (s vloženými přílohami) jako .eml + zpracovávat přílohy jako samostatné dokumenty" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Zpracovat všechny soubory, včetně vložených příloh" -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Odstranit" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Přesunout do specifikované složky" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Označit jako přečtené, nezpracovávat přečtené e-maily" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Označit e-mail, nezpracovávat označené e-maily" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Označit e-mail zadaným štítkem, nezpracovávat označené e-maily" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Použít předmět jako titulek" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Použít název souboru u přílohy jako titulek" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Nepřiřazovat korespondenta" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Použít e-mailovou adresu" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Použít jméno (nebo e-mailovou adresu, pokud není jméno dostupné)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Použít korespondenta vybraného níže" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "účet" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "složka" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Podsložky musí být odděleny oddělovačem, nejčastěji tečkou ('.') nebo lomítkem ('/'), ale závisí to na e-mailovém serveru." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtrovat z" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filtrovat podle príjemce" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "název filtru" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "tělo filtru" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "maximální stáří" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Specifikováno ve dnech." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "typ přílohy" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Vložené přílohy zahrnují vložené obrázky, takže je nejlepší tuto možnost kombinovat s filtrem na název souboru" -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "rozsah spotřeby" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "akce" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "parametr akce" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Další parametr pro výše vybranou akci, například cílová složka akce přesunutí do složky. Podsložky musí být odděleny tečkou." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "nastavit titulek z" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "přiřadit korespondenta z" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "předmět" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "přijato" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "zpracováno" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "stav" diff --git a/src/locale/da_DK/LC_MESSAGES/django.po b/src/locale/da_DK/LC_MESSAGES/django.po index 6a3743fab..0e7d06997 100644 --- a/src/locale/da_DK/LC_MESSAGES/django.po +++ b/src/locale/da_DK/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-12 00:25\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Danish\n" "Language: da_DK\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokumenter" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "ejer" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Ingen" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Ethvert ord" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Alle ord" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Præcis match" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Regulært udtryk" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Fuzzy-ord" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automatisk" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "navn" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "match" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "matchende algoritme" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "er usensitiv" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "korrespondent" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "korrespondenter" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "farve" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "er indbakkeetiket" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Markerer denne etiket som en indbakkeetiket: Alle ny-bearbejdede dokumenter vil blive mærket med indbakkeetiketter." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "etiket" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "etiketter" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "dokumenttype" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "dokumenttyper" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "sti" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "lagersti" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "lagerstier" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Ukrypteret" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Krypteret med GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "titel" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "indhold" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Dokumentets rå tekstdata. Dette felt bruges primært til søgning." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "MIME-type" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "kontrolsum" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Kontrolsummen af det oprindelige dokument." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "arkiv kontrolsum" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Kontrolsummen af det arkiverede dokument." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "oprettet" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "ændret" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "lagringstype" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "tilføjet" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "filnavn" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Nuværende filnavn lagret" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "arkiv filnavn" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Nuværende arkivfilnavn lagret" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "oprindeligt filnavn" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Det oprindelige filnavn ved upload" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "arkiv serienummer" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Placeringen af dette dokument i dit fysiske dokumentarkiv." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "dokument" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "dokumenter" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "fejlfinding" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "information" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "advarsel" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "fejl" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kritisk" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "gruppe" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "besked" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "niveau" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "log" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "logninger" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "Tabel" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "Små kort" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "Store kort" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "Titel" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "Oprettet" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "Tilføjet" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "Etiketter" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "Korrespondent" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "Dokumenttype" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "Lagersti" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "Notat" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "Ejer" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "Delt" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "ASN" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "vis på betjeningspanel" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "vis i sidepanelet" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "sortér felt" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "sortér omvendt" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "Vis sidestørrelse" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "Vis visningstilstand" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "Dokumentvisningsfelter" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "gemt visning" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "gemte visninger" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "titel indeholder" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "indhold indeholder" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN er" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "korrespondent er" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "dokumenttype er" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "er i indbakke" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "har etiket" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "har en etiket" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "oprettet før" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "oprettet efter" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "oprettet år er" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "oprettet måned er" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "oprettet dag er" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "tilføjet før" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "tilføjet efter" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "ændret før" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "ændret efter" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "har ikke nogen etiket" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "har ikke ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "titel eller indhold indeholder" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "fuldtekst forespørgsel" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "mere som dette" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "har etiketter i" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN større end" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN mindre end" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "lagersti er" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "har korrespondent i" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "har ikke korrespondent i" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "har dokumenttype i" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "har ikke dokumenttype i" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "har lagersti i" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "har ikke lagersti i" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "ejer er" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "har ejer i" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "har ikke ejer" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "har ikke ejer i" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "har tilpasset feltværdi" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "deles af mig" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "har tilpassede felter" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "har tilpasset felt i" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "har ikke tilpasset felt i" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "har ikke tilpasset felt" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "regeltype" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "værdi" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "filtreringsregel" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "filtreringsregler" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "Opgave-ID" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery-ID for opgaven, der blev afviklet" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Bekræftet" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Om opgaven er bekræftet via frontend eller API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Opgavefilnavn" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Navn på filen, for hvilken opgaven blev afviklet" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Opgavenavn" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Navn på opgave, der blev afviklet" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Opgavetilstand" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Aktuel tilstand på opgaven, der afvikles" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Oprettelsestidspunkt" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Datotidsfelt (i UTC) for opgaveresultatets oprettelse" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Starttidspunkt" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Datotidsfelt (i UTC) for opgavens starttidspunkt" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Færdiggørelsestidspunkt" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Datotidsfelt (i UTC) for opgavens færdiggørelsestidspunkt" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Resultatdata" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Data returneret af opgaven" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Notat til dokumentet" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "bruger" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "notat" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "notater" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Arkiv" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Oprindelige" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "udløb" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "slug" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "delingslink" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "delingslinks" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Streng" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Dato" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Boolsk" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Heltal (integer)" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Flydende" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Monetær" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Dokumentlink" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "datatype" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "tilpasset felt" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "tilpassede felter" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "tilpasset feltinstans" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "tilpassede feltinstanser" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "Forbrug startet" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Dokument tilføjet" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Dokument opdateret" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Forbrugsmappe" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "API-upload" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Mailhentning" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "Workflow-udløsningstype" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "filtrér sti" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Brug kun dokumenter med en sti matchende denne, hvis angivet. Jokertegn angivet som * er tilladt. Minuskel-/majuskelufølsom." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "filtrér filnavn" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Bearbejd kun dokumenter, der helt matcher dette filnavn, hvis angivet. Wildcards såsom *.pdf eller *faktura * er tilladt." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "filtrér dokumenter fra denne postregel" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "har denne(/disse) etiket(ter)" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "har denne dokumenttype" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "har denne korrespondent" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "workflow-udløser" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "workflow-udløsere" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "Tildeling" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "Fjernelse" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "Workflow-handlingstype" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "tildel titel" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Tildel en dokumenttitel, kan indeholde visse variabler, se dokumentation." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "tildel denne etiket" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "tildel denne dokumenttype" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "tildel denne korrespondent" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "tildel denne lagersti" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "tildel denne ejer" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "tildel visningstilladelser til disse brugere" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "tildel visningstilladelser til disse grupper" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "tildel ændringstilladelser til disse brugere" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "tildel ændringstilladelser til disse grupper" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "tildel disse tilpassede felter" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "fjern denne(/disse) etiket(ter)" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "fjern alle etiketter" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "fjern denne(/disse) dokumenttype(r)" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "fjern alle dokumenttyper" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "fjern denne(/disse) korrespondent(er)" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "fjern alle korrespondenter" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "fjern denne(/disse) lagersti(er)" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "fjern alle lagringsstier" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "fjern denne(/disse) ejer(e)" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "fjern alle ejere" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "fjern visningstilladelser for disse brugere" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "fjern visningstilladelser for disse grupper" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "fjern ændringstilladelser for disse brugere" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "fjern ændringstilladelser for disse grupper" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "fjern alle tilladelser" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "fjern disse tilpassede felter" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "fjern alle tilpassede felter" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "workflow-handling" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "workflow-handlinger" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "rækkefølge" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "udløsere" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "handlinger" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "aktiveret" @@ -920,16 +932,16 @@ msgstr "aktiveret" msgid "Invalid regular expression: %(error)s" msgstr "Ugyldigt regulært udtryk: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Ugyldig farve." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Filtype %(type)s understøttes ikke" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Ugyldig variabel fundet." @@ -1086,11 +1098,11 @@ msgstr "Stadig her?! Hmm, der er muligvis noget galt." msgid "Here's a link to the docs." msgstr "Her er et link til dokumenterne." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Delingslink blev ikke fundet." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Delingslink er udløbet." @@ -1289,135 +1301,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Engelsk (USA)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Tjekkisk" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Dansk" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Tysk" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Engelsk (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Spansk" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Fransk" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italiensk" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxemburgsk" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Hollandsk" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polsk" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugisisk (Brasilien)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugisisk" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Romansk" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Russisk" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Svensk" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx administration" @@ -1521,171 +1533,171 @@ msgstr "email regel" msgid "mail rules" msgstr "email regler" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Behandl kun vedhæftede filer." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Behandl alle filer, også indlejrede vedhæftede filer." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Slet" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Flyt til den angivne mappe" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Markér som læst, behandl ikke læste emails" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Flag emailen, undlad at behandle flagede emails" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Brug emnet som titel" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Benyt vedhæftningsfilnavn som titel" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Tildel ikke en korrespondent" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Brug emailadresse" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Benyt navn (eller emailadresse hvis den ikke er tilgængelig)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Benyt korrespondent valgt nedenfor" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "konto" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "mappe" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "" -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtrér fra" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filtrér emne" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filtrér krop" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "maksimal alder" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Specificeret i dage." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "vedhæftningstype" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Indlejrede vedhæftede filer er også indlejrede billeder, så det er bedst at kombinere denne indstilling med et filnavn." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "handling" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "parameter for handling" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Yderligere parameter for handlingen der er valgt ovenfor, dvs. destinationsmappen for \"flyt til mappe\"-handlingen. Undermapper skal adskilles af prikker." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "tildel titel fra" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "tildel korrespondent fra" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "" diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index 16cc3a5ee..ddea0bdd5 100644 --- a/src/locale/de_DE/LC_MESSAGES/django.po +++ b/src/locale/de_DE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-19 12:10\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-10 12:10\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokumente" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "Eigentümer" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Keiner" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Irgendein Wort" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Alle Wörter" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Exakte Übereinstimmung" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Regulärer Ausdruck" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Ungenaues Wort" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automatisch" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "Name" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "Zuweisungsmuster" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "Zuweisungsalgorithmus" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "Groß-/Kleinschreibung irrelevant" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "Korrespondent" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "Korrespondenten" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "Farbe" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "Posteingangs-Tag" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Markiert das Tag als Posteingangs-Tag. Neue Dokumente werden immer mit diesem Tag versehen." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "Tag" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "Tags" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "Dokumenttyp" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "Dokumenttypen" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "Pfad" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "Speicherpfad" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "Speicherpfade" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Nicht verschlüsselt" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Durch GNU Privacy Guard verschlüsselt" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "Titel" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "Inhalt" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Der Inhalt des Dokuments in Textform. Dieses Feld wird primär für die Suche verwendet." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "MIME-Typ" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "Prüfsumme" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Die Prüfsumme des originalen Dokuments." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "Archiv-Prüfsumme" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Die Prüfsumme des archivierten Dokuments." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "Ausgestellt" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "Geändert" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "Speichertyp" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "Hinzugefügt" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "Dateiname" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Aktueller Dateiname im Datenspeicher" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "Archiv-Dateiname" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Aktueller Dateiname im Archiv" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "Ursprünglicher Dateiname" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Ursprünglicher Dateiname beim Hochladen" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "Archiv-Seriennummer" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Die Position dieses Dokuments in Ihrem physischen Dokumentenarchiv." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "Dokument" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "Dokumente" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "Fehlersuche" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "Information" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "Warnung" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "Fehler" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "Kritisch" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "Gruppe" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "Nachricht" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "Level" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "Protokoll" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "Protokolle" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "Tabelle" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "Kleine Karten" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "Große Karten" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "Titel" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "Ausgestellt" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "Hinzugefügt" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "Tags" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "Korrespondent" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "Dokumenttyp" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "Speicherpfad" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "Notiz" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "Eigentümer" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "Freigegeben" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "ASN" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "Auf Startseite zeigen" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "In Seitenleiste zeigen" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "Sortierfeld" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "Umgekehrte Sortierung" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "Ansichts-Seitengröße" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "Ansichts-Anzeigemodus" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "Angezeigte Dokumentenfelder" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "Gespeicherte Ansicht" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "Gespeicherte Ansichten" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "Titel enthält" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "Inhalt enthält" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN ist" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "Korrespondent ist" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "Dokumenttyp ist" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "Ist im Posteingang" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "Hat Tag" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "Hat irgendein Tag" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "Ausgestellt vor" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "Ausgestellt nach" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "Ausgestellt im Jahr" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "Ausgestellt im Monat" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "Ausstellungstag ist" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "Hinzugefügt vor" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "Hinzugefügt nach" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "Geändert vor" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "Geändert nach" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "Hat nicht folgendes Tag" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "Dokument hat keine ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "Titel oder Inhalt enthält" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "Volltextsuche" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "Ähnliche Dokumente" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "hat Tags in" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN größer als" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN kleiner als" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "Speicherpfad ist" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "hat Korrespondenten in" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "hat keinen Korrespondenten in" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "hat Dokumenttyp in" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "hat keinen Dokumenttyp in" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "hat Speicherpfad in" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "hat keinen Speicherpfad in" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "Eigentümer ist" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "hat Eigentümer in" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "hat keinen Eigentümer" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "hat keinen Eigentümer in" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "Hat benutzerdefinierten Feld-Wert" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "Ist von mir freigegeben" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "hat benutzerdefinierte Felder" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "hat die benutzerdefinierten Felder" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "hat nicht die benutzerdefinierten Felder" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "hat nicht das benutzerdefinierte Feld" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "Regeltyp" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "Wert" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "Filterregel" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "Filterregeln" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "Aufgaben-ID" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery-ID für die ausgeführte Aufgabe" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Bestätigt" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Wenn die Aufgabe über die Benutzeroberfläche oder die API bestätigt wird" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Aufgaben-Dateiname" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Name der Datei, für die die Aufgabe ausgeführt wurde" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Aufgabenname" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Name der ausgeführten Aufgabe" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Aufgabenstatus" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Aktueller Status der laufenden Aufgabe" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Erstellungsdatum/-zeit" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Zeitpunkt, an dem das Ergebnis der Aufgabe erstellt wurde (in UTC)" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Startdatum/-zeit" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Zeitpunkt, an dem die Aufgabe erstellt wurde (in UTC)" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Abschlussdatum/-zeit" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Zeitpunkt, an dem die Aufgabe abgeschlossen wurde (in UTC)" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Ergebnisdaten" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Die von der Aufgabe zurückgegebenen Daten" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Notiz für das Dokument" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "Benutzer" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "Notiz" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "Notizen" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Archiv" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Original" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "Ablauf" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "Slug" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "Freigabelink" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "Freigabelinks" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Zeichenkette" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Datum" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Wahrheitswert" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Ganzzahl" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Gleitkommazahl" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Währung" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Dokumentenverknüpfung" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "Auswählen" + +#: documents/models.py:824 msgid "data type" msgstr "Datentyp" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "Zusätzliche Daten" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "Zusätzliche Daten für das benutzerdefinierte Feld, z. B. Auswahloptionen" + +#: documents/models.py:841 msgid "custom field" msgstr "Benutzerdefiniertes Feld" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "Benutzerdefinierte Felder" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "Benutzerdefinierte Feld-Instanz" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "Benutzerdefinierte Feld-Instanzen" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "Verarbeitung gestartet" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Dokument hinzugefügt" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Dokument aktualisiert" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Importordner" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "API-Upload" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "E-Mail-Abruf" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "Workflow-Auslösertyp" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "Pfad filtern" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Nur Dokumente, die mit diesem Pfad (falls angegeben) übereinstimmen, verarbeiten. Platzhalter wie * sind erlaubt. Groß- und Kleinschreibung wird nicht beachtet." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "Dateinamen filtern" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Nur Dokumente, die vollständig mit diesem Dateinamen (falls angegeben) übereinstimmen, verarbeiten. Platzhalter wie *.pdf oder *rechnung* sind erlaubt. Groß- und Kleinschreibung wird nicht beachtet." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "Dokumente aus dieser E-Mail-Regel filtern" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "hat diese(n) Tag(s)" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "hat diesen Dokumenttyp" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "hat diesen Korrespondenten" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "Arbeitsablauf-Auslöser" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "Arbeitsablauf-Auslöser" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "Zuordnung" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "Entfernung" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "Arbeitsablauf-Aktionstyp" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "Titel zuweisen" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Weisen Sie einen Dokumententitel zu. Dieser kann Platzhalter beinhalten, siehe Dokumentation." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "Dieses Tag zuweisen" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "Diesen Dokumenttyp zuweisen" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "Diesen Korrespondenten zuweisen" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "Diesen Speicherpfad zuweisen" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "Diesen Eigentümer zuordnen" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "Diesen Benutzern Anzeigeberechtigungen erteilen" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "Diesen Gruppen Anzeigeberechtigungen erteilen" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "Diesen Benutzern Bearbeitungsberechtigungen erteilen" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "Diesen Gruppen Bearbeitungsberechtigungen erteilen" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "Diese benutzerdefinierten Felder zuweisen" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "Diese(n) Tag(s) entfernen" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "Alle Tags entfernen" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "Diese(n) Dokumenttyp(en) entfernen" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "Alle Dokumenttypen entfernen" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "Diese(n) Korrespondenten entfernen" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "Alle Korrespondenten entfernen" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "Diese(n) Speicherpfad(e) entfernen" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "Alle Speicherpfade entfernen" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "Diese(n) Eigentümer entfernen" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "Alle Eigentümer entfernen" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "Anzeigeberechtigungen für diese Benutzer entfernen" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "Anzeigeberechtigungen für diese Gruppen entfernen" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "Bearbeitungsberechtigungen für diese Benutzer entfernen" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "Bearbeitungsberechtigungen für diese Gruppen entfernen" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "Alle Berechtigungen entfernen" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "Diese benutzerdefinierten Felder entfernen" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "Alle benutzerdefinierten Felder entfernen" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "Workflow-Aktion" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "Workflow-Aktionen" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "Reihenfolge" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "Auslöser" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "Aktionen" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "aktiviert" @@ -920,16 +932,16 @@ msgstr "aktiviert" msgid "Invalid regular expression: %(error)s" msgstr "Ungültiger regulärer Ausdruck: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Ungültige Farbe." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Dateityp %(type)s nicht unterstützt" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Ungültige Variable erkannt." @@ -1086,11 +1098,11 @@ msgstr "Immer noch hier?! Hmm, vielleicht stimmt etwas nicht." msgid "Here's a link to the docs." msgstr "Hier ist ein Link zur Dokumentation." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Freigabelink wurde nicht gefunden." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Freigabelink ist abgelaufen." @@ -1289,135 +1301,135 @@ msgstr "Anwendungslogo" msgid "paperless application settings" msgstr "Paperless-ngx-Anwendungseinstellungen" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Englisch (US)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arabisch" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Afrikanisch" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Belarussisch" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Bulgarisch" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Katalanisch" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Tschechisch" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Dänisch" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Deutsch" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Griechisch" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Englisch (UK)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Spanisch" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Finnisch" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Französisch" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Ungarisch" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italienisch" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "Japanisch" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxemburgisch" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norwegisch" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Niederländisch" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polnisch" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugiesisch (Brasilien)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugiesisch" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Rumänisch" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Russisch" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Slowakisch" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Slowenisch" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Serbisch" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Schwedisch" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Türkisch" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ukrainisch" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Chinesisch (vereinfacht)" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx Administration" @@ -1521,171 +1533,171 @@ msgstr "E-Mail-Regel" msgid "mail rules" msgstr "E-Mail-Regeln" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Nur Anhänge verarbeiten." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Vollständige E-Mail (mit eingebetteten Anhängen in der Datei) als .eml verarbeiten" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Vollständige Mail (mit eingebetteten Anhängen in der Datei) als .eml verarbeiten + Anhänge als separate Dokumente verarbeiten" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Alle Dateien verarbeiten, auch 'inline'-Anhänge." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Löschen" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "In angegebenen Ordner verschieben" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Als gelesen markieren, gelesene E-Mails nicht verarbeiten" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Als wichtig markieren, markierte E-Mails nicht verarbeiten" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Markiere die E-Mail mit dem angegebenen Tag, verarbeite markierte E-Mails nicht" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Betreff als Titel verwenden" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Dateiname des Anhangs als Titel verwenden" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "Titel nicht aus Regel zuweisen" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Keinen Korrespondenten zuweisen" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "E-Mail-Adresse verwenden" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Absendername verwenden (oder E-Mail-Adresse, wenn nicht verfügbar)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Nachfolgend ausgewählten Korrespondent verwenden" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "Konto" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "Ordner" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Unterordner müssen durch ein Trennzeichen, oft einen Punkt („.“) oder einen Schrägstrich („/“), getrennt werden. Dies variiert jedoch je nach Mailserver." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "Absender filtern" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "Empfänger filtern" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "Betreff filtern" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "Nachrichteninhalt filtern" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "Filter: Anhang-Dateiname (inklusiv)" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "Filter: Anhang-Dateiname (exklusiv)" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Dokumente, die vollständig mit diesem Dateinamen (falls angegeben) übereinstimmen, nicht verarbeiten. Platzhalter wie *.pdf oder *rechnung* sind erlaubt. Groß- und Kleinschreibung wird nicht beachtet." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "Maximales Alter" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Angegeben in Tagen." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "Dateianhangstyp" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "„Inline“-Anhänge schließen eingebettete Bilder mit ein, daher sollte diese Einstellung mit einem Dateinamenfilter kombiniert werden." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "Verarbeitungsumfang" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "Aktion" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "Parameter für Aktion" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Zusätzlicher Parameter für die oben ausgewählte Aktion, z. B. der Zielordner für die Aktion „In angegebenen Ordner verschieben“. Unterordner müssen durch Punkte getrennt werden." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "Titel zuweisen von" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "Korrespondent zuweisen von" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Dokumenten den Regeleigentümer zuweisen" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "UID" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "Betreff" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "Empfangen" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "Verarbeitet" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "Status" diff --git a/src/locale/el_GR/LC_MESSAGES/django.po b/src/locale/el_GR/LC_MESSAGES/django.po index cb2c2c343..2687d76e3 100644 --- a/src/locale/el_GR/LC_MESSAGES/django.po +++ b/src/locale/el_GR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-26 12:08\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Greek\n" "Language: el_GR\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Έγγραφα" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "ιδιοκτήτης" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Τίποτα" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Οποιαδήποτε λέξη" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Όλες οι λέξεις" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Ακριβής ταύτιση" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Κανονική έκφραση" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Ασαφής λέξη" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Αυτόματο" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "όνομα" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "αντιστοίχιση" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "αλγόριθμος αντιστοίχισης" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "χωρίς διάκριση πεζών - κεφαλαίων" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "ανταποκριτής" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "ανταποκριτές" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "χρώμα" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "είναι ετικέτα εισερχόμενων" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Μαρκάρει αυτή την ετικέτα ως ετικέτα εισερχόμενων: Όλα τα πρόσφατα καταναλωθέντα έγγραφα θα επισημαίνονται με ετικέτες εισερχόμενων." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "ετικέτα" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "ετικέτες" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "τύπος εγγράφου" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "τύποι εγγράφων" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "διαδρομή" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "διαδρομή αποθήκευσης" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "διαδρομές αποθήκευσης" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Μη Κρυπτογραφημένο" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Κρυπτογραφημένο με GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "τίτλος" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "περιεχόμενο" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Τα ωμά δεδομένα μόνο κειμένου του εγγράφου. Αυτό το πεδίο χρησιμοποιείται κυρίως για αναζήτηση." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "τύπος Mime" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "checksum" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Το checksum του αρχικού εγγράφου." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "checksum αρχειοθέτησης" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Το checksum του αρχειοθετημένου εγγράφου." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "δημιουργήθηκε" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "τροποποιήθηκε" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "τύπος αποθήκευσης" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "προστέθηκε" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "όνομα αρχείου" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Τρέχον όνομα αρχείου στον αποθηκευτικό χώρο" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "όνομα αρχείου αρχειοθήκης" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Τρέχον όνομα αρχείου αρχειοθήκης στον αποθηκευτικό χώρο" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "πρωτότυπο όνομα αρχείου" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Το αρχικό όνομα του αρχείου όταν μεταφορτώθηκε" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "σειριακός αριθμός αρχειοθέτησης" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Η θέση αυτού του εγγράφου στο αρχείο φυσικών εγγράφων σας." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "αρχείο" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "αρχεία" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "αποσφαλμάτωση" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "πληροφορίες" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "προειδοποίηση" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "σφάλμα" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "κρίσιμο" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "ομάδα" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "μήνυμα" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "επίπεδο" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "αρχείο καταγραφής" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "αρχεία καταγραφής" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "Πίνακας" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "Μικρές Κάρτες" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "Μεγάλες Κάρτες" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "Τίτλος" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "Δημιουργήθηκε" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "Προστέθηκε" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "Ετικέτες" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "Αντίστοιχος" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "Τύπος εγγράφου" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "Χώρος αποθήκευσης" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "Σημείωση" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "Κάτοχος" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "Κοινοποιήθηκε" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "ASN" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "εμφάνιση στο Ταμπλό" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "προβολή στην πλευρική στήλη" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "πεδίο ταξινόμησης" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "αντίστροφη ταξινόμηση" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "Προβολή μεγέθους σελίδας" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "Λειτουργία προβολής" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "Εμφάνιση πεδίων του εγγράφου" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "αποθηκευμένη προβολή" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "αποθηκευμένες προβολές" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "ο τίτλος περιέχει" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "το περιεχόμενο περιέχει" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "Το ASN είναι" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "ο ανταποκριτής είναι" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "ο τύπος εγγράφου είναι" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "είναι στα εισερχόμενα" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "έχει ετικέτα" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "έχει οποιαδήποτε ετικέτα" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "δημιουργήθηκε πριν από" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "δημιουργήθηκε μετά από" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "το έτος δημιουργίας είναι" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "ο μήνας δημιουργίας είναι" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "η ημέρα δημιουργίας είναι" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "προστέθηκε πριν" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "προστέθηκε μετά" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "τροποποιήθηκε πριν" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "τροποποιήθηκε μετά" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "δεν έχει ετικέτα" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "δεν έχει ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "ο τίτλος ή το περιεχόμενο περιέχει" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "ερώτημα πλήρους κειμένου" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "περισσότερα σαν αυτό" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "έχει ετικέτες σε" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN μεγαλύτερο από" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN μικρότερο από" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "η διαδρομή αποθήκευσης είναι" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "έχει ανταποκριτή σε" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "δεν έχει ανταποκριτή σε" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "έχει τύπο εγγράφου σε" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "δεν έχει τύπο εγγράφου σε" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "έχει διαδρομή αποθήκευσης σε" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "δεν έχει διαδρομή αποθήκευσης σε" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "ο ιδιοκτήτης είναι" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "έχει ιδιοκτήτη σε" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "δεν έχει ιδιοκτήτη" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "δεν έχει ιδιοκτήτη σε" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "έχει προσαρμοσμένη τιμή πεδίου" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "μοιράζεται από μένα" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "έχει προσαρμοσμένα πεδία" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "έχει προσαρμοσμένα πεδία στο" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "δεν έχει προσαρμοσμένο πεδίο στο" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "δεν έχει προσαρμοσμένο πεδίο" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "τύπος κανόνα" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "τιμή" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "κανόνας φίλτρου" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "κανόνες φίλτρων" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "Task ID" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID για την εργασία που εκτελέστηκε" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Αναγνωρίστηκε" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Εάν η εργασία αναγνωρίζεται μέσω του frontend ή του API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Όνομα Αρχείου Εργασίας" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Όνομα του αρχείου για το οποίο εκτελέστηκε η εργασία" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Όνομα Εργασίας" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Όνομα της εργασίας που εκτελέστηκε" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Κατάσταση Εργασίας" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Τρέχουσα κατάσταση εκτέλεσης της εργασίας" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Ημερομηνία/Ώρα Δημιουργίας" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Πεδίο ημερομηνίας/ώρας κατά τη δημιουργία της εργασίας σε UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Ημερομηνία/Ώρα Έναρξης" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Πεδίο ημερομηνίας/ώρας κατά την έναρξη της εργασίας σε UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Ημερομηνία/Ώρα Ολοκλήρωσης" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Πεδίο ημερομηνίας/ώρας κατά την ολοκλήρωση της εργασίας σε UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Αποτέλεσμα Δεδομένων" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Τα δεδομένα που επιστράφηκαν από την εργασία" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Σημείωση για το έγγραφο" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "χρήστης" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "σημείωση" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "σημειώσεις" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Αρχειοθέτηση" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Πρωτότυπο" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "λήξη" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "slug" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "κοινοποίηση συνδέσμου" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "κοινοποίηση συνδέσμων" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Συμβολοσειρά" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Ημερομηνία" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Δυαδικές τιμές" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Ακέραιος" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Δεκαδικός" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Νομισματικό" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Σύνδεσμος Εγγράφου" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "τύπος δεδομένων" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "προσαρμοσμένο πεδίο" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "προσαρμοσμένα πεδία" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "στιγμιότυπο προσαρμοσμένου πεδίου" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "στιγμιότυπα προσαρμοσμένων πεδίων" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "Η Κατανάλωση Ξεκίνησε" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Φάκελος Κατανάλωσης" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Μεταφόρτωση μέσω API" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Λήψη Αλληλογραφίας" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "διαδρομή φίλτρου" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Μόνο κατανάλωση εγγράφων με μια διαδρομή που ταιριάζει με αυτό αν έχει καθοριστεί. Επιτρέπεται η χρήση μπαλαντέρ που ορίζεται ως *. Χωρίς διάκριση πεζών-κεφαλαίων." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "φιλτράρισμα ονόματος αρχείου" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Μόνο κατανάλωση αρχείων που ταιριάζουν απόλυτα με το όνομα αρχείου, εάν καθοριστεί. Επιτρέπεται η χρήση μπαλαντέρ όπως *.pdf ή *invoice*. Δεν υπάρχει έλεγχος πεζών/κεφαλαίων." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "φιλτράρισμα εγγράφων από αυτόν τον κανόνα αλληλογραφίας" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "ανάθεση τίτλου" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Η ανάθεση τίτλου εγγράφου μπορεί να περιέχει μερικά placeholders, δείτε την τεκμηρίωση." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "ανάθεση αυτής της ετικέτας" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "ανάθεση αυτού του τύπου εγγράφου" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "ανάθεση αυτού του ανταποκριτή" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "ανάθεση αυτής της διαδρομής αποθήκευσης" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "ανάθεση αυτού του ιδιοκτήτη" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "εκχώρηση δικαιωμάτων προβολής σε αυτούς τους χρήστες" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "εκχώρηση δικαιωμάτων προβολής σε αυτές τις ομάδες" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "εκχώρηση δικαιωμάτων μεταβολής σε αυτές τις ομάδες" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "εκχώρηση δικαιωμάτων μεταβολής σε αυτές τις ομάδες" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "σειρά" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "ενέργειες" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "Άκυρη έκφραση: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Άκυρο χρώμα." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Ο τύπος αρχείου %(type)s δεν υποστηρίζεται" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Εντοπίστηκε μη έγκυρη μεταβλητή." @@ -1085,11 +1097,11 @@ msgstr "Ακόμα εδώ?! Χμμ, κάτι μπορεί να είναι λάθ msgid "Here's a link to the docs." msgstr "Ορίστε ένας σύνδεσμος για τις οδηγίες." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Δεν βρέθηκε σύνδεσμος κοινοποίησης." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Ο σύνδεσμος κοινοποίησης έχει λήξει." @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Αγγλικά (ΗΠΑ)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Αραβικά" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Αφρικανικά" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Λευκορωσικά" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Βουλγαρικά" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Καταλανικά" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Τσέχικα" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Δανέζικα" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Γερμανικά" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Ελληνικά" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Αγγλικά (Ηνωμένο Βασίλειο)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Ισπανικά" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Φινλανδικά" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Γαλλικά" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Ουγγρικά" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Ιταλικά" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Λουξεμβουργικά" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Νορβηγικά" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Ολλανδικά" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Πολωνικά" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Πορτογαλικά (Βραζιλίας)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Πορτογαλικά" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Ρουμάνικα" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Ρωσικά" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Σλοβακικά" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Σλοβενικά" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Σερβικά" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Σουηδικά" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Τούρκικα" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ουκρανικά" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Κινέζικα Απλοποιημένα" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Διαχείριση Paperless-ngx" @@ -1520,171 +1532,171 @@ msgstr "κανόνας mail" msgid "mail rules" msgstr "κανόνες αλληλογραφίας" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Επεξεργασία μόνο συνημμένων." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Επεξεργασία πλήρης αλληλογραφίας (με ενσωματωμένα συνημμένα στο αρχείο) ως .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Επεξεργασία πλήρης αλληλογραφίας (με ενσωματωμένα συνημμένα στο αρχείο) ως .eml + επεξεργασία συνημμένων ως ξεχωριστά έγγραφα" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Επεξεργασία όλων των αρχείων, συμπεριλαμβανομένων των 'inline' συνημμένων." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Διαγραφή" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Μετακίνηση στον καθορισμένο φάκελο" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Σήμανση ως αναγνωσμένο, μην επεξεργαστείς τα αναγνωσμένα μηνύματα" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Μαρκάρισμα αλληλογραφίας, μην επεξεργαστείς μαρκαρισμένα μηνύματα" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Προσθέστε ετικέτες στο mail με καθορισμένη ετικέτα, μην επεξεργαστείς μηνύματα με ετικέτες" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Χρήση θέματος ως τίτλος" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Χρήση ονόματος συνημμένου αρχείου ως τίτλος" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "Να μην αντιστοιχιστεί τίτλος από τον κανόνα" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Μην αναθέσετε ανταποκριτή" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Χρήση διεύθυνσης email" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Χρήση ονόματος (ή διεύθυνσης ηλεκτρονικού ταχυδρομείου, εάν δεν είναι διαθέσιμη)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Χρήση επιλεγμένου ανταποκριτή παρακάτω" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "λογαριασμός" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "φάκελος" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Οι υποφάκελοι πρέπει να διαχωρίζονται με οριοθέτη, συχνά με τελεία ('.') ή κάθετο ('/'), αλλά ποικίλλει ανάλογα με το διακομιστή αλληλογραφίας." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "φίλτρο από" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "φιλτράρισμα σε" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "φίλτρο θέματος" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "φίλτρο σώματος" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "μέγιστη ηλικία" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Καθορίζεται σε ημέρες." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "τύπος συνημμένου" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Τα ενσωματωμένα συνημμένα περιλαμβάνουν ενσωματωμένες εικόνες, οπότε είναι καλύτερο να συνδυάσετε αυτή την επιλογή με ένα φίλτρο ονόματος αρχείου." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "πεδίο εφαρμογής κατανάλωσης" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "ενέργεια" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "παράμετρος ενέργειας" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Επιπρόσθετη παράμετρος για την ενέργεια που επιλέχθηκε παραπάνω, παράδειγμα: ο φάκελος προορισμού της μετακίνησης σε φάκελο. Οι υποφακέλοι πρέπει να διαχωρίζονται με τελείες." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "ανάθεση τίτλου από" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "ανάθεση ανταποκριτή από" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Αναθέστε τον ιδιοκτήτη του κανόνα σε έγγραφα" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "θέμα" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "λήφθηκαν" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "επεξεργασμένα" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "κατάσταση" diff --git a/src/locale/es_ES/LC_MESSAGES/django.po b/src/locale/es_ES/LC_MESSAGES/django.po index 356a97843..cca346424 100644 --- a/src/locale/es_ES/LC_MESSAGES/django.po +++ b/src/locale/es_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:41\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Documentos" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "propietario" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Nada" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Cualquier palabra" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Todas las palabras" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Coincidencia exacta" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Expresión regular" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "nombre" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "coincidencia" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "Algoritmo de coincidencia" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "es insensible" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "interlocutor" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "interlocutores" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "color" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "es etiqueta de bandeja" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Marca esta etiqueta como una etiqueta de bandeja: todos los documentos recién consumidos serán etiquetados con las etiquetas de bandeja." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "etiqueta" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "etiquetas" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "tipo de documento" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "tipos de documento" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "ruta" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "ruta de almacenamiento" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "rutas de almacenamiento" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Sin cifrar" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Cifrado con GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "título" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "contenido" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Los datos de texto en bruto del documento. Este campo se utiliza principalmente para las búsquedas." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "tipo MIME" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "Cadena de verificación" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "La cadena de verificación del documento original." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "cadena de comprobación del archivo" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "La cadena de verificación del documento archivado." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "creado" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "modificado" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "tipo de almacenamiento" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "añadido" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "nombre del archivo" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Nombre de archivo actual en disco" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "nombre de archivo" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Nombre de archivo actual en disco" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "nombre del archivo original" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "El nombre que tenía el archivo cuando fue cargado" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "número de serie del archivo" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Posición de este documento en tu archivo físico de documentos." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "documento" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "documentos" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "depuración" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "información" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "alerta" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "error" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "crítico" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "grupo" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "mensaje" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "nivel" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "log" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "logs" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "mostrar en el panel de control" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "mostrar en barra lateral" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "campo de ordenación" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "ordenar al revés" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "vista guardada" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "vistas guardadas" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "el título contiene" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "el contenido contiene" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN es" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "interlocutor es" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "el tipo de documento es" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "está en la bandeja de entrada" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "tiene la etiqueta" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "tiene cualquier etiqueta" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "creado antes" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "creado después" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "el año de creación es" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "el mes de creación es" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "creado el día" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "agregado antes de" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "agregado después de" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "modificado después de" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "modificado antes de" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "no tiene la etiqueta" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "no tiene ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "el título o cuerpo contiene" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "consulta de texto completo" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "tiene etiquetas en" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN mayor que" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN menor que" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "la ruta de almacenamiento es" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "tiene interlocutor en" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "no tiene interlocutor en" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "tiene el tipo de documento en" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "no tiene el tipo de documento en" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "tiene ruta de almacenamiento en" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "no tiene ruta de almacenamiento en" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "dueño es" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "tiene dueño en" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "no tiene dueño" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "no tiene dueño en" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "tiene un valor de campo personalizado" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "compartido por mí" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "tipo de regla" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "valor" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "regla de filtrado" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "reglas de filtrado" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID de la tarea" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "ID de Celery de la tarea ejecutada" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Reconocido" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Si la tarea es reconocida a través del frontend o API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Nombre del archivo de tarea" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Nombre del archivo para el que se ejecutó la tarea" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Nombre de la tarea" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Nombre de la tarea ejecutada" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Estado de la tarea" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Estado de la tarea actualmente en ejecución" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Fecha y hora de creación" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Campo de fecha cuando el resultado de la tarea fue creado en UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Fecha y hora de inicio" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Campo de fecha cuando la tarea fue iniciada en UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Fecha de finalización" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Fecha-hora cuando la tarea se completó en UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Datos de resultado" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Datos devueltos por la tarea" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Nota para el documento" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "usuario" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "nota" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "notas" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Archivo" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Original" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "expiración" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "compartir enlace" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "compartir enlaces" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Cadena de texto" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Fecha" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Booleano" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Número entero" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Número flotante" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Monetario" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Enlace al documento" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "tipo de dato" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "campo personalizado" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "campos personalizados" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "instancia de campo personalizado" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "instancias de campos personalizados" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "Inicio de Análisis" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Documento añadido" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Documento Actualizado" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Consumir carpeta" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Carga de Api" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Buscar correo" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "Tipo de disparador de flujo de trabajo" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "filtrar ruta" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Sólo consumir documentos con una ruta que coincida con esta si se especifica. Los comodines especificados como * están permitidos. No permiten mayúsculas." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "filtrar nombre del archivo" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Sólo consumirá documentos que coincidan completamente con este nombre de archivo si se especifica. Se permiten comodines como *.pdf o *factura*. No diferencia mayúsculas." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "filtrar documentos de esta regla de correo" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "tiene estas etiqueta(s)" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "tiene este tipo de documento" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "tiene este interlocutor" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "disparador de flujo de trabajo" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "activadores de flujo de trabajo" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "Tarea" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "Tipo de acción del flujo de trabajo" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "asignar título" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Asignar título al documento, puede incluir marcadores de posición, vea documentación." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "asignar esta etiqueta" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "asignar este tipo de documento" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "asignar este interlocutor" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "asignar esta ruta de almacenamiento" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "asignar dueño" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "conceder permisos de vista a estos usuarios" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "conceder permisos de vista a estos grupos" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "conceder permisos de cambio a estos usuarios" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "conceder permisos de cambio a estos grupos" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "asignar estos campos personalizados" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "acción de flujo de trabajo" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "tiene un valor de campo personalizado" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "orden" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "disparador" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "acciones" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "habilitado" @@ -920,16 +932,16 @@ msgstr "habilitado" msgid "Invalid regular expression: %(error)s" msgstr "Expresión irregular inválida: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Color inválido." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Tipo de fichero %(type)s no suportado" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Variable inválida." @@ -1085,11 +1097,11 @@ msgstr "¡¿Todavía estás aquí?! Hmm, algo podría estar mal." msgid "Here's a link to the docs." msgstr "Aquí hay un enlace a la documentación." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Este enlace no ha sido encontrado." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "El enlace ha expirado." @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Inglés (US)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Árabe" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Africano" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Bielorruso" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Búlgaro" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Catalán" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Checo" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Danés" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Alemán" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Griego" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Inglés (Gran Bretaña)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Español" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Finlandés" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Francés" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Húngaro" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italiano" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxemburgués" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Noruego" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Alemán" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polaco" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugués (Brasil)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugués" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Rumano" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Ruso" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Eslovaco" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Esloveno" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Serbio" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Sueco" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turco" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ucraniano" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Chino simplificado" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Administración de Paperless-ngx" @@ -1520,171 +1532,171 @@ msgstr "regla de correo" msgid "mail rules" msgstr "reglas de correo" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Solo procesar ficheros adjuntos." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Procesar correo completo (con adjuntos en el archivo) como .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Procesar correo completo (con adjuntos incrustados en el archivo) como .eml + archivos adjuntos de proceso como documentos separados" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Procesar todos los ficheros, incluyendo ficheros 'incrustados'." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Borrar" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Mover a carpeta específica" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Marcar como leído, no procesar archivos leídos" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Marcar el correo, no procesar correos marcados" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Etiqueta el correo con la etiqueta especificada, no procesar correos etiquetados" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Usar asunto como título" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Usar nombre del fichero adjunto como título" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "No asignar título desde regla" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "No asignar interlocutor" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Usar dirección de correo" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Usar nombre (o dirección de correo sino está disponible)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Usar el interlocutor seleccionado a continuación" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "cuenta" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "carpeta" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Las subcarpetas deben estar separadas por un delimitador, normalmente un punto ('.') o barra ('/'), pero depende según el servidor de correo." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtrar desde" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filtrar a" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filtrar asunto" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filtrar cuerpo" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Solo se analizarán documentos que coincidan completamente con este nombre de fichero. Se permiten comodines como *.pdf o *factura*. No distingue mayúsculas-minúsculas." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "antigüedad máxima" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Especificado en días." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "tipo de fichero adjunto" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Adjuntos incrustados incluyen imágenes, por lo que es mejor combina resta opción un filtro de nombre de fichero." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "ámbito de consumo" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "acción" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "parámetro de acción" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Parámetro adicional para la acción seleccionada arriba. Ej. la carpeta de destino de la acción \"mover a carpeta\". Las subcarpetas deben estar separadas por puntos." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "asignar título desde" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "asignar interlocutor desde" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Asignar al propietario de la regla a los documentos" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "asunto" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "recibido" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "procesado" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "estado" diff --git a/src/locale/fi_FI/LC_MESSAGES/django.po b/src/locale/fi_FI/LC_MESSAGES/django.po index a4883ec62..5eb5845be 100644 --- a/src/locale/fi_FI/LC_MESSAGES/django.po +++ b/src/locale/fi_FI/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-09 12:09\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Language: fi_FI\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Asiakirjat" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "omistaja" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Ei mitään" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Mikä tahansa sana" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Kaikki sanat" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Tarkka osuma" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Säännöllinen lauseke (regex)" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Sumea sana" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automaattinen" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "nimi" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "osuma" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "tunnistusalgoritmi" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "ei ole herkkä" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "yhteyshenkilö" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "yhteyshenkilöt" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "väri" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "on uusien tunniste" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Merkitsee tämän tunnisteen uusien tunnisteeksi: Kaikille vastasyötetyille tiedostoille annetaan tämä tunniste." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "tunniste" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "tunnisteet" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "asiakirjatyyppi" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "asiakirjatyypit" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "polku" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "tallennustilan polku" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "tallennustilan polut" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Salaamaton" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "GNU Privacy Guard -salattu" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "otsikko" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "sisältö" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Raaka vain teksti -muotoinen dokumentin sisältö. Kenttää käytetään pääasiassa hakutoiminnossa." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "mime-tyyppi" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "tarkistussumma" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Alkuperäisen dokumentin tarkistussumma." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "arkistotarkastussumma" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Arkistoidun dokumentin tarkistussumma." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "luotu" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "muokattu" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "tallennustilan tyyppi" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "lisätty" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "tiedostonimi" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Tiedostonimi tallennustilassa" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "arkistointitiedostonimi" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Tämänhetkinen arkistointitiedostoimi tallennustilassa" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "alkuperäinen tiedostonimi" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Tiedoston alkuperäinen nimi, kun se oli ladattu" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "arkistointisarjanumero" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Asiakirjan sijainti fyysisessä arkistossa." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "asiakirja" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "asiakirjat" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "virheenjäljitys" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informaatio" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "varoitus" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "virhe" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kriittinen" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "ryhmä" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "viesti" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "taso" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "loki" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "lokit" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "Pienet kortit" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "Suuret kortit" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "Luotu" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "Lisätty" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "Tunnisteet" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "Asiakirjan tyyppi" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "Omistaja" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "Jaettu" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "näytä koontinäytöllä" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "näytä sivupaneelissa" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "lajittelukenttä" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "lajittele käänteisesti" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "Näytä sivun koko" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "tallennettu näkymä" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "tallennetut näkymät" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "otsikko sisältää" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "sisältö sisältää" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN on" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "yhteyshenkilö on" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "asiakirjatyyppi on" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "on uusi" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "on tagattu" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "on mikä tahansa tagi" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "luotu ennen" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "luotu jälkeen" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "luotu vuonna" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "luotu kuukautena" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "luomispäivä on" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "lisätty ennen" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "lisätty jälkeen" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "muokattu ennen" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "muokattu jälkeen" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "ei ole tagia" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "ei ole ASN-numeroa" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "otsikko tai sisältö sisältää" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "fulltext-kysely" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "sisältää tagit" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN suurempi kuin" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN pienempi kuin" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "tallennustilan polku on" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "omistaja on" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "sisältää mukautetun kentän arvon" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "on minun jakamani" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "sääntötyyppi" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "arvo" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "suodatussääntö" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "suodatussäännöt" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "Tehtävä-ID" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID tehtävälle, joka oli käynnissä" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Vahvistettu" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Jos tehtävä on vahvistettu frontendin tai API:n kautta" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Tehtävän tiedostonimi" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Tiedoston nimi, jolle tehtävä on suoritettu" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Tehtävänimi" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Tehtävän nimi, joka oli ajettu" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Tehtävän tila" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Suoritettavan tehtävän tämänhetkinen tila" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Luotu" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Päivämäärä, kun tehtävä valmistui (UTC)" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Aloitettu" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Päivämäärä, kun tehtävä käynnistyi (UTC)" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Valmistui" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Päivämäärä, kun tehtävä valmistui (UTC)" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Tulokset" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Tehtävän palauttamat tiedot" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "käyttäjä" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "muistiinpanot" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Alkuperäinen" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Kokonaisluku" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Asiakirjan linkki" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "datatyyppi" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "mukautettu kenttä" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "mukautetut kentät" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Asiakirja lisätty" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Asiakirja päivitetty" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "API-lähetys" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Tuo vain dokumentit jotka täsmäävät täysin tiedostonimen suhteen. Jokerimerkit kuten *.pdf tai *lasku* ovat sallittuja. Kirjainkoko ei merkitse." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "määritä tämä tunniste" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "määritä tämä asiakirjatyyppi" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "määritä tämä kirjeenvaihtaja" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "poista kaikki tunnisteet" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "poista nämä asiakirjatyypit" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "poista kaikki asiakirjatyypit" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "poista kaikki omistajat" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "poista kaikki käyttöoikeudet" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "poista nämä mukautetut kentät" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "poista kaikki mukautetut kentät" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "työnkulun toiminto" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "työnkulun toiminnot" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "järjestys" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "toiminnot" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "käytössä" @@ -920,16 +932,16 @@ msgstr "käytössä" msgid "Invalid regular expression: %(error)s" msgstr "Virheellinen regex-lauseke: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Virheellinen väri." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Tiedostotyyppiä %(type)s ei tueta" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Virheellinen muuttuja havaittu." @@ -1086,11 +1098,11 @@ msgstr "Vielä täällä?! Hmm, jokin saattaa olla vialla." msgid "Here's a link to the docs." msgstr "Tässä on linkki dokumentteihin." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Jakolinkkiä ei löytynyt." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Jakolinkki on vanhentunut." @@ -1289,135 +1301,135 @@ msgstr "Sovelluksen logo" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Englanti (US)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arabialainen" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "valkovenäjä" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Katalaani" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Tšekki" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Tanska" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Saksa" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Kreikka" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Englanti (US)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Espanja" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Suomi" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Ranska" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italia" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxemburg" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norja" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Hollanti" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "puola" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "portugali (Brasilia)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "portugali" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "romania" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "venäjä" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Slovakia" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Slovenia" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Serbia" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "ruotsi" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turkki" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ukraina" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Kiina (yksinkertaistettu)" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx:n ylläpito" @@ -1521,171 +1533,171 @@ msgstr "sähköpostisääntö" msgid "mail rules" msgstr "sähköpostisäännöt" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Prosessoi vain liitteet." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Käsittele koko sähköposti (johon on upotettu liitetiedostoja) kuten .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Käsittele koko sähköposti (johon on upotettu liitetiedostoja) kuten .eml ja käsittele liitteet erillisinä asiakirjoina" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Prosessoi kaikki tiedostot, sisältäen \"inline\"-liitteet." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Poista" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Siirrä määritettyyn kansioon" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Merkitse luetuksi, älä prosessoi luettuja sähköposteja" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Liputa sähköposti, älä käsittele liputettuja sähköposteja" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Merkitse viesti määrätyllä tagilla, älä käsittele tageja" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Käytä aihetta otsikkona" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Käytä liitteen tiedostonimeä otsikkona" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Älä määritä yhteyshenkilöä" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Käytä sähköpostiosoitetta" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Käytä nimeä (tai sähköpostiosoitetta, jos ei ole saatavilla)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Käytä alla valittua yhteyshenkilöä" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "tili" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "kansio" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Alikansiot on erotettava erottimella, usein pisteellä ('.') tai kauttaviivalla ('/'), mutta se vaihtelee postipalvelimen mukaan." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "suodata lähettäjä-kenttä" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "suodata lähettäjä-kenttä" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "suodata aihe" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "suodata runko" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "ikä enintään" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Määritetty päivinä." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "liitteen tyyppi" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Sisäiset liitteet sisältävät upotettuja kuvia, joten on parasta yhdistää tämä vaihtoehto tiedostonimen suodattimeen." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "tuonnin laajuus" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "toiminto" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "toiminnon parametrit" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Yllä valitun toiminnon lisäparametri eli siirrä hakemistoon -toiminnon kohdehakemisto. Alikansiot on erotettava toisistaan pisteillä." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "aseta otsikko kohteesta" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "määritä kirjeenvaihtaja kohteesta" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "aihe" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "vastaanotettu" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "käsitelty" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "tila" diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po index 8411076d1..439b5b164 100644 --- a/src/locale/fr_FR/LC_MESSAGES/django.po +++ b/src/locale/fr_FR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-19 00:25\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Documents" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "propriétaire" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Aucun élément" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Un des mots" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Tous les mots" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Concordance exacte" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Expression régulière" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Mot approximatif" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automatique" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "nom" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "rapprochement" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "algorithme de rapprochement" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "est insensible à la casse" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "correspondant" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "correspondants" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "couleur" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "est une étiquette de boîte de réception" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Marque cette étiquette comme étiquette de boîte de réception : ces étiquettes sont affectées à tous les documents nouvellement traités." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "étiquette" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "étiquettes" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "type de document" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "types de document" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "chemin" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "chemin de stockage" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "chemins de stockage" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Non chiffré" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Chiffré avec GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "titre" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "contenu" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Les données brutes du document, en format texte uniquement. Ce champ est principalement utilisé pour la recherche." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "type mime" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "somme de contrôle" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "La somme de contrôle du document original." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "somme de contrôle de l'archive" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "La somme de contrôle du document archivé." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "créé le" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "modifié" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "forme d'enregistrement :" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "date d'ajout" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "nom du fichier" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Nom du fichier courant en base de données" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "nom de fichier de l'archive" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Nom du fichier d'archive courant en base de données" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "nom de fichier d'origine" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Le nom original du fichier quand il a été envoyé" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "numéro de série d'archivage" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Le classement de ce document dans votre archive de documents physiques." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "document" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "documents" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "débogage" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informations" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "avertissement" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "erreur" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "critique" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "groupe" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "message" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "niveau" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "journal" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "journaux" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "Tableau" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" -msgstr "Peittes cartes" +msgstr "Petites cartes" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "Grandes cartes" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "Titre" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "Date de création" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "Date d'ajout" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "Étiquettes" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "Correspondant" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "Type du document" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "Chemins de stockage" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "Note" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "Propriétaire" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "Partagé" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "NSA" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "montrer sur le tableau de bord" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "montrer dans la barre latérale" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "champ de tri" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "tri inverse" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "Voir la taille de la page" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "Voir le mode d'affichage" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "Champs d'affichage du document" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "vue enregistrée" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "vues enregistrées" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "le titre contient" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "le contenu contient" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "le NSA est" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "le correspondant est" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "le type de document est" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "est dans la boîte de réception" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "porte l'étiquette" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "porte l'une des étiquettes" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "créé avant" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "créé après" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "l'année de création est" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "le mois de création est" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "le jour de création est" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "ajouté avant" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "ajouté après" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "modifié avant" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "modifié après" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "ne porte pas d'étiquette" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "ne porte pas de NSA" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "le titre ou le contenu contient" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "recherche en texte intégral" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "plus comme cela" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "porte une étiquette parmi" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "NSA supérieur à" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "NSA inférieur à" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "le chemin de stockage est" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "a un correspondant dans" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "n'a pas de correspondant dans" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "a le type de document dans" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "n'a pas de type de document dans" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "a un chemin de stockage dans" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "n'a pas de chemin de stockage dans" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "le propriétaire est" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "a le propriétaire dans" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "n'a pas de propriétaire" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "n'a pas de propriétaire dans" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "a valeur d'un champ personnalisé" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "est partagé par moi" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "a des champs personnalisés" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "a un champ personnalisé dans" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "n'a pas de champ personalisé dans" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "n'as pas de champ personnalisé" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "type de règle" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "valeur" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "règle de filtrage" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "règles de filtrage" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID de tâche" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Identifiant Celery pour la tâche qui a été exécutée" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Confirmer" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Si la tâche est prise en compte via l'interface utilisateur ou l'API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Nom du fichier de tâche" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Nom du fichier pour lequel la tâche a été exécutée" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Nom de la tâche" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Nom de la tâche qui a été exécuté" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "État de la tâche" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "État actuel de la tâche en cours d'exécution" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Date de création" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Champ de date lorsque le résultat de la tâche a été créé en UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Date de début" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Date UTC à laquelle la tâche a été créée" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Date de fin" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Date UTC à laquelle la tâche a été terminée" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Données de résultat" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Les données retournées par la tâche" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Note pour le document" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "utilisateur" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "note" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "notes" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Archive" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Original" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "expiration" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "identifiant URL" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "lien de partage" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "liens de partage" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Chaîne de caractères" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Date" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Booléen" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Nombre entier" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Nombre décimal" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Monétaire" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Lien du document" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "type de données" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "champ personnalisé" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "champs personnalisés" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "instance de champs personnalisés" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "instances de champs personnalisés" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "La consommation a débuté" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Document ajouté" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Document mis à jour" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Dossier d'Importation" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Téléverser l'Api" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Récupération du courriel" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "Type de déclencheur de workflow" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "filtrer le chemin" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "N'importer que les documents dont le chemin correspond à celui-ci s'il est spécifié. Les caractères spécifiés par * sont autorisés. Insensible à la casse." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "filtrer le nom de fichier" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Ne traiter que les documents correspondant intégralement à ce nom de fichier s'il est spécifié. Les jokers tels que *.pdf ou *facture* sont autorisés. La casse n'est pas prise en compte." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "filtrer les documents à partir de cette règle de messagerie" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "a cette/ces étiquette(s)" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "a ce type de document" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "a ce correspondant" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "déclencheur workflow" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "déclencheurs workflow" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "Affectation" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "Suppression" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "Type d'action de workflow" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "attribuer un titre" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Assigner un titre de document, peut inclure certains marqueurs, voir la documentation." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "affecter cette étiquette" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "affecter ce type de document" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "affecter ce correspondant" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "assigner ce chemin de stockage" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "assigner ce propriétaire" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "accorder des autorisations de consultation à ces utilisateurs" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "accorder des autorisations de consultation à ces groupes" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "accorder des droits de modification à ces utilisateurs" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "accorder des droits de modification à ces groupes" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "assigner ces champs personnalisés" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "supprimer cette/ces étiquette(s)" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "supprimer toutes les étiquettes" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "supprimer ce(s) type(s) de document" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "supprimer tous les types de document" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "supprimer ce(s) correspondant(s)" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "supprimer tous les correspondants" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "supprimer ce(s) chemin(s) de stockage" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "supprimer tous les chemins de stockage" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "supprimer ce(s) propriétaire(s)" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "supprimer tous les propriétaires" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "supprimer les autorisations de consultation pour ces utilisateurs" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "supprimer les autorisations de consultation pour ces groupes" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "supprimer l'autorisation de modification pour ces utilisateurs" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "supprimer l'autorisation de modification pour ces groupes" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "supprimer toutes les autorisations" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "supprimer tous ces champs personnalisés" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "supprimer tous les champs personnalisés" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "action de workflow" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "actions de workflow" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "ordre" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "déclencheurs" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "actions" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "activé" @@ -920,16 +932,16 @@ msgstr "activé" msgid "Invalid regular expression: %(error)s" msgstr "Expression régulière incorrecte : %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Couleur incorrecte." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Type de fichier %(type)s non pris en charge" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Variable invalide détectée." @@ -1085,11 +1097,11 @@ msgstr "Toujours ici ? Hum, quelque chose a dû mal se passer." msgid "Here's a link to the docs." msgstr "Voici un lien vers la documentation." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Le lien de partage n'a pas été trouvé." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Le lien de partage a expiré." @@ -1288,135 +1300,135 @@ msgstr "Nom de l'application" msgid "paperless application settings" msgstr "paramètres de l'application paperless" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Anglais (US)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arabe" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Afrikaans" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Biélorusse" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Bulgare" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Catalan" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Tchèque" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Danois" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Allemand" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Grec" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Anglais (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Espagnol" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Finnois" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Français" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Hongrois" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italien" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "Japonais" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxembourgeois" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norvégien" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Néerlandais" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polonais" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugais (Brésil)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugais" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Roumain" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Russe" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Solvaque" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Slovène" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Serbe" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Suédois" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turc" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ukrainien" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Chinois simplifié" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Administration de Paperless-ngx" @@ -1520,171 +1532,171 @@ msgstr "règle de courriel" msgid "mail rules" msgstr "règles de courriel" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Ne traiter que les pièces jointes." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Traiter le courriel entier (dont les pièces jointes comme fichier) en tant que .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Traiter le courriel entier (dont les pièces jointes intégrées comme fichier) en .eml + traiter les pièces jointes comme des documents séparés" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Traiter tous les fichiers, y compris les pièces jointes \"en ligne\"." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Supprimer" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Déplacer vers le dossier spécifié" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Marquer comme lu, ne pas traiter les courriels lus" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Marquer le courriel, ne pas traiter les courriels marqués" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Affecter l’étiquette spécifiée au courriel, ne pas traiter les courriels étiquetés" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Utiliser le sujet en tant que titre" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Utiliser le nom de la pièce jointe en tant que titre" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "Ne pas affecter de titre avec cette règle" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Ne pas affecter de correspondant" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Utiliser l'adresse électronique" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Utiliser le nom (ou l'adresse électronique s'il n'est pas disponible)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Utiliser le correspondant sélectionné ci-dessous" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "compte" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "répertoire" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Les sous-dossiers doivent être séparés par un délimiteurs, souvent un point ('.') ou un slash ('/'), en fonction du serveur de messagerie." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtrer l'expéditeur" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filtre selon le courriel du destinataire" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filtrer le sujet" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filtrer le corps du message" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "filtrer le nom de fichier de la pièce jointe de manière inclusive" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "filtrer le nom de fichier de la pièce jointe de manière exclusive" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "N'importer que les documents qui correspondent intégralement à ce nom de fichier s'il est spécifié. Les caractères tels que *.pdf ou *facture* sont autorisés. La casse n'est pas prise en compte." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "âge maximum" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "En jours." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "type de pièce jointe" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Les pièces jointes en ligne comprennent les images intégrées, il est donc préférable de combiner cette option avec un filtre de nom de fichier." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "périmètre de consommation" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "action" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "paramètre d'action" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Paramètre supplémentaire pour l'action sélectionnée ci-dessus, par exemple le dossier cible de l'action de déplacement vers un dossier. Les sous-dossiers doivent être séparés par des points." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "affecter le titre depuis" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "affecter le correspondant depuis" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Affecter le propriétaire de la règle aux documents" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "identifiant unique" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "objet" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "reçu" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "traité" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "état" diff --git a/src/locale/he_IL/LC_MESSAGES/django.po b/src/locale/he_IL/LC_MESSAGES/django.po index e51a1a432..3c43bf866 100644 --- a/src/locale/he_IL/LC_MESSAGES/django.po +++ b/src/locale/he_IL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:40\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Language: he_IL\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "מסמכים" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "בעלים" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "ללא" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "מילה כלשהי" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "כל המילים" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "התאמה מדויקת" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "ביטוי רגולרי" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "מילה מעורפלת" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "אוטומטי" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "שם" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "התאמה" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "אלגוריתם התאמה" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "אינו תלוי רישיות" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "מכותב" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "מכותבים" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "צבע" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "תגית דואר נכנס" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "מסמן תגית זו כתגית דואר נכנס: כל המסמכים החדשים שהתקבלו יתויגו עם תגית דואר נכנס." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "תגית" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "תגיות" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "סוג מסמך" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "סוגי מסמך" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "נתיב" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "נתיב אכסון" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "נתיבי אכסון" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "לא מוצפן" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "הוצפן באמצעות GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "כותרת" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "תוכן" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "הנתונים הגולמיים של המסמך, המכילים טקסט בלבד. שדה זה משמש בעיקר לצורך חיפוש." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "סוג mime" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "מחרוזת בדיקה" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "מחרוזת בדיקה של המסמך המקורי." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "מחרוזת בדיקה לארכיון" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "מחרוזת הבדיקה למסמך בארכיון." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "נוצר" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "נערך לאחרונה" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "סוג אחסון" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "התווסף" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "שם קובץ" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "שם קובץ נוכחי באחסון" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "שם קובץ בארכיון" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "שם קובץ ארכיוני נוכחי באחסון" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "שם קובץ מקורי" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "השם המקורי של הקובץ לפני שהוא הועלה" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "מספר סידורי בארכיון" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "מיקומו של מסמך זה בארכיון המסמכים הפיזי שלך." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "מסמך" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "מסמכים" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "ניפוי שגיאות" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "מידע" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "אזהרה" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "שגיאה" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "קריטי" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "קבוצה" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "הודעה" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "רמה" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "יומן רישום" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "יומני רישום" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "טבלה" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "כרטיסיות קטנות" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "כרטיסיות גדולות" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "כותרת" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "נוצר" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "נוסף" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "תגיות" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "מכותב" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "סוג מסמך" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "נתיב אחסון" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "הערה" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "בעלים" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "משותף" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "ארכיב" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "הצג בדשבורד" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "הצג בסרגל צידי" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "שדה המיון" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "מיין הפוך" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "תצוגה שמורה" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "תצוגות שמורות" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "כותרת מכילה" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "תוכן מכיל" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "מס\"ד הוא" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "מכותב הוא" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "סוג מסמך הוא" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "בתיבה הנכנסת" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "ישנו תיוג" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "ישנו כל תיוג" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "נוצר לפני" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "נוצר לאחר" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "נוצר בשנת" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "נוצר בחודש" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "נוצר ביום" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "נוסף לפני" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "נוסף אחרי" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "נערך לפני" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "נערך אחרי" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "אינו כולל את התיוג" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "אינו בעל מס\"ד" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "כותרת או תוכן מכילים" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "שאילתת טקסט מלא" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "עוד כמו זה" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "מכיל תגים ב־" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "מערכת אוטונומית גדולה מ" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "מערכת אוטונומית קטן מ" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "מיקום האיחסון" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "קיים מכותב ב" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "ללא מכותב" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "סוג מסמך הוא" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "ללא סיווג סוג מסמך" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "נתיב האחסון" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "ללא נתיב אחסון" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "הבעלים הם" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "יש בעלים תחת" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "אין בעלים" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "אין בעלים תחת" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "עם שדה מותאם אישית" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "משותף" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "סוג כלל" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "ערך" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "חוק סינון" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "חוקי סינון" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "מספר משימה" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "מזהה סלרי עבור המשימה שהופעלה" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "מודע" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "אם המשימה מאושרת דרך ה-frontend או ה-API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "שם קובץ משימה" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "שם הקובץ שעבורו בוצעה המשימה" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "שם המשימה" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "שם המשימה שתורץ" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "מצב המשימה" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "מצב הנוכחי של המשימה אשר רצה" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "יצירת תאריך שעה" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "שדה תאריך שעה כאשר תוצאת המשימה נוצרה ב-UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "תאריך שעה התחילה" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "שדה תאריך שעה כאשר תוצאת המשימה נוצרה ב-UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "תאריך שעה הושלמה" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "שדה תאריך שעה כאשר תוצאת המשימה נוצרה ב-UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "תוצאת מידע" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "המידע מאוחזר ע\"י המשימה" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "הערה להמסמך" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "משתמש" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "הערה" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "הערות" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "ארכיון" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "מקור" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "תפוגה" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "טוקן" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "שתף קישור" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "שתף קישורים" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "מחרוזת" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "כתובת URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "תאריך" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "בוליאני" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "מספר שלם" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "צף" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "כספי" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "קישור למסמך" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "סוג מידע:" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "שדה מותאם אישית" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "שדות מותאמים אישית" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "שדה מותאם אישית" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "שדות מותאמים אישית" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "הצריכה התחילה" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "המסמך התווסף" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "המסמך עודכן" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "עיבוד תיקיה" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "העלאה באמצעות API" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "הורד מייל" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "נתיב מסנן" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "עבד רק קבצים המצוים בנתיב זה אם מוגדר. " -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "סנן לפי שם קובץ" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "קבל רק מסמכים שתואמים לחלוטין את שם הקובץ הזה אם צוין. תווים כלליים כגון pdf.* או *חשבונית* מותרים. חסר רגישות תווים גדולים/קטנים (אנגלית)." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "סנן מסמכים לפי כלל המייל הזה" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "יש את סוג המסמך זה" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "יש את המכותב זה" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "הקצאה" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "הסרה" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "הקצה כותרת" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "הקצה כותרת למסמך, תוכל להשתמש במראה מקומות. בדוק כיצד במדריך למשתמש" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "שייך תגית זו" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "שייך סוג מסמך זה" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "שייך מכותב זה" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "הקצה נתיב אחסון זה" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "הקצה בעלים זה" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "אפשר זכויות צפיה בקובץ למשתמשים אלו" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "אפשר זכויות צפיה בקובץ לקבוצות אלו" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "אפשר זכויות שינוי הגדרות צפיה בקובץ למשתמשים אלו" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "אפשר זכויות שינוי הגדרות צפיה בקובץ לקבוצות אלו" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "הקצה שדות מותאמים אישית אלו " -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "הסר את התגים האלה" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "הסרת כל התגיות" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "הסר סוגי מסמכים" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "הסר את כל סוגי מסמכים" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "הסר מכותבים" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "הסר את כל המכותבים" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "הסר מקומות האכסון" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "הסר את כל מקומות האכסון" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "הסר את הבעלים האלה" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "הסרת כל הבעלים" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "הסר זכויות צפיה בקובץ למשתמשים אלו" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "הסר זכויות צפיה בקובץ לקבוצות אלו" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "הסר זכויות שינוי הגדרות צפיה בקובץ למשתמשים אלו" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "הסר זכויות שינוי הגדרות שינוי בקובץ לקבוצות האלו" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "הסר את כל ההרשאות" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "סדר" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "גורמים מפעילים" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "פעולות" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "פעיל" @@ -920,16 +932,16 @@ msgstr "פעיל" msgid "Invalid regular expression: %(error)s" msgstr "ביטוי רגולרי בלתי חוקי: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "צבע לא חוקי." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "סוג קובץ %(type)s לא נתמך" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "משתנה לא חוקי זוהה." @@ -1085,11 +1097,11 @@ msgstr "עדיין כאן?! הממ, יכול להיות שמשהו לא בסדר msgid "Here's a link to the docs." msgstr "הנה קישור למסמכים." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "קישור לשיתוף הקובץ לא נמצא" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "לינק לקישור הקובץ פג תוקף" @@ -1288,135 +1300,135 @@ msgstr "לוגו יישום" msgid "paperless application settings" msgstr "הגדרות יישום paperless" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "אנגלית (ארה״ב)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "ערבית" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "אפריקאנס" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "בלרוסית" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "בולגרית" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "קטלאנית" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "צ'כית" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "דנית" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "גרמנית" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "יוונית" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "אנגלית (בריטניה)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "ספרדית" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "פינית" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "צרפתית" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "הונגרית" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "איטלקית" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "יפנית" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "לוקסמבורגית" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "נורווגית" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "הולנדית" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "פולנית" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "פורטוגלית ברזילאית" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "פורטוגלית" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "רומנית" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "רוסית" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "סלובקית" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "סלובנית" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "סרבית" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "שוודית" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "טורקית" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "אוקראינית" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "סינית מפושטת" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "ניהול Paperless-ngx" @@ -1520,171 +1532,171 @@ msgstr "כלל דואר אלקטרוני" msgid "mail rules" msgstr "כללי דואר אלקטרוני" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "עבד רק קבצים מצורפים." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "עיבוד הדואר מלא (הקבצים מצורפים מוטבעים בקובץ) בפורמט .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "עיבוד הדואר מלא (הקבצים מצורפים מוטבעים בקובץ) בפורמט .eml + הקבצים המצורפים מעובדים כמסמכים מופרדים" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "עבד את כל הקבצים, כולל קבצים מצורפים 'מוטבעים'." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "מחיקה" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "העברה לתיקייה שצוינה" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "סימון כנקרא, לא לעבד הודעות דוא״ל שנקראו" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "סמן דואר, אל תעבד הודעות דואר שסומנו" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "תייגו את הדואר בתג שצוין, אל תתיגו מיילים שתוייגו בעבר" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "השתמש בנושא ככותרת" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "השתמש בשם הקובץ המצורף ככותרת" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "אל תקצה כותרת מהכלל שהוגדר במערכת" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "אל תשייך מכותב" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "השתמש בכתובת הדואר" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "השתמש בשם (או בכתובת דואר אם אין שם)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "השתמש במכותב הנבחר להלן" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "חשבון" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "תיקייה" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "יש להפריד בין תיקיות משנה באמצעות תוחם, לרוב נקודה ('.') או קו נטוי ('/'), אך זה משתנה לפי שרת הדואר." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "סנן 'מאת'" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "סנן לפי ׳נמען׳" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "סנן 'נושא'" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "סנן 'גוף'" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "סנן לפי 'שם קובץ מצורף'" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "סנן ללא 'שם קובץ מצורף'" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "קבל רק מסמכים שתואמים לחלוטין את שם הקובץ הזה אם צוין. תווים כלליים כגון pdf.* או *חשבונית* מותרים. חסר רגישות תווים גדולים/קטנים (אנגלית)." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "גיל מקסימלי" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "נקוב בימים." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "סוג קובץ מצורף" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "קבצים מצורפים 'מוטבעים' עלולים לכלול תמונות מוטמעות, לכן האופציה הטובה ביותר היא לשלב אופציה זו עם סנן 'שם קובץ מצורף'." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "היקף הצריכה" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "פעולה" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "פרמטר פעולה" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "פרמטר נוסף עבור הפעולה שנבחרה לעיל, כלומר, תיקיית היעד של פעולת המעבר לתיקיה. יש להפריד בין תיקיות משנה באמצעות נקודות." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "שייך כותרת מ-" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "שייך מכותב מ-" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "הקצה בעלות קבצים מתוך הכלל שהוגדר במערכת" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "מזהה uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "נושא" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "התקבל" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "בתהליך" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "סטטוס" diff --git a/src/locale/hr_HR/LC_MESSAGES/django.po b/src/locale/hr_HR/LC_MESSAGES/django.po index 36d8a2ef9..0ee9efd0d 100644 --- a/src/locale/hr_HR/LC_MESSAGES/django.po +++ b/src/locale/hr_HR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:40\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Croatian\n" "Language: hr_HR\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokumenti" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "vlasnik" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Ništa" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Bilo koja riječ" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Sve riječi" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Točno podudaranje" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Uobičajeni izraz" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "ime" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "podudarati" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "algoritam podudaranja" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "ne razlikuje velika i mala slova" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "dopisnik" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "dopisnici" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "boja" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "oznaka ulazne pošte (inbox)" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Označava ovu oznaku kao oznaku ulazne pošte (inbox): Svi novopotrošeni dokumenti bit će označeni oznakama ulazne pošte (inbox)." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "oznaka" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "oznake" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "vrsta dokumenta" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "vrste dokumenta" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "putanja" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "putanja pohrane" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "putanje pohrane" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Nekriptirano" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Enkriptirano s GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "naslov" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "sadržaj" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Neobrađeni tekstualni podaci dokumenta. Ovo se polje koristi prvenstveno za pretraživanje." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "vrste mime" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "kontrolni zbroj" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Kontrolni zbroj originalnog dokumenta." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "arhivski kontrolni zbroj" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Kontrolni zbroj arhiviranog dokumenta." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "stvoreno" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "modificiran" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "vrsta pohrane" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "dodano" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "naziv datoteke" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Trenutni naziv pohranjene datoteke" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "naziv arhivirane datoteke" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Trenutni naziv arhivirane pohranjene datoteke" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "izvorno ime datoteke" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Izvorno ime datoteke prilikom prijenosa" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "arhivirani serijski broj" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Položaj ovog dokumenta u vašoj fizičkoj arhivi dokumenata." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "dokument" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "dokumenti" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "otklanjanje pogrešaka" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informacije" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "upozorenje" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "greška" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kritično" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "grupa" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "poruka" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "razina" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "zapisnik" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "zapisnici" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "prikaži na nadzornoj ploči" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "prikaži u bočnoj traci" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "sortiraj polje" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "obrnuto sortiranje" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "spremljen prikaz" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "spremljeni prikazi" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "naslov sadrži" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "sadržaj sadrži" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN je" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "dopisnik je" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "vrsta dokumenta je" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "nalazi se u ulaznoj pošti" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "ima oznaku" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "ima bilo kakvu oznaku" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "stvoreni prije" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "stvoreno poslije" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "godina stvaranja je" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "mjesec stvaranja je" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "dan stvaranja je" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "dodano prije" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "dodano poslije" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "modificirano prije" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "modificirano poslije" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "ne posjeduje oznaku" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "ne posjeduje ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "naziv ili sadržaj sadrži" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "upit za cijeli tekst" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "sadrži oznake" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN veći od" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN manji od" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "putanja za pohranu je" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "ima tip dokumenta u" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "nema tip dokumenta u" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "vrsta pravila" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "vrijednost" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "pravilo filtera" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "pravila filtera" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "Zadatak ID" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID zadatka koji je pokrenut" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Potvrđeno" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Ako je zadatak potvrđen putem korisničkog sučelja ili API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Naziv datoteke zadatka" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Name of the file which the Task was run for" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Ime Zadatka" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Naziv zadatka koji je pokrenut" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Stanje zadatka" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Trenutno stanje izvršavanja zadatka" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Datum i vrijeme stvaranja" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Polje datuma i vremena kada je rezultat zadatka stvoren u UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Početak - DateTime" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Polje datuma i vremena kada je zadatak započeo u UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Završeno datum i vrijeme" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Polje datuma i vremena kada je zadatak završio u UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Podaci o rezultatima" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Podaci zaprimljeni od zadatka" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "korisnik" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "bilješka" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "bilješka" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Arhiva" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Izvornik" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "istječe" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "dijeli vezu" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Datum" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Plutajući" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Poveznica dokumenta" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "vrsta dokumenta" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Konzumirajte samo dokumente koji u potpunosti odgovaraju ovom nazivu datoteke ako je navedeno. Dopušteni su zamjenski znakovi kao što su *.pdf ili *faktura*. Neosjetljivo je na mala i mala slova." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "dodijeli oznaku" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "dodijeliti ovu vrstu dokumenta" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "dodijelite ovom dopisniku" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "dodijeliti ova prilagođena polja" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "redoslijed" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "Nevažeći regularni izraz: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Nevažeća boja." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Vrsta datoteke %(type)s nije podržana" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Otkrivena je nevaljana vrsta datoteke." @@ -1085,11 +1097,11 @@ msgstr "Još uvijek si ovdje?! Hmm, možda nešto nije u redu." msgid "Here's a link to the docs." msgstr "Poveznica na dokumente." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "" @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Engleski (US)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arapski" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Bjeloruski" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Češki" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Danski" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Njemački" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Engleski (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Španjolski" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Francuski" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Talijanski" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luksemburški" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Nizozemski" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Poljski" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugalski (Brazil)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugalski" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Rumunjski" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Ruski" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Slovenski" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Srpski" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Švedski" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turski" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Pojednostavljeni kineski" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx administracija" @@ -1520,171 +1532,171 @@ msgstr "pravilo e-pošte" msgid "mail rules" msgstr "pravila e-pošte" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Obradi samo privitke." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Obradi cijelu email poruku (sa umetnutim privitcima u datoteci) kao .eml datoteku" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Obradi cijelu email poruku (sa umetnutim privitkom) kao .eml datoteku + obradi privitak kao samostalnu datoteku" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Obradite sve datoteke, uključujući \"umetnute\" privitke." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Obriši" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Premjestiti u određenu mapu" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Označi kao pročitano. Ne obrađuj pročitanu e-poštu" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Označi poštu zastavicom. Ne obrađuj e-poštu sa zastavicom" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Označite poštu specifičnom oznakom. Ne obrađuj e-poštu s specifičnom oznakom" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Koristi predmet kao naziv" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Koristi naziv datoteke priloga kao naziv" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Nemojte dodijeliti dopisnika" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Koristi adresu e-pošte" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Koristi ime (ili adresu e-pošte ukoliko ime nije dostupno)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Koristi dopisnika odabranog u nastavku" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "korisnički račun" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "mapa" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Podmape moraju biti odvojene razdjelnikom, često točkom ('.') ili kosom crtom ('/'), no to se razlikuje ovisno o poslužitelju e-pošte." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtriraj po pošiljatelju" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filtriraj po primatelju" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filtriraj po predmetu" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filtriraj po sadržaju" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "maksimalna dob" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Navedeno u danima." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "vrsta privitka" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Ugrađeni privici uključuju ugrađene slike, pa je najbolje kombinirati ovu opciju s filtrom naziva datoteke." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "opseg integracije" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "akcija" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "parametar akcije" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Dodatni parametar za gore odabranu akciju, tj. ciljana mapa za premjesti u mapu akciju. Podmape moraju biti odvojene točkama." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "dodijeliti naslov od" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "dodijeli dopisnika od" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "predmet" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "primljeno" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "obrađeno" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "stanje" diff --git a/src/locale/hu_HU/LC_MESSAGES/django.po b/src/locale/hu_HU/LC_MESSAGES/django.po index b27ca8d63..3e18474bc 100644 --- a/src/locale/hu_HU/LC_MESSAGES/django.po +++ b/src/locale/hu_HU/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:40\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokumentumok" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "tulajdonos" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Nincs" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Bármilyen szó" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Minden szó" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Pontos egyezés" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Reguláris kifejezés" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "név" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "egyezés" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "egyeztető algoritmus" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "érzéketlen" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "kapcsolattartó" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "kapcsolattartók" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "szín" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "a postaláda címke" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Ezt a címkét bejövő címkeként jelöli: Az összes újonnan feldolgozott dokumentumot postaláda-címkével jelöli meg." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "címke" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "címkék" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "dokumentumtípus" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "dokumentumtípusok" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "útvonal" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "tárolási útvonal" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "tárolási útvonalak" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Titkosítatlan" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "GNU Privacy Guarddal titkosítva" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "cím" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "tartalom" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "A dokumentum nyers, csak szöveges adatai. Ezt a mezőt elsősorban keresésre használják." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "mime típus" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "ellenőrző összeg" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Az eredeti dokumentum ellenőrző összege." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "archiválási ellenőrző összeg" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Az archivált dokumentum ellenőrző összege." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "létrehozott" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "módosított" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "tárolási típus" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "hozzáadott" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "fájlnév" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Aktuális fájlnév a tárolóban" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "archiválási fájlnév" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Aktuális archívum fájlnév a tárolóban" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "eredeti fájlnév" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "A fájl eredeti neve a feltöltéskor" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "archiválási sorozatszám" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "A dokumentum helye a fizikai dokumentumarchívumban." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "dokumentum" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "dokumentumok" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "hibakeresés" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "információ" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "figyelmeztetés" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "hiba" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kritikus" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "csoport" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "üzenet" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "szint" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "napló" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "naplók" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "az irányítópulton megjelenik" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "megjelenítés az oldalsávban" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "rendezési mező" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "fordított rendezés" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "elmentett nézet" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "elmentett nézetek" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "a cím tartalmazza" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "a tartalom tartalmazza" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "Az ASN" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "a kapcsolattartó" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "a dokumentum típusa" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "a postaládában van" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "van címke" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "bármilyen címkével rendelkezik" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "létrehozva mielőtt" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "létrehozva után" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "létrehozás éve" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "létrehozás hónapja" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "létrehozás napja" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "korábban hozzáadva" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "hozzáadva a" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "korábban módosítva" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "módosítva" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "nem rendelkezik címkével" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "nem rendelkezik ASN-nel" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "a cím vagy a tartalom tartalmaz" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "teljes szöveges lekérdezés" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "címkékkel rendelkezik" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN nagyobb, mint" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN kisebb, mint" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "tárolási útvonal" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "levelezője van a" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "nincs kapcsolattartója a" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "dokumentumtípusa a" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "nem rendelkezik dokumentumtípussal a" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "tárolási útvonala a" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "nincs tárolási útvonal a" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "a tulajdonos" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "tulajdonosa van" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "nincs tulajdonosa" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "nem rendelkezik tulajdonossal a" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "szabálytípus" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "érték" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "szűrőszabály" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "szűrési szabályok" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "Feladat azonosítója" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "A futtatott feladat Celery azonosítója" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Visszaigazolva" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Ha a feladatot a frontenden vagy az API-n keresztül nyugtázzák" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Feladat fájlnév" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "A fájl neve, amelyre a feladatot futtatták" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Feladat neve" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "A futtatott feladat neve" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Feladat Állapot" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "A futó feladat aktuális állapota" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Létrehozás dátum idő" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "A feladat eredményének létrehozásakor UTC-ben megadott dátum-mező" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Elkezdve Dátum idő" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "A feladat indításának időpontja UTC-ben" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Befejeződött Dátum idő" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "A feladat befejezésének időpontja UTC-ben" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Eredmény adatok" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "A feladat által visszaküldött adatok" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Megjegyzés a dokumentumhoz" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "felhasználó" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "megjegyzés" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "jegyzetek" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Archívum" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Eredeti" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "lejárat" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "slug" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "megosztási link" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "linkek megosztása" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Karaktersor" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Dátum" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Boolean" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Egész szám" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Valós szám" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Monetáris" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Dokumentum link" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "adattípus" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "egyéni mező" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "egyéni mezők" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "egyéni mező példány" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "egyéni mező példányok" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Feldolgozási mappa" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Api feltöltés" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Mail lehívás" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "szűrési útvonal" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Csak olyan dokumentumokat dolgoz fel, amelyeknek az elérési útvonala megegyezik ezzel, ha ez meg van adva. A *-gal megadott helyettesítő karakterek engedélyezettek. Nagy- és kisbetűkre nem érzékeny." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "szűrő fájlnév" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Csak olyan dokumentumokat dolgoz fel, amelyek teljes mértékben megfelelnek ennek a fájlnévnek, ha meg van adva. Az olyan helyettesítő karakterek, mint *.pdf vagy *számla* engedélyezettek. Nagy- és kisbetűkre nem érzékeny." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "dokumentumok szűrése ebből a levélszabályból" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "cím hozzárendelése" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "A dokumentum címének hozzárendelése, tartalmazhat néhány helykitöltőt, lásd a dokumentációt." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "rendelje hozzá ezt a jelölőt" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "rendelje hozzá ezt a dokumentumtípust" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "rendelje hozzá ezt a kapcsolattartót" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "rendelje hozzá ezt a tárolási útvonalat" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "rendelje hozzá ezt a tulajdonost" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "adjon megtekintési engedélyeket ezeknek a felhasználóknak" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "nézeti engedélyeket adjon ezeknek a csoportoknak" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "adjon módosítási engedélyeket ezeknek a felhasználóknak" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "adjon módosítási jogosultságokat ezeknek a csoportoknak" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "rendelje hozzá ezeket az egyedi mezőket" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "megrendelés" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "Érvénytelen reguláris kifejezés: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Érvénytelen szín." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Fájltípus %(type)s nem támogatott" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Érvénytelen változót észleltek." @@ -1085,11 +1097,11 @@ msgstr "Még mindig itt vagy?! Hmm, valami baj lehet." msgid "Here's a link to the docs." msgstr "Itt egy link a dokumentumokhoz." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "A megosztási linket nem találtuk." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "A megosztási link lejárt." @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Angol (US)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arab" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Afrikai" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Fehérorosz" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Bolgár" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Katalán" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Cseh" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Dán" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Német" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Görög" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Angol (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Spanyol" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Finn" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Francia" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Magyar" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Olasz" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxemburgi" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norvég" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Holland" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Lengyel" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugál (Brazília)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugál" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Román" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Orosz" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Szlovák" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Szlovén" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Szerb" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Svéd" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Török" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ukrán" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Kínai egyszerűsített" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx adminisztráció" @@ -1520,171 +1532,171 @@ msgstr "levelezési szabály" msgid "mail rules" msgstr "levelezési szabályok" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Csak a mellékleteket dolgozza fel." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Teljes Mail feldolgozás (beágyazott mellékletekkel a fájlban) .eml formátumban" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "A teljes Mail (a fájlba ágyazott mellékletekkel) .eml-ként történő feldolgozása + a mellékletek külön dokumentumként történő feldolgozása" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Az összes fájl feldolgozása, beleértve az \"inline\" mellékleteket is." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Törlés" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Mozgatás a megadott mappába" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Olvasottként jelölje, ne dolgozza fel az olvasott leveleket" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Jelölje meg a leveleket, ne dolgozza fel a megjelölt leveleket" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "A levelek címkézése megadott címkével, a címkével ellátott levelek feldolgozása nem történik meg" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Használja a tárgyat címként" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "A csatolmány fájlnevének használata címként" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "Ne rendeljen címet a szabályból" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Ne rendeljen hozzá kapcsolattartót" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Levelezési cím használata" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Név használata (vagy postacím, ha nem áll rendelkezésre)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Használja az alább kiválasztott kapcsolattartót" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "fiók" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "mappa" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Az almappákat el kell választani egymástól egy elválasztó jelzővel, gyakran egy ponttal ('.') vagy egy perjel ('/'), de ez levelezőszerverenként változik." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "szűrő feladóra" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "szűrő címzettre" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "szűrő tárgyra" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "szűrő tartalomra" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "szűrő csatolt fájlnévre beleértve" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "szűrő csatolt fájlnévre exkluzív" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Ne dolgozza fel azokat a dokumentumokat, amelyek teljes egészében megfelelnek ennek a fájlnévnek, ha meg van adva. Az olyan helyettesítő karakterek, mint *.pdf vagy *számla* engedélyezettek. Nagy- és kisbetűkre nem érzékeny." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "maximális életkor" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Napokban megadva." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "csatolás típusa" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Az inline csatolmányok beágyazott képeket is tartalmaznak, ezért ezt az opciót célszerű egy fájlnévszűrővel kombinálni." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "feldolgozási kör" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "művelet" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "művelet paraméter" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "A fent kiválasztott művelet további paramétere, azaz a mappába áthelyezés művelet célmappája. Az almappákat pontokkal kell elválasztani." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "cím hozzárendelése a" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "rendelje hozzá a kapcsolattartót a" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "A szabály tulajdonosának hozzárendelése a dokumentumokhoz" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "tárgy" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "fogadott" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "feldolgozott" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "állapot" diff --git a/src/locale/id_ID/LC_MESSAGES/django.po b/src/locale/id_ID/LC_MESSAGES/django.po index c52ebcca8..737107cf4 100644 --- a/src/locale/id_ID/LC_MESSAGES/django.po +++ b/src/locale/id_ID/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:40\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Language: id_ID\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokumen" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "pemilik" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Tidak ada" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Kata apapun" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Semua kata" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Sama persis" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Ekspresi reguler" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Kata samar" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Otomatis" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "nama" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "cocok" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "mencocokkan algoritma" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "tidak sensitif" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "koresponden" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "koresponden" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "warna" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "tag kotak masuk" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Tandai label ini sebagai label kotak masuk: Semua dokumen baru akan dilabeli dengan label kotak masuk." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "label" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "label" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "jenis dokumen" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "jenis dokumen" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "lokasi" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "lokasi penyimpanan" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "lokasi penyimpanan" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Tidak terenkripsi" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Terenkripsi dengan GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "judul" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "konten" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Raw, hanya data text dari dokumen. Bagian ini adalah bagian utama yang di gunakan untuk pencarian." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "mime type" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "checksum" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Checksum dari dokumen yang asli." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "checksum arsip" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Checksum dari dokumen yang di arsip." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "dibuat" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "dimodifikasi" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "jenis penyimpanan" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "menambahkan" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "nama berkas" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Nama berkas saat ini yang tersimpan" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "nama berkas arsip" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Nama berkas arsip yang tersimpan" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "nama berkas asli" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Nama berkas asli pada saat diunggah" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "nomor serial arsip" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Posisi dokumen ini pada arsip fisik dokumen yang di binder." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "dokumen" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "dokumen" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "debug" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informasi" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "peringatan" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "kesalahan" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kritis" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "grup" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "pesan" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "tingkat" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "catatan" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "catatan" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" -msgstr "" +msgstr "Tabel" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "tampilkan di dasbor" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "tunjukan di bilah sisi" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "urutkan bidang" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "urutkan terbalik" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" -msgstr "" +msgstr "lihat ukuran halaman" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" -msgstr "" +msgstr "Mode tampilan" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" -msgstr "" +msgstr "Area tampilan dokumen" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "tampilan disimpan" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "tampilan disimpan" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "judul memiliki" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "konten memiliki" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN adalah" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "koresponden adalah" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "jenis dokumen adalah" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "di dalam kotak masuk" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "memiliki label" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "memiliki label apapun" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "dibuat sebelum" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "dibuat setelah" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "dibuat pada tahun" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "dibuat pada bulan" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "dibuat pada hari" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "ditambahkan sebelum" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "ditambahkan setelah" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "disunting sebelum" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "disunting setelah" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "tidak memiliki label" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "tidak memiliki ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "judul atau konten mengandung" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "kueri teks lengkap" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "lebih seperti ini" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "memiliki label dalam" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN lebih dari" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN kurang dari" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "lokasi penyimpanan" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "memiliki koresponden dalam" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "tidak memiliki koresponden dalam" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "memiliki jenis dokumen dalam" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "tidak memiliki jenis dokumen dalam" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "memiliki lokasi penyimpanan dalam" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "tidak memiliki lokasi penyimpanan dalam" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "pemilik adalah" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "memiliki pemilik dalam" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "tidak memiliki pemilik" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "tidak memiliki pemilik dalam" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "muat nilai bidang khusus" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "dibagikan oleh saya" -#: documents/models.py:503 -msgid "has custom fields" -msgstr "" - -#: documents/models.py:504 -msgid "has custom field in" -msgstr "" - -#: documents/models.py:505 -msgid "does not have custom field in" -msgstr "" - #: documents/models.py:506 -msgid "does not have custom field" -msgstr "" +msgid "has custom fields" +msgstr "memiliki area khusus" -#: documents/models.py:516 +#: documents/models.py:507 +msgid "has custom field in" +msgstr "memiliki area khusus di" + +#: documents/models.py:508 +msgid "does not have custom field in" +msgstr "tidak memiliki area khusus di" + +#: documents/models.py:509 +msgid "does not have custom field" +msgstr "tidak memiliki area khusus" + +#: documents/models.py:519 msgid "rule type" msgstr "jenis peraturan" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "nilai" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "saring aturan" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "saring aturan" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID Tugas" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID untuk tugas yang sudah dijalankan" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Diakui" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Jika tugas telah diketahui melalui frontend atau API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Nama Berkas Tugas" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Nama dari berkas yang mana tugas akan dijalankan" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Nama Tugas" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Nama dari tugas yang dijalankan" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Status Tugas" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Status tugas sekarang yang sedang dijalankan" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Dibuat TanggalWaktu" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Kolom tanggal dan waktu saat hasil selesai dibuat dalam UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Dimulai TanggalWaktu" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Kolom Tanggal dan waktu saat tugas dimulai dalam UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Selesai TanggalWaktu" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Kolom tanggal dan waktu saat hasil selesai dibuat dalam UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Data Hasil" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Data yang dikembalikan dari tugas" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Catatan untuk dokumen" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "pengguna" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "catatan" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "catatan" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Arsip" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Orisinil" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "masa berlaku" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "topik konten" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "bagikan tautan" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "bagikan tautan" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "String" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Tanggal" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Boolean" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Bilangan bulat" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Float" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Keuangan" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Tautan Dokumen" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "jenis data" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "kolom khusus" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "kolom khusus" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "kolom Khusus Instansi" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "kolom Khusus Instansi" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "Memulai Penggunaaa" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Dokumen ditambahkan" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Dokumen diperbarui" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Pengunaan Folder" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Unggah Menggunakan API" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Pengambilan Surat" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "Tipe Pemicu Alur Kerja" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "filter lokasi" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Hanya gunakan dokumen dengan jalur yang sesuai denganyang sudah ditentukan. Karakter pengganti seperti * diperbolehkan. Huruf besar/kecil tidak berpengaruh." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "saring nama berkas" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Hanya gunakan dokumen yang sepenuhnya cocok dengan nama berkas ini jika ditentukan. Wildcard seperti *.pdf atau *faktur* diperbolehkan. Tidak peka huruf besar kecil." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "saring dokumen dari peraturan surel" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "memiliki tag(-tag) ini" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "memiliki jenis dokumen ini" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "memiliki koresponden ini" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "pemicu alur kerja" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "pemicu alur kerja" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "Tugas" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "Penghapusan" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "Jenis Aksi Alur Kerja" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" -msgstr "" +msgstr "tetapkan judul" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." -msgstr "" +msgstr "Tetapkan judul dokumen, dapat menyertakan beberapa placeholder, lihat dokumentasi." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "tetapkan label ini" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" -msgstr "" +msgstr "tetapkan jenis dokumen ini" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" -msgstr "" +msgstr "tetapkan koresponden ini" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" -msgstr "" +msgstr "tetapkan lokasi penyimpanan ini" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" -msgstr "" +msgstr "tetapkan pemilik ini" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" -msgstr "" +msgstr "memberikan izin melihat kepada pengguna ini" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" -msgstr "" +msgstr "memberikan izin melihat kepada grup ini" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" -msgstr "" +msgstr "memberikan izin perubahan kepada pengguna ini" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" -msgstr "" - -#: documents/models.py:1150 -msgid "assign these custom fields" -msgstr "" - -#: documents/models.py:1157 -msgid "remove these tag(s)" -msgstr "" - -#: documents/models.py:1162 -msgid "remove all tags" -msgstr "" - -#: documents/models.py:1169 -msgid "remove these document type(s)" -msgstr "" +msgstr "memberikan izin perubahan kepada grup ini" #: documents/models.py:1174 -msgid "remove all document types" -msgstr "" +msgid "assign these custom fields" +msgstr "tetapkan area khusus ini" #: documents/models.py:1181 +msgid "remove these tag(s)" +msgstr "Hapus tag ini" + +#: documents/models.py:1186 +msgid "remove all tags" +msgstr "Hapus semua tag" + +#: documents/models.py:1193 +msgid "remove these document type(s)" +msgstr "Hapus jenis dokumen ini" + +#: documents/models.py:1198 +msgid "remove all document types" +msgstr "Hapus semua tipe dokumen" + +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "hapus koresponden ini" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "hapus semua koresponden" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" -msgstr "" +msgstr "Hapus lokasi penyimpanan ini" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" -msgstr "" +msgstr "hapus semua lokasi penyimpanan" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "hapus pemilik ini" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "hapus semua pemilik" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" -msgstr "" +msgstr "hapus izin melihat kepada pengguna ini" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" -msgstr "" +msgstr "hapus izin melihat kepada grup ini" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" -msgstr "" +msgstr "hapus izin merubah kepada pengguna ini" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" -msgstr "" +msgstr "hapus izin merubah kepada grup ini" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "hapus semua izin" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" -msgstr "" +msgstr "hapus area khusus ini" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" -msgstr "" +msgstr "hapus semua area khusus" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "aksi alur kerja" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "aksi alur kerja" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "urut" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "pemicu" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "tindakan" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "dinyalakan" @@ -920,16 +932,16 @@ msgstr "dinyalakan" msgid "Invalid regular expression: %(error)s" msgstr "Ekspresi reguler tidak valid: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Warna tidak valid." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Jenis berkas %(type)s tidak didukung" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Variabel ilegal terdeteksi." @@ -1016,7 +1028,7 @@ msgstr "Kami telah mengirimkan Anda surel instruksi untuk menyetel kata sandi. A #: documents/templates/account/password_reset_from_key.html:5 msgid "Paperless-ngx reset password confirmation" -msgstr "" +msgstr "Konfimasi reset password paperless-ngx" #: documents/templates/account/password_reset_from_key.html:9 msgid "Set a new password." @@ -1040,16 +1052,16 @@ msgstr "Ubah kata sandi saya" #: documents/templates/account/password_reset_from_key_done.html:5 msgid "Paperless-ngx reset password complete" -msgstr "" +msgstr "Reset password paperless-ngx berhasil" #: documents/templates/account/password_reset_from_key_done.html:9 msgid "Password reset complete." -msgstr "" +msgstr "Reset password berhasil." #: documents/templates/account/password_reset_from_key_done.html:14 #, python-format msgid "Your new password has been set. You can now log in" -msgstr "" +msgstr "Password baru sudah di set. Silahkan log in" #: documents/templates/account/signup.html:5 msgid "Paperless-ngx sign up" @@ -1063,7 +1075,7 @@ msgstr "Sudah memiliki akun? Masuk" #: documents/templates/account/signup.html:16 #: documents/templates/socialaccount/signup.html:14 msgid "Email (optional)" -msgstr "" +msgstr "Email (optional)" #: documents/templates/account/signup.html:18 msgid "Password (again)" @@ -1086,11 +1098,11 @@ msgstr "Masih disini?! Hmm, sepertinya ada yang salah." msgid "Here's a link to the docs." msgstr "Berikut tautan ke dokumen." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Tautan tidak ditemukan." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Tautan telah kedaluwarsa." @@ -1129,17 +1141,17 @@ msgstr "Sebagai langkah terakhir, mohon formulir berikut:" #: documents/validators.py:17 #, python-brace-format msgid "Unable to parse URI {value}, missing scheme" -msgstr "" +msgstr "URI {value} tidak dapat di parse, tidak ada skema" #: documents/validators.py:22 #, python-brace-format msgid "Unable to parse URI {value}, missing net location or path" -msgstr "" +msgstr "URI {value} tidak dapat di parse, tidak ada net location atau path" #: documents/validators.py:27 #, python-brace-format msgid "Unable to parse URI {value}" -msgstr "" +msgstr "URI {value} tidak dapat di parse" #: paperless/apps.py:10 msgid "Paperless" @@ -1227,27 +1239,27 @@ msgstr "" #: paperless/models.py:83 msgid "Sets the output PDF type" -msgstr "" +msgstr "Menetapkan jenis PDF" #: paperless/models.py:95 msgid "Do OCR from page 1 to this value" -msgstr "" +msgstr "Lakukan OCR dari halaman 1 hingga nilai ini" #: paperless/models.py:101 msgid "Do OCR using these languages" -msgstr "" +msgstr "Lakukan OCR menggunakan bahasa berikut" #: paperless/models.py:108 msgid "Sets the OCR mode" -msgstr "" +msgstr "Mengatur mode OCR" #: paperless/models.py:116 msgid "Controls the generation of an archive file" -msgstr "" +msgstr "Mengontrol pembuatan file arsip" #: paperless/models.py:124 msgid "Sets image DPI fallback value" -msgstr "" +msgstr "Mengatur nilai fallback DPI gambar" #: paperless/models.py:131 msgid "Controls the unpaper cleaning" @@ -1289,135 +1301,135 @@ msgstr "Judul aplikasi" msgid "paperless application settings" msgstr "pengaturan aplikasi paperless" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Inggris (AS)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arab" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Belarusia" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Bahasa Ceko" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Jerman" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Yunani" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Inggris (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Spanyol" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Prancis" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Hungaria" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italia" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luksemburg" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norwegia" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Belanda" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polandia" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugis (Brasil)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugis" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Rumania" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Rusia" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Slovakia" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Slovenia" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Serbia" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Swedia" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turki" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ukraina" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Mandarin Sederhana" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Administrasi Paperless-ngx" @@ -1443,7 +1455,7 @@ msgstr "Aksi" #: paperless_mail/admin.py:81 msgid "The action applied to the mail. This action is only performed when the mail body or attachments were consumed from the mail." -msgstr "" +msgstr "Tindakan yang diterapkan pada email. Tindakan ini hanya dilakukan jika body email atau lampiran diambil dari email." #: paperless_mail/admin.py:89 msgid "Metadata" @@ -1487,7 +1499,7 @@ msgstr "Port IMAP" #: paperless_mail/models.py:27 msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." -msgstr "" +msgstr "Biasanya 143 untuk koneksi tidak terenkripsi dan STARTTLS, dan 993 untuk koneksi SSL." #: paperless_mail/models.py:33 msgid "IMAP security" @@ -1511,7 +1523,7 @@ msgstr "set karakter" #: paperless_mail/models.py:49 msgid "The character set to use when communicating with the mail server, such as 'UTF-8' or 'US-ASCII'." -msgstr "" +msgstr "Set karakter yang akan digunakan saat berkomunikasi dengan server email, misalnya 'UTF-8' atau 'US-ASCII'." #: paperless_mail/models.py:60 msgid "mail rule" @@ -1521,171 +1533,171 @@ msgstr "peraturan surel" msgid "mail rules" msgstr "peraturan surel" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Hanya memproses lampiran." -#: paperless_mail/models.py:65 -msgid "Process full Mail (with embedded attachments in file) as .eml" -msgstr "" - -#: paperless_mail/models.py:69 -msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" -msgstr "" - #: paperless_mail/models.py:76 -msgid "Process all files, including 'inline' attachments." -msgstr "" +msgid "Process full Mail (with embedded attachments in file) as .eml" +msgstr "Memproses Mail lengkap (dengan lampiran yang disematkan dalam file) sebagai .eml" -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:80 +msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" +msgstr "Memproses Mail lengkap (dengan lampiran yang disematkan di dalam file) sebagai .eml + proses lampiran sebagai dokumen terpisah" + +#: paperless_mail/models.py:87 +msgid "Process all files, including 'inline' attachments." +msgstr "Memproses semua file, termasuk lampiran." + +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Hapus" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Pindahkan ke folder yang ditentukan" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" -msgstr "" +msgstr "Tandai sudah dibaca, jangan proses email yang sudah dibaca" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" -msgstr "" +msgstr "Berikan ikon bendera pada mail, jangan proses mail yang diberi ikon bendera" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" -msgstr "" +msgstr "Tandai email dengan tag yang spesifik, jangan proses email yang ditandai" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Gunakan subjek sebagai judul" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Gunakan nama berkas lampiran sebagai judul" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" -msgstr "" +msgstr "Jangan tetapkan judul dari aturan" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" -msgstr "" +msgstr "Jangan menunjuk koresponden" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Gunakan alamat surel" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Gunakan nama (atau alamat surel jika tidak tersedia)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" -msgstr "" +msgstr "Gunakan koresponden yang dipilih di bawah ini" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "akun" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "direktori" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." -msgstr "" +msgstr "Subfolder harus dipisahkan dengan pembatas, biasanya berupa titik ('.') atau garis miring ('/'), namun hal ini berbeda-beda pada setiap server mail." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "saring dari" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "saring ke" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "saring subjek" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "saring badan" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" -msgstr "" +msgstr "filter lampiran nama file inklusif" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" -msgstr "" +msgstr "filter lampiran nama file eksklusif" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Jangan gunakan dokumen yang sepenuhnya cocok dengan nama berkas ini jika ditentukan. Wildcard seperti *.pdf atau *faktur* diperbolehkan. Tidak peka huruf besar kecil." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "umur maksimal" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Ditentukan dalam hari." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "jenis lampiran" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." -msgstr "" +msgstr "Lampiran menyertakan gambar yang disematkan, jadi sebaiknya gabungkan opsi ini dengan filter nama file." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" -msgstr "" +msgstr "cakupan konsumsi" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "aksi" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "parameter aksi" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." -msgstr "" +msgstr "Parameter tambahan untuk tindakan yang dipilih di atas, sebagai contoh, folder target dari tindakan pidahkan ke folder. Subfolder harus dipisahkan dengan titik." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "tetapkan judul dari" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "tetapkan koresponden dari" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Tetapkan pemilik aturan ke dokumen" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" -msgstr "" +msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "subjek" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "diterima" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "diproses" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "status" diff --git a/src/locale/it_IT/LC_MESSAGES/django.po b/src/locale/it_IT/LC_MESSAGES/django.po index 75f987921..a71a095e4 100644 --- a/src/locale/it_IT/LC_MESSAGES/django.po +++ b/src/locale/it_IT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-03 12:10\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Documenti" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "proprietario" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Niente" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Qualsiasi parola" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Tutte le parole" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Corrispondenza esatta" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Espressione regolare" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automatico" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "nome" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "corrispondenza" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "algoritmo di corrispondenza" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "non distingue maiuscole e minuscole" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "corrispondente" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "corrispondenti" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "colore" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "è tag di arrivo" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Contrassegna questo tag come tag in arrivo: tutti i documenti elaborati verranno taggati con questo tag." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "tag" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "tag" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "tipo di documento" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "tipi di documento" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "percorso" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "percorso di archiviazione" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "percorsi di archiviazione" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Non criptato" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Criptato con GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "titolo" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "contenuto" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "I dati grezzi o solo testo del documento. Questo campo è usato principalmente per la ricerca." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "tipo mime" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "checksum" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Il checksum del documento originale." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "checksum dell'archivio" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Il checksum del documento archiviato." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "creato il" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "modificato il" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "tipo di storage" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "aggiunto il" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "nome del file" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Nome del file corrente nello storage" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "Nome file in archivio" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Il nome del file nell'archiviazione" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "nome file originale" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Il nome originale del file quando è stato caricato" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "numero seriale dell'archivio" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Posizione di questo documento all'interno dell'archivio fisico." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "documento" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "documenti" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "debug" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informazione" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "avvertimento" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "errore" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "critico" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "gruppo" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "messaggio" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "livello" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "registro" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "log" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "Titolo" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "Etichette" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "Corrispondente" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "Tipo di documento" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "Percorso archiviazione" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "Proprietario" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "mostra sul cruscotto" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "mostra nella barra laterale" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "campo di ordinamento" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "ordine invertito" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "vista salvata" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "viste salvate" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "il titolo contiene" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "il contenuto contiene" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN è" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "la corrispondenza è" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "il tipo di documento è" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "è in arrivo" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "ha etichetta" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "ha qualsiasi etichetta" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "creato prima del" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "creato dopo il" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "l'anno di creazione è" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "il mese di creazione è" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "il giorno di creazione è" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "aggiunto prima del" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "aggiunto dopo il" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "modificato prima del" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "modificato dopo" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "non ha tag" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "non ha ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "il titolo o il contenuto contiene" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "query fulltext" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "altro come questo" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "ha tag in" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN maggiore di" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN minore di" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "il percorso di archiviazione è" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "ha corrispondente in" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "non ha corrispondente in" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "ha tipo di documento in" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "non ha tipo di documento in" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "ha percorso di archiviazione in" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "non ha percorso di archiviazione in" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "proprietario è" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "ha proprietario in" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "non ha proprietario" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "non ha proprietario in" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "ha un valore di campo personalizzato" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "condiviso da me" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "tipo di regola" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "valore" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "regola filtro" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "regole filtro" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID Attività" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID per l'attività che è stata eseguita" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Accettato" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Se l'attività è accettata tramite il frontend o API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Nome file attività" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Nome del file per il quale è stata eseguita l'attività" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Nome attività" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Nome dell'attività che è stata eseguita" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Stato attività" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Stato attuale dell'attività in esecuzione" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Data di creazione" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Campo data quando il risultato è stato creato in UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Data di inizio" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Campo data quando l'attività è stata avviata in UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Data completamento" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Campo data quando l'attività è stata completata in UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Dati Risultanti" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "I dati restituiti dall'attività" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Nota per il documento" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "utente" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "nota" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "note" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Archivio" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Originale" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "scadenza" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "condividi link" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "condividi links" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Stringa" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Data" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Booleano" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Numero Intero" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Numero a virgola mobile" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Monetaria" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Link Documento" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "tipo di dato" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "campo personalizzato" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "campi personalizzati" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "istanza campo personalizzato" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "istanze campo personalizzato" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Documento aggiunto" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Documento aggiornato" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Cartella di elaborazione" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Upload Api" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Recupero Posta" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "filtro percorso" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Elabora solo i documenti con un percorso che corrisponde a questo, se specificato. I caratteri wildcard come * sono permessi. Ignora differenze tra maiuscole e minuscole." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "filtra nome file" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Elabora i documenti che corrispondono a questo nome. Puoi usare wildcard come *.pdf o *fattura*. Non fa differenza fra maiuscole e minuscole." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "filtra i documenti da questa regola di posta" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "ha questi tag(s)" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "ha questo corrispondente" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "Assegnazione" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "Rimozione" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "assegna titolo" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Assegna un titolo al documento, può includere alcuni segnaposti, vedi documentazione." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "assegna questo tag" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "assegna questo tipo di documento" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "assegna questo corrispondente" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "assegna questo percorso di archiviazione" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "assegna questo proprietario" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "concedi i permessi di visualizzazione a questi utenti" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "concedi i permessi di visualizzazione a questi gruppi" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "concedi permessi di modifica a questi utenti" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "concedi permessi di modifica a questi gruppi" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "assegna questi campi personalizzati" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "Azioni del flusso di lavoro" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "azioni del flusso di lavoro" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "priorità" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "azioni" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "abilitato" @@ -920,16 +932,16 @@ msgstr "abilitato" msgid "Invalid regular expression: %(error)s" msgstr "Espressione regolare non valida: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Colore non valido." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Il tipo di file %(type)s non è supportato" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Variabile non valida rilevata." @@ -1085,11 +1097,11 @@ msgstr "Ancora qui?! Mmm, qualcosa potrebbe essere sbagliato." msgid "Here's a link to the docs." msgstr "Ecco qui il link alla documentazione." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Link di condivisione non trovato." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Il link di condivisione è scaduto." @@ -1288,135 +1300,135 @@ msgstr "Logo applicazione" msgid "paperless application settings" msgstr "impostazioni dell'applicazione paperless" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Inglese (US)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arabo" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Africano" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Bielorusso" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Bulgaro" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Catalano" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Ceco" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Danese" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Tedesco" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Greco" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Inglese (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Spagnolo" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Finlandese" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Francese" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Ungherese" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italiano" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "Giapponese" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Lussemburghese" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norvegese" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Olandese" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polacco" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portoghese (Brasile)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portoghese" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Rumeno" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Russo" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Slovacco" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Sloveno" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Serbo" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Svedese" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turco" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ucraino" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Cinese semplificato" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Amministrazione di Paperless-ngx" @@ -1520,171 +1532,171 @@ msgstr "regola email" msgid "mail rules" msgstr "regole email" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Elabora solo gli allegati." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Elabora tutta la mail (con allegati incorporati nel file) come .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Elabora tutta la mail (con allegati incorporati nel file) come .eml + elabora gli allegati come documenti separati" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Elabora tutti i file, inclusi gli allegati nel corpo." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Elimina" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Sposta in una cartella" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Segna come letto, non elaborare le email lette" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Contrassegna la email, non elaborare le email elaborate." -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Etichetta la posta con il tag specificato, non processare le email etichettate" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Usa oggetto come titolo" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Usa il nome dell'allegato come titolo" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "Non assegnare il titolo dalla regola" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Non assegnare un corrispondente" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Usa indirizzo email" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Usa nome (o indirizzo email se non disponibile)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Usa il corrispondente selezionato qui sotto" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "account" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "cartella" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Le sottocartelle devono essere separate da un delimitatore, solitamente da un punto ('.') o da uno slash ('/'), ma variano a seconda del server di posta." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtra da" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filtra a" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filtra oggetto" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filtra corpo" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "filtra il nome del file allegato includendo" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "filtro allegato nome file esclusivo" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Non elaborare i documenti che corrispondono al nome se specificato. Puoi usare caratteri jolly come *.pdf o *fattura*. Ignora maiuscole e minuscole." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "età massima" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Definito in giorni." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "tipo di allegato" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Gli allegati in linea includono le immagini nel corpo, quindi è meglio combinare questa opzione con il filtro nome." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "ambito di applicazione" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "azione" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "parametro azione" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Parametro aggiuntivo per l'azione selezionata, ad esempio la cartella di destinazione per l'azione che sposta una cartella. Le sottocartelle devono essere separate da punti." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "assegna tittolo da" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "assegna corrispondente da" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Assegna il proprietario della regola ai documenti" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "oggetto" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "ricevuto" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "elaborato" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "stato" diff --git a/src/locale/ja_JP/LC_MESSAGES/django.po b/src/locale/ja_JP/LC_MESSAGES/django.po index d3dc814b5..ca0de79ce 100644 --- a/src/locale/ja_JP/LC_MESSAGES/django.po +++ b/src/locale/ja_JP/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:41\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "ドキュメント" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "所有者" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "なし" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "いずれかの単語" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "すべての単語" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "完全一致" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "正規表現" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "あいまいな単語" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "自動" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "名称" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "マッチ" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "マッチングアルゴリズム" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "大文字・小文字の区別なし" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "担当" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "担当" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "色" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "受信トレイタグ" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "このタグを受信トレイタグとしてマーク: 新規に使用するすべてのドキュメントに受信トレイタグを付けます。" -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "タグ" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "タグ" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "ドキュメントタイプ" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "ドキュメントタイプ" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "パス" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "フォルダー" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "フォルダー" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "暗号化なし" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "GNU Privacy Guard で暗号化" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "タイトル" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "コンテンツ" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "ドキュメントの生のテキストのみのデータ。この項目は主に検索に使用されます。" -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "MIME タイプ" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "チェックサム" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "元のドキュメントのチェックサム" -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "アーカイブのチェックサム" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "アーカイブされたドキュメントのチェックサム" -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "作成日" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "更新日" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "ストレージタイプ" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "追加日" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "ファイル名" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "ストレージ内の現在のファイル名" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "アーカイブファイル名" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "ストレージ内の現在のアーカイブファイル名" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "元のファイル名" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "アップロードされたファイルの元の名前" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "アーカイブ番号" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "物理的なドキュメントアーカイブ内での、このドキュメントの位置" -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "ドキュメント" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "ドキュメント" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "デバッグ" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "情報" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "警告" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "エラー" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "深刻" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "グループ" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "メッセージ" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "レベル" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "ログ" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "ログ" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "ダッシュボードに表示" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "サイドバーに表示" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "項目を並べ替え" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "項目を逆順で並べ替え" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "保存済みビュー" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "保存済みビュー" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "タイトルが次のものを含む" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "コンテンツが次のものを含む" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN が" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "担当が" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "ドキュメントタイプが" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "次のものが受信トレイにある" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "次のタグがある" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "次のいずれかのタグがある" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "次の日付以前に作成" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "次の日付以降に作成" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "作成年が" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "作成月が" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "作成日が" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "次の日付以前に追加" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "次の日付以降に追加" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "次の日付以前に変更" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "次の日付以降に変更" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "次のタグがない" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "次の ASN でない" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "タイトルまたはコンテンツに次のものを含む" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "全文検索" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "これと類似のもの" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "次のタグがある" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN が次の値より大きい" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN が次の値より小さい" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "フォルダーが" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "次のものが担当" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "次のものが担当でない" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "次のドキュメントタイプがある" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "次のドキュメントタイプがない" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "次のフォルダーがある" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "次のフォルダーがない" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "所有者が" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "所有者がいる" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "次のものが所有者" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "次のものが所有者でない" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "次のカスタム項目がある" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "自分が共有した" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "ルールタイプ" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "値" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "フィルタルール" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "フィルタールール" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "タスク ID" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "実行されたタスクの Celery ID" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "承認" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "フロントエンドまたは API 経由でタスクが承認されている場合" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "タスクのファイル名" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "タスクを実行したファイル名" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "タスク名" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "実行されたタスク名" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "タスクの状態" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "実行中のタスクの状態" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "作成日時" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "タスクの結果が作成された UTC 日時" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "開始日時" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "タスクが開始された UTC 日時" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "完了日時" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "タスクが完了した UTC 日時" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "結果データ" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "タスクが出力したデータ" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "ドキュメントのメモ" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "ユーザー" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "メモ" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "メモ" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "アーカイブ" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "原本" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "有効期限" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "スラグ" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "共有リンク" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "共有リンク" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "文字列" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "日付" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "ブール値" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "整数" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "浮動小数点数" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "通貨 (ドル)" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "ドキュメントリンク" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "データの種類" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "カスタム項目" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "カスタム項目" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "カスタム項目インスタンス" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "カスタム項目インスタンス" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "利用開始時" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "ドキュメントの追加時" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "ドキュメントの更新時" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "フォルダーの利用" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "API アップロード" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "メールの取得" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "ワークフローのトリガータイプ" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "パスをフィルター" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "指定されたパスを持つドキュメントのみを使用します。ワイルドカード (*) が使用できます。大文字・小文字を区別しません。" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "ファイル名をフィルター" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "指定されたファイル名に完全にマッチするドキュメントのみを使用します。 *.pdf や *請求書* などのワイルドカードが使用できます。大文字・小文字を区別しません。" -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "このメールルールからのドキュメントをフィルター" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "タグ" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "ドキュメントタイプ" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "担当" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "ワークフローのトリガー" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "ワークフローのトリガー" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "割り当て" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "削除" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "ワークフローのアクションタイプ" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "タイトルの割り当て" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "ドキュメントタイトルを割り当てます。ドキュメントタイトルにはプレースホルダーを含めることができます。マニュアルを参照してください。" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "タグの割り当て" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "ドキュメントタイプの割り当て" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "担当の割り当て" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "フォルダーの割り当て" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "所有者の割り当て" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "ユーザーへの表示権限の付与" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "グループへの表示権限の付与" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "ユーザーへの変更権限の付与" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "グループへの変更権限の付与" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "カスタム項目の割り当て" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "タグの削除" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "すべてのタグの削除" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "ドキュメントタイプの削除" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "すべてのドキュメントタイプの削除" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "担当の削除" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "すべての担当の削除" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "フォルダーの削除" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "すべてのフォルダーの削除" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "所有者の削除" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "すべての所有者の削除" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "ユーザの表示権限の削除" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "グループの表示権限の削除" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "ユーザの編集権限の削除" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "グループの編集権限の削除" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "すべての権限の削除" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "カスタム項目の削除" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "すべてのカスタム項目の削除" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "ワークフローのアクション" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "ワークフローのアクション" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "順序" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "トリガー" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "アクション" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "有効" @@ -920,16 +932,16 @@ msgstr "有効" msgid "Invalid regular expression: %(error)s" msgstr "不正な正規表現: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "無効な色" -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "ファイルタイプ %(type)s はサポートされていません" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "無効な変数を検出しました" @@ -1086,11 +1098,11 @@ msgstr "まだここに?うーん、何かおかしいのかもしれません msgid "Here's a link to the docs." msgstr "これはドキュメントへのリンクです" -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "共有リンクが見つかりませんでした。" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "共有リンクの有効期限を過ぎています。" @@ -1289,135 +1301,135 @@ msgstr "アプリケーションロゴ" msgid "paperless application settings" msgstr "Paperless アプリケーションの設定" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "英語 (米国)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "アラビア語" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "アフリカーンス語" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "ベラルーシ語" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "ブルガリア語" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "カタロニア語" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "チェコ語" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "デンマーク語" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "ドイツ語" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "ギリシャ語" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "英語 (英国)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "スペイン語" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "フィンランド語" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "フランス語" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "ハンガリー語" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "イタリア語" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "日本語" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "ルクセンブルク語" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "ノルウェー語" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "オランダ語" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "ポーランド語" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "ポルトガル語 (ブラジル)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "ポルトガル語" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "ルーマニア語" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "ロシア語" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "スロバキア語" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "スロベニア語" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "セルビア語" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "スウェーデン語" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "トルコ語" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "ウクライナ語" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "中国語 (簡体字)" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx の管理" @@ -1521,171 +1533,171 @@ msgstr "メールルール" msgid "mail rules" msgstr "メールルール" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "添付ファイルのみを処理." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr ".eml としてメール全体 (添付ファイルを含む) を処理" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr ".eml としてメール全体 (添付ファイルを含む) を処理 + 添付ファイルを別のドキュメントとして処理" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "インライン添付ファイルを含むすべてのファイルを処理" -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "削除" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "指定したフォルダーに移動" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "既読としてマーク (既読メールは処理しない)" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "メールにフラグ (フラグ付きメールは処理しない)" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "指定されたタグでメールにタグ付け (タグ付きメールは処理しない)" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "件名をタイトルに使用" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "添付ファイルのファイル名をタイトルに使用" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "このルールからタイトルを割り当てない" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "担当を割り当てない" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "メールアドレスを使用する" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "名前 (不明な場合はメールアドレス) を使用する" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "以下で選択する担当を使用" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "アカウント" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "フォルダー" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "サブフォルダーは、区切り文字 (通常はドット ( . ) またはスラッシュ ( / ) で区切る必要がありますが、これはメール サーバーによって異なります。" -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "送信元のフィルター" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "宛先のフィルター" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "件名のフィルター" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "本文のフィルター" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "添付ファイル名のフィルター" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "除外する添付ファイル名のフィルター" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "このファイル名にマッチするドキュメントは使用しません。 *.pdf や *請求書* などのワイルドカードが使用できます。大文字・小文字を区別しません。" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "有効期限" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "日数で指定" -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "添付ファイルの種類" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "インライン添付ファイルに埋め込み画像が含まれるので、このオプションをファイル名のフィルターと組み合わせるのが最善です。" -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "利用範囲" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "アクション" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "アクションパラメーター" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "上記で選択したアクションの追加パラメーター、たとえばフォルダーへの移動アクションの移動先フォルダー。サブフォルダーはドットで区切る必要があります。" -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "タイトルの割り当て元" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "担当の割り当て元" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "ルール所有者のドキュメントへの割り当て" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "UID" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "件名" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "受信日時" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "処理日時" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "ステータス" diff --git a/src/locale/ko_KR/LC_MESSAGES/django.po b/src/locale/ko_KR/LC_MESSAGES/django.po index b53b90b0c..eb4f02f22 100644 --- a/src/locale/ko_KR/LC_MESSAGES/django.po +++ b/src/locale/ko_KR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-05 12:10\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" @@ -21,928 +21,941 @@ msgstr "" msgid "Documents" msgstr "문서" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "소유자" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "없음" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "아무 단어" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "모든 단어" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "정확히 일치" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" -msgstr "정규 표현식" +msgstr "정규식" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "불분명한 단어" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "자동" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "이름" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "일치" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "일치 알고리즘" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "대소문자 구분 없음" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" -msgstr "할당대상" +msgstr "작성자" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" -msgstr "할당자" +msgstr "작성자" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "색상" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "받은 보관함 태그" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "이 태그를 수신함 태그로 표시합니다: 새로 수집된 모든 문서에는 수신함 태그가 지정됩니다." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "태그" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "태그" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "문서 유형" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "문서 유형" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "경로" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "저장소 경로" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "저장소 경로" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "암호화 안 함" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" -msgstr "GNU 프라이버시 가드로 암호화" +msgstr "GNU 프라이버시 보호로 암호화" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "제목" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "내용" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "문자열 데이터에 해당하는 원시 데이터. 이 필드는 주로 검색을 위해 사용됩니다." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "MIME 유형" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "체크섬" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "원본 문서의 체크섬" -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "보관된 체크섬" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "보관된 문서의 체크섬" -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "생성" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "수정" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "저장소 유형" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "추가" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "파일 이름" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "저장소에서의 현재 파일 이름" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "보관 파일 이름" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "저장소에서의 보관 파일 이름" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "원본 파일 이름" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "올려주기 당시 파일의 원래 이름" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "보관 일련 번호" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "실제 문서 아카이브에서 이 문서의 위치" -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "문서" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "문서" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "디버그" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "정보" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "경고" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "오류" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "심각" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "그룹" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "메시지" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "수준" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "로그" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "로그" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" -msgstr "" +msgstr "테이블" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" -msgstr "" - -#: documents/models.py:400 -msgid "Large Cards" -msgstr "" +msgstr "소형 카드" #: documents/models.py:403 -msgid "Title" -msgstr "" - -#: documents/models.py:404 -msgid "Created" -msgstr "" - -#: documents/models.py:405 -msgid "Added" -msgstr "" +msgid "Large Cards" +msgstr "큰 카드" #: documents/models.py:406 -msgid "Tags" -msgstr "" +msgid "Title" +msgstr "제목" #: documents/models.py:407 -msgid "Correspondent" -msgstr "" +msgid "Created" +msgstr "생성됨" #: documents/models.py:408 -msgid "Document Type" -msgstr "" +msgid "Added" +msgstr "추가됨" #: documents/models.py:409 -msgid "Storage Path" -msgstr "" +msgid "Tags" +msgstr "태그" #: documents/models.py:410 -msgid "Note" -msgstr "" +msgid "Correspondent" +msgstr "작성자" #: documents/models.py:411 -msgid "Owner" -msgstr "" +msgid "Document Type" +msgstr "문서 타입" #: documents/models.py:412 -msgid "Shared" -msgstr "" +msgid "Storage Path" +msgstr "저장 경로" #: documents/models.py:413 -msgid "ASN" -msgstr "" +msgid "Note" +msgstr "노트" -#: documents/models.py:419 +#: documents/models.py:414 +msgid "Owner" +msgstr "소유자" + +#: documents/models.py:415 +msgid "Shared" +msgstr "공유됨" + +#: documents/models.py:416 +msgid "ASN" +msgstr "ASN" + +#: documents/models.py:422 msgid "show on dashboard" msgstr "대시보드에 표시" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "사이드바에 표시" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "필드 정렬" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "역순으로 정렬" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" -msgstr "" +msgstr "페이지 크기 보기" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" -msgstr "" +msgstr "표시 모드 설정" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" -msgstr "" +msgstr "문서 표시 필드" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "저장된 뷰" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "저장된 뷰" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "제목 포함" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "내용 포함" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" -msgstr "" +msgstr "ASN은" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "할당대상" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "문서 유형" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "문서함에 있음" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "태그가 있음" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "어떤 태그라도 있을 경우" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "이전에 생성됨" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "이후에 생성됨" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "생성 연도는" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "생성 월은" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "생성일은" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "이전에 추가됨" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "이후에 추가됨" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "이전에 수정됨" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "이후에 수정됨" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "태그가 없음" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "ASN이 없음" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "제목 또는 내용이 포함" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "전문 검색 쿼리" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "이와 유사한" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "태그가 포함된" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN이 초과됨" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN 미만" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "저장경로" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "할당 대상" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "해당 사항에 대한 대응이 없음" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "문서 유형" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "문서 유형이 없음" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "저장 경로가 있는" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" -msgstr "" +msgstr "에 저장 경로가 없습니다." -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "소유자는" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" -msgstr "" +msgstr "에 소유자가 있습니다." -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "소유자가 없음" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "소유자가 없음" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "사용자 정의 필드 값이 있음" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "내가 공유" -#: documents/models.py:503 -msgid "has custom fields" -msgstr "" - -#: documents/models.py:504 -msgid "has custom field in" -msgstr "" - -#: documents/models.py:505 -msgid "does not have custom field in" -msgstr "" - #: documents/models.py:506 -msgid "does not have custom field" -msgstr "" +msgid "has custom fields" +msgstr "사용자 정의 필드가 있습니다." -#: documents/models.py:516 +#: documents/models.py:507 +msgid "has custom field in" +msgstr "에 사용자 정의 필드가 있습니다." + +#: documents/models.py:508 +msgid "does not have custom field in" +msgstr "에 사용자 정의 필드가 없습니다." + +#: documents/models.py:509 +msgid "does not have custom field" +msgstr "사용자 정의 필드가 없습니다." + +#: documents/models.py:519 msgid "rule type" msgstr "룰 타잎" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "값" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "룰 필터" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "필터 룰" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "작업 ID" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "실행된 작업의 셀러리 ID" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "인정됨" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "프런트엔드 또는 API를 통해 작업이 승인된 경우" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "작업 파일명" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "작업이 실행된 파일 이름" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "작업명" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "실행된 작업의 이름" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "작업 상태" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "실행 중인 작업의 현재 상태" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "생성일시" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "작업 결과가 UTC로 생성된 경우 날짜/시간 필드" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "시작일시" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "UTC로 작업이 시작된 날짜/시간 필드" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "완료일시" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "UTC로 작업이 완료된 날짜/시간 필드" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "완료 결과" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "작업에서 반환되는 데이터" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "문서에 대한 노트" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "사용자" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "노트" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "노트" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "아카이브" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "원본" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "만료" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "슬러그" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "링크 공유" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "링크 공유" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "문자열" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "날짜" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" -msgstr "" +msgstr "부울" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "정수" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" -msgstr "" +msgstr "부동 소수점" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" -msgstr "" +msgstr "통화" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "자료 링크" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "데이터 타입" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "사용자 정의 필드" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "사용자 정의 필드" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "사용자 정의 필드 인스턴스" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "사용자 정의 필드 인스턴스" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "소비 시작됨" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "문서 추가됨" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "문서 업데이트됨" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "소비된 폴더" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Api 업로드" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "메일 가져오기" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "워크플로 트리거 유형" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "필터 경로" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "지정된 경우 경로와 일치하는 문서만 사용합니다. * 와일드카드가 허용됩니다. 대소문자를 구분하지 않습니다." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "파일 이름 필터" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "지정된 경우 파일 이름과 완전히 일치하는 문서만 사용합니다. *.pdf와 같은 와일드카드 또는 invoice와 같은 것이 허용됩니다. 대소문자를 구분하지 않습니다." -#: documents/models.py:1004 -msgid "filter documents from this mail rule" -msgstr "" - -#: documents/models.py:1020 -msgid "has these tag(s)" -msgstr "" - #: documents/models.py:1028 +msgid "filter documents from this mail rule" +msgstr "이 메일 규칙에서 문서 필터링" + +#: documents/models.py:1044 +msgid "has these tag(s)" +msgstr "에는 다음 태그가 있습니다." + +#: documents/models.py:1052 msgid "has this document type" -msgstr "" +msgstr "이 문서 유형이 있습니다." -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" -msgstr "" +msgstr "이 특파원이 있습니다." -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" -msgstr "" - -#: documents/models.py:1041 -msgid "workflow triggers" -msgstr "" - -#: documents/models.py:1051 -msgid "Assignment" -msgstr "" - -#: documents/models.py:1055 -msgid "Removal" -msgstr "" - -#: documents/models.py:1059 -msgid "Workflow Action Type" -msgstr "" +msgstr "워크플로 트리거" #: documents/models.py:1065 +msgid "workflow triggers" +msgstr "워크플로 트리거" + +#: documents/models.py:1075 +msgid "Assignment" +msgstr "과제" + +#: documents/models.py:1079 +msgid "Removal" +msgstr "제거" + +#: documents/models.py:1083 +msgid "Workflow Action Type" +msgstr "워크플로 작업 유형" + +#: documents/models.py:1089 msgid "assign title" -msgstr "" +msgstr "제목 지정" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." -msgstr "" +msgstr "문서 제목을 지정하고 일부 자리 표시자를 포함할 수 있습니다(문서 참조)." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" -msgstr "" +msgstr "이 태그 할당" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" -msgstr "" +msgstr "이 문서 유형 지정" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" -msgstr "" +msgstr "이 특파원을 할당합니다." -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" -msgstr "" +msgstr "이 저장 경로를 할당합니다." -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" -msgstr "" +msgstr "이 소유자 지정" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" -msgstr "" +msgstr "이러한 사용자에게 보기 권한 부여" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" -msgstr "" +msgstr "다음 그룹에 보기 권한 부여" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" -msgstr "" +msgstr "이러한 사용자에게 변경 권한 부여" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" -msgstr "" - -#: documents/models.py:1150 -msgid "assign these custom fields" -msgstr "" - -#: documents/models.py:1157 -msgid "remove these tag(s)" -msgstr "" - -#: documents/models.py:1162 -msgid "remove all tags" -msgstr "" - -#: documents/models.py:1169 -msgid "remove these document type(s)" -msgstr "" +msgstr "이러한 그룹에 변경 권한 부여" #: documents/models.py:1174 -msgid "remove all document types" -msgstr "" +msgid "assign these custom fields" +msgstr "다음 사용자 지정 필드를 할당합니다." #: documents/models.py:1181 -msgid "remove these correspondent(s)" -msgstr "" +msgid "remove these tag(s)" +msgstr "이 태그 제거" #: documents/models.py:1186 -msgid "remove all correspondents" -msgstr "" +msgid "remove all tags" +msgstr "모든 태그 제거" #: documents/models.py:1193 -msgid "remove these storage path(s)" -msgstr "" +msgid "remove these document type(s)" +msgstr "이 저장 경로를 제거합니다." #: documents/models.py:1198 -msgid "remove all storage paths" -msgstr "" +msgid "remove all document types" +msgstr "모든 문서 유형 제거" #: documents/models.py:1205 +msgid "remove these correspondent(s)" +msgstr "이 특파원 삭제" + +#: documents/models.py:1210 +msgid "remove all correspondents" +msgstr "모든 특파원 제거" + +#: documents/models.py:1217 +msgid "remove these storage path(s)" +msgstr "이 저장 경로(들) 를 제거합니다." + +#: documents/models.py:1222 +msgid "remove all storage paths" +msgstr "모든 저장소 경로 제거" + +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" -msgstr "" +msgstr "이러한 사용자에 대한 보기 권한 제거" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" -msgstr "" - -#: documents/models.py:1231 -msgid "remove change permissions for these users" -msgstr "" - -#: documents/models.py:1238 -msgid "remove change permissions for these groups" -msgstr "" - -#: documents/models.py:1243 -msgid "remove all permissions" -msgstr "" - -#: documents/models.py:1250 -msgid "remove these custom fields" -msgstr "" +msgstr "이러한 그룹에 대한 보기 권한 제거" #: documents/models.py:1255 +msgid "remove change permissions for these users" +msgstr "이러한 사용자에 대한 변경 권한 제거" + +#: documents/models.py:1262 +msgid "remove change permissions for these groups" +msgstr "이러한 그룹에 대한 변경 권한 제거" + +#: documents/models.py:1267 +msgid "remove all permissions" +msgstr "모든 권한 제거" + +#: documents/models.py:1274 +msgid "remove these custom fields" +msgstr "다음 사용자 지정 필드를 제거합니다." + +#: documents/models.py:1279 msgid "remove all custom fields" -msgstr "" +msgstr "모든 사용자 지정 필드 제거" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" -msgstr "" +msgstr "워크플로 작업" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" -msgstr "" +msgstr "워크플로 작업들" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" -msgstr "" +msgstr "주문" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" -msgstr "" +msgstr "트리거" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" -msgstr "" +msgstr "동작" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" -msgstr "" +msgstr "활성화됨" #: documents/serialisers.py:119 #, python-format msgid "Invalid regular expression: %(error)s" -msgstr "" +msgstr "잘못된 정규식: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." -msgstr "" +msgstr "잘못된 변수가 감지되었습니다." #: documents/templates/account/email/base_message.txt:1 #, python-format msgid "Hello from %(site_name)s!" -msgstr "" +msgstr "%(site_name)s에서 안녕하세요!" #: documents/templates/account/email/base_message.txt:5 #, python-format msgid "Thank you for using %(site_name)s!\n" "%(site_domain)s" -msgstr "" +msgstr " %(site_name)s!\n" +"%(site_domain)s을 이용해 주셔서 감사합니다!" #: documents/templates/account/login.html:5 msgid "Paperless-ngx sign in" @@ -955,7 +968,7 @@ msgstr "로그인해주세요." #: documents/templates/account/login.html:12 #, python-format msgid "Don't have an account yet? Sign up" -msgstr "" +msgstr "아직 계정이 없나요? Sign up" #: documents/templates/account/login.html:19 #: documents/templates/account/signup.html:15 @@ -979,7 +992,7 @@ msgstr "비밀번호를 잊으셨나요?" #: documents/templates/account/login.html:45 #: documents/templates/account/signup.html:49 msgid "or sign in via" -msgstr "" +msgstr "또는 다음에서 로그인하세요" #: documents/templates/account/password_reset.html:5 msgid "Paperless-ngx reset password request" @@ -1011,7 +1024,7 @@ msgstr "메일함을 확인해주세요." #: documents/templates/account/password_reset_done.html:13 msgid "We've emailed you instructions for setting your password. You should receive the email shortly!" -msgstr "" +msgstr "또는 다음에서 로그인하세요" #: documents/templates/account/password_reset_from_key.html:5 msgid "Paperless-ngx reset password confirmation" @@ -1052,93 +1065,93 @@ msgstr "새로운 비밀번호로 변경되었습니다. Sign in" -msgstr "" +msgstr "이미 계정을 가지고 계십니까? 그렇다면 로그인 하세요." #: documents/templates/account/signup.html:16 #: documents/templates/socialaccount/signup.html:14 msgid "Email (optional)" -msgstr "" +msgstr "이메일(선택사항)" #: documents/templates/account/signup.html:18 msgid "Password (again)" -msgstr "" +msgstr "암호(다시 입력)" #: documents/templates/account/signup.html:36 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" -msgstr "" +msgstr "가입하기" #: documents/templates/index.html:61 msgid "Paperless-ngx is loading..." -msgstr "" +msgstr "Papeless-ngx가 작동중입니다..." #: documents/templates/index.html:62 msgid "Still here?! Hmm, something might be wrong." -msgstr "" +msgstr "아직 여기 있나요?! 뭔가 잘못된 것 같습니다." #: documents/templates/index.html:62 msgid "Here's a link to the docs." -msgstr "" +msgstr "다음은 문서 링크입니다." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "공유링크가 유효하지 않습니다." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "공유링크가 만료되었습니다." #: documents/templates/socialaccount/authentication_error.html:5 #: documents/templates/socialaccount/login.html:5 msgid "Paperless-ngx social account sign in" -msgstr "" +msgstr "Paperless-ngx 소셜 계정 로그인" #: documents/templates/socialaccount/authentication_error.html:10 #, python-format msgid "An error occurred while attempting to login via your social network account. Back to the login page" -msgstr "" +msgstr "소셜 네트워크 계정을 통해 로그인하는 동안 오류가 발생했습니다. 뒤로 돌아가기 login page" #: documents/templates/socialaccount/login.html:10 #, python-format msgid "You are about to connect a new third-party account from %(provider)s." -msgstr "" +msgstr "%(provider)s.의 새 타사 계정을 연결하려고 합니다." #: documents/templates/socialaccount/login.html:13 msgid "Continue" -msgstr "" +msgstr "계속하기" #: documents/templates/socialaccount/signup.html:5 msgid "Paperless-ngx social account sign up" -msgstr "" +msgstr "Paperless-ngx 소셜 계정 가입" #: documents/templates/socialaccount/signup.html:10 #, python-format msgid "You are about to use your %(provider_name)s account to login." -msgstr "" +msgstr "%(provider_name)s 의 계정을 사용하여 로그인하려고 합니다." #: documents/templates/socialaccount/signup.html:11 msgid "As a final step, please complete the following form:" -msgstr "" +msgstr "마지막 단계로 다음 양식을 작성해 주세요:" #: documents/validators.py:17 #, python-brace-format msgid "Unable to parse URI {value}, missing scheme" -msgstr "" +msgstr "URI {value}을 구문 분석할 수 없음, scheme 누락" #: documents/validators.py:22 #, python-brace-format msgid "Unable to parse URI {value}, missing net location or path" -msgstr "" +msgstr "URI {value}을 구문 분석할 수 없음, 위치 또는 경로가 누락됨" #: documents/validators.py:27 #, python-brace-format msgid "Unable to parse URI {value}" -msgstr "" +msgstr "URI를 구문 분석할 수 없음{value}" #: paperless/apps.py:10 msgid "Paperless" @@ -1146,91 +1159,91 @@ msgstr "Paperless" #: paperless/models.py:26 msgid "pdf" -msgstr "" +msgstr "pdf" #: paperless/models.py:27 msgid "pdfa" -msgstr "" +msgstr "pdfa" #: paperless/models.py:28 msgid "pdfa-1" -msgstr "" +msgstr "pdfa-1" #: paperless/models.py:29 msgid "pdfa-2" -msgstr "" +msgstr "pdfa-2" #: paperless/models.py:30 msgid "pdfa-3" -msgstr "" +msgstr "pdfa-3" #: paperless/models.py:39 msgid "skip" -msgstr "" +msgstr "건너뛰기" #: paperless/models.py:40 msgid "redo" -msgstr "" +msgstr "다시 실행" #: paperless/models.py:41 msgid "force" -msgstr "" +msgstr "덮어쓰기" #: paperless/models.py:42 msgid "skip_noarchive" -msgstr "" +msgstr "스킵-비보관소" #: paperless/models.py:50 msgid "never" -msgstr "" +msgstr "절대 안 함" #: paperless/models.py:51 msgid "with_text" -msgstr "" +msgstr "글과함께" #: paperless/models.py:52 msgid "always" -msgstr "" +msgstr "항상" #: paperless/models.py:60 msgid "clean" -msgstr "" +msgstr "비우기" #: paperless/models.py:61 msgid "clean-final" -msgstr "" +msgstr "클린-파이널" #: paperless/models.py:62 msgid "none" -msgstr "" +msgstr "없음" #: paperless/models.py:70 msgid "LeaveColorUnchanged" -msgstr "" +msgstr "LeaveColorUnchanged" #: paperless/models.py:71 msgid "RGB" -msgstr "" +msgstr "RGB" #: paperless/models.py:72 msgid "UseDeviceIndependentColor" -msgstr "" +msgstr "UseDeviceIndependentColor" #: paperless/models.py:73 msgid "Gray" -msgstr "" +msgstr "회색" #: paperless/models.py:74 msgid "CMYK" -msgstr "" +msgstr "CMYK" #: paperless/models.py:83 msgid "Sets the output PDF type" -msgstr "" +msgstr "CMYK" #: paperless/models.py:95 msgid "Do OCR from page 1 to this value" -msgstr "" +msgstr "1페이지에서 이 값까지 OCR 수행" #: paperless/models.py:101 msgid "Do OCR using these languages" @@ -1238,187 +1251,187 @@ msgstr "" #: paperless/models.py:108 msgid "Sets the OCR mode" -msgstr "" +msgstr "OCR 모드를 설정합니다." #: paperless/models.py:116 msgid "Controls the generation of an archive file" -msgstr "" +msgstr "아카이브 파일 생성 제어" #: paperless/models.py:124 msgid "Sets image DPI fallback value" -msgstr "" +msgstr "이미지 DPI 폴백 값 설정" #: paperless/models.py:131 msgid "Controls the unpaper cleaning" -msgstr "" +msgstr "종이 없는 청소 제어" #: paperless/models.py:138 msgid "Enables deskew" -msgstr "" +msgstr "데스큐 사용" #: paperless/models.py:141 msgid "Enables page rotation" -msgstr "" +msgstr "페이지 회전 사용" #: paperless/models.py:146 msgid "Sets the threshold for rotation of pages" -msgstr "" +msgstr "페이지 회전 임계값을 설정합니다." #: paperless/models.py:152 msgid "Sets the maximum image size for decompression" -msgstr "" +msgstr "압축 해제를 위한 최대 이미지 크기를 설정합니다." #: paperless/models.py:158 msgid "Sets the Ghostscript color conversion strategy" -msgstr "" +msgstr "고스트스크립트 색상 변환 전략을 설정합니다." #: paperless/models.py:166 msgid "Adds additional user arguments for OCRMyPDF" -msgstr "" +msgstr "OCRMyPDF에 대한 사용자 인수를 추가합니다." #: paperless/models.py:171 msgid "Application title" -msgstr "" +msgstr "애플리케이션 제목" #: paperless/models.py:178 msgid "Application logo" -msgstr "" +msgstr "애플리케이션 로고" #: paperless/models.py:188 msgid "paperless application settings" -msgstr "" +msgstr "페이퍼리스 애플리케이션 설정" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "영어 (미국)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "아랍어" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "아프리칸스어" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "벨라루스어" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "불가리어" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "카탈로니아어" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "체코어" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "덴마크어" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "독일어" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "그리스어" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "영어 (영국)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "스페인어" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "핀란드어" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "프랑스어" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "헝가리어" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "이탈리아어" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" -msgstr "" +msgstr "일본어" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "룩셈부르크어" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "노르웨이어" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "네덜란드어" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "폴란드어" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "포르투갈어 (브라질)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "포르투갈어" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "루마니아어" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "러시아어" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "슬로바키아어" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "슬로베니아어" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "세르비아어" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "스웨덴어" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "튀르키예어" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "우크라이나어" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "중국어 간체" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" -msgstr "" +msgstr "Paperless-ngx 관리" #: paperless_mail/admin.py:39 msgid "Authentication" @@ -1434,7 +1447,7 @@ msgstr "필터" #: paperless_mail/admin.py:61 msgid "Paperless will only process mails that match ALL of the filters given below." -msgstr "" +msgstr "Paperless는 아래에 제시된 모든 필터와 일치하는 메일만 처리합니다." #: paperless_mail/admin.py:78 msgid "Actions" @@ -1442,7 +1455,7 @@ msgstr "작업" #: paperless_mail/admin.py:81 msgid "The action applied to the mail. This action is only performed when the mail body or attachments were consumed from the mail." -msgstr "" +msgstr "삭제" #: paperless_mail/admin.py:89 msgid "Metadata" @@ -1450,11 +1463,11 @@ msgstr "메타데이터" #: paperless_mail/admin.py:92 msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." -msgstr "" +msgstr "이 규칙에서 소비되는 문서에 메타데이터를 자동으로 할당합니다. 여기서 태그, 유형 또는 대응자를 지정하지 않아도 Paperless는 사용자가 정의한 모든 일치하는 규칙을 처리합니다." #: paperless_mail/apps.py:11 msgid "Paperless mail" -msgstr "" +msgstr "paperless 메일" #: paperless_mail/models.py:10 msgid "mail account" @@ -1486,7 +1499,7 @@ msgstr "IMAP 포트" #: paperless_mail/models.py:27 msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." -msgstr "" +msgstr "일반적으로 비암호화 및 STARTTLS 연결의 경우 143, SSL 연결의 경우 993입니다." #: paperless_mail/models.py:33 msgid "IMAP security" @@ -1502,7 +1515,7 @@ msgstr "비밀번호" #: paperless_mail/models.py:42 msgid "Is token authentication" -msgstr "" +msgstr "토큰 인증" #: paperless_mail/models.py:45 msgid "character set" @@ -1510,181 +1523,181 @@ msgstr "문자셋" #: paperless_mail/models.py:49 msgid "The character set to use when communicating with the mail server, such as 'UTF-8' or 'US-ASCII'." -msgstr "" +msgstr "메일 서버와 통신할 때 사용할 문자 집합 예: 'UTF-8' 또는 'US-ASCII' 입니다." #: paperless_mail/models.py:60 msgid "mail rule" -msgstr "" +msgstr "메일 규칙" #: paperless_mail/models.py:61 msgid "mail rules" -msgstr "" +msgstr "메일 규칙들" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." -msgstr "" - -#: paperless_mail/models.py:65 -msgid "Process full Mail (with embedded attachments in file) as .eml" -msgstr "" - -#: paperless_mail/models.py:69 -msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" -msgstr "" +msgstr "첨부 파일만 처리합니다." #: paperless_mail/models.py:76 -msgid "Process all files, including 'inline' attachments." -msgstr "" - -#: paperless_mail/models.py:79 -msgid "Delete" -msgstr "" +msgid "Process full Mail (with embedded attachments in file) as .eml" +msgstr "전체 메일(파일에 포함된 첨부 파일 포함)을 .eml로 처리합니다." #: paperless_mail/models.py:80 -msgid "Move to specified folder" -msgstr "" +msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" +msgstr "전체 메일(파일에 첨부 파일이 포함된 경우)을 .eml로 처리하고 첨부 파일을 별도의 문서로 처리합니다." -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:87 +msgid "Process all files, including 'inline' attachments." +msgstr "'인라인' 첨부파일을 포함한 모든 파일을 처리합니다." + +#: paperless_mail/models.py:90 +msgid "Delete" +msgstr "삭제" + +#: paperless_mail/models.py:91 +msgid "Move to specified folder" +msgstr "지정된 폴더로 이동" + +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" -msgstr "" +msgstr "메일에 플래그를 지정하고, 플래그를 지정한 메일은 처리하지 않습니다." -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" -msgstr "" +msgstr "지정된 태그로 메일에 태그를 지정하고 태그가 지정된 메일은 처리하지 않습니다." -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" -msgstr "" +msgstr "첨부 파일 이름을 제목으로 사용" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" -msgstr "" +msgstr "규칙에서 제목 지정하지 않기" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" -msgstr "" +msgstr "담당자를 지정하지 마십시오." -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" -msgstr "" - -#: paperless_mail/models.py:93 -msgid "Use name (or mail address if not available)" -msgstr "" - -#: paperless_mail/models.py:94 -msgid "Use correspondent selected below" -msgstr "" +msgstr "메일 주소 사용" #: paperless_mail/models.py:104 +msgid "Use name (or mail address if not available)" +msgstr "이름(또는 사용할 수 없는 경우 메일 주소) 사용" + +#: paperless_mail/models.py:105 +msgid "Use correspondent selected below" +msgstr "아래에서 선택한 특파원 사용" + +#: paperless_mail/models.py:115 msgid "account" msgstr "계정" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "폴더" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." -msgstr "" +msgstr "하위 폴더는 점('.') 또는 슬래시('/')와 같은 구분 기호로 구분해야 하지만 메일 서버에 따라 다릅니다." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" -msgstr "" +msgstr "에서 필터링" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" -msgstr "" +msgstr "필터로" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" -msgstr "" +msgstr "제목 필터링" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" -msgstr "" +msgstr "필터 본문" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" -msgstr "" +msgstr "첨부 파일 이름 포함 필터링" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" -msgstr "" +msgstr "필터 첨부 파일명 전용" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." -msgstr "" +msgstr "지정된 경우 이 파일명과 완전히 일치하는 문서는 사용하지 마세요..pdf 또는 *인보이스*와 같은 와일드카드는 허용됩니다. 대소문자를 구분하지 않습니다." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" -msgstr "" +msgstr "최대 나이" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." -msgstr "" +msgstr "일 단위로 지정됩니다." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" -msgstr "" +msgstr "첨부 파일 유형" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." -msgstr "" +msgstr "인라인 첨부 파일에는 임베드된 이미지가 포함되므로 이 옵션과 파일 이름 필터를 함께 사용하는 것이 가장 좋습니다." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" -msgstr "" +msgstr "사용 범위" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "작업" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" -msgstr "" +msgstr "액션 매개변수" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." -msgstr "" +msgstr "위에서 선택한 작업에 대한 추가 매개변수, 즉 폴더로 이동 작업의 대상 폴더입니다. 하위 폴더는 점으로 구분해야 합니다." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" -msgstr "" +msgstr "에서 제목 지정" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" -msgstr "" +msgstr "에서 통신원을 지정합니다." -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" -msgstr "" +msgstr "문서에 규칙 소유자 지정" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" -msgstr "" +msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" -msgstr "" +msgstr "제목" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" -msgstr "" +msgstr "받음" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" -msgstr "" +msgstr "완료됨" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "상태" diff --git a/src/locale/lb_LU/LC_MESSAGES/django.po b/src/locale/lb_LU/LC_MESSAGES/django.po index 51ae2f9c6..7de88bf0b 100644 --- a/src/locale/lb_LU/LC_MESSAGES/django.po +++ b/src/locale/lb_LU/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:41\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Luxembourgish\n" "Language: lb_LU\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokumenter" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "Besëtzer" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Iergendee Wuert" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "All d'Wierder" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Exakten Treffer" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Regulären Ausdrock" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Ongenaut Wuert" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automatesch" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "Numm" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "Zouweisungsmuster" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "Zouweisungsalgorithmus" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "Grouss-/Klengschreiwung ignoréieren" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "Korrespondent" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "Korrespondenten" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "Faarf" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "Postaganks-Etikett" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Dës Etikett als Postaganks-Etikett markéieren: All nei importéiert Dokumenter kréien ëmmer dës Etikett zougewisen." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "Etikett" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "Etiketten" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "Dokumententyp" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "Dokumententypen" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "Pfad" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "Späicherpfad" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "Späicherpfaden" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Onverschlësselt" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Verschlësselt mat GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "Titel" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "Inhalt" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "De réien Textinhalt vum Dokument. Dëst Feld gëtt primär fir d'Sich benotzt." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "MIME-Typ" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "Préifzomm" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "D'Préifzomm vum Original-Dokument." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "Archiv-Préifzomm" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "D'Préifzomm vum archivéierten Dokument." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "erstallt" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "verännert" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "Späichertyp" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "derbäigesat" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "Fichiersnumm" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Aktuellen Dateinumm am Späicher" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "Archiv-Dateinumm" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Aktuellen Dateinumm am Archiv" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "original Dateinumm" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "Archiv-Seriennummer" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "D'Positioun vun dësem Dokument am physeschen Dokumentenarchiv." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "Dokument" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "Dokumenter" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "Fehlersiich" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "Informatioun" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "Warnung" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "Feeler" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kritesch" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "Grupp" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "Message" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "Niveau" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "Protokoll" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "Protokoller" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "Tabell" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "Kleng Kaarten" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "Grouss Kaarten" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "Titel" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "Erstallt" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "Dobäigesat" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "Etiketten" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "Korrespondent" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "Dokumententyp" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "Späicherpfad" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "Notiz" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "Besëtzer" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "Gedeelt" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "ASN" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "Op der Startsäit uweisen" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "An der Säiteleescht uweisen" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "Zortéierfeld" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "ëmgedréint zortéieren" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "Gespäichert Usiicht" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "Gespäichert Usiichten" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "Titel enthält" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "Inhalt enthält" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN ass" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "Korrespondent ass" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "Dokumententyp ass" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "ass am Postagank" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "huet Etikett" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "huet iergendeng Etikett" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "erstallt virun" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "erstallt no" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "Erstellungsjoer ass" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "Erstellungsmount ass" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "Erstellungsdag ass" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "dobäigesat virun" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "dobäigesat no" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "verännert virun" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "verännert no" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "huet dës Etikett net" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "huet keng ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "Titel oder Inhalt enthalen" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "Volltextsich" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "ähnlech Dokumenter" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "huet Etiketten an" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN méi grouss ewéi" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN méi kleng ewéi" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "Späicherpfad ass" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "Besëtzer ass" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "Reegeltyp" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "Wäert" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "Filterreegel" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "Filterreegelen" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "Benotzer" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Just Dokumenter traitéieren, déi exakt dësen Dateinumm hunn (falls definéiert). Platzhalter wéi *.pdf oder *invoice* sinn erlaabt. D'Grouss-/Klengschreiwung gëtt ignoréiert." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "dës Etikett zouweisen" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "Dësen Dokumententyp zouweisen" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "Dëse Korrespondent zouweisen" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "Reiefolleg" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "Ongëltege regulären Ausdrock: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Ongëlteg Faarf." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Fichierstyp %(type)s net ënnerstëtzt" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Ongëlteg Zeechen detektéiert." @@ -1085,11 +1097,11 @@ msgstr "Nach ëmmer hei?! Eventuell ass eppes schif gelaf." msgid "Here's a link to the docs." msgstr "Hei ass e Link op d'Dokumentatioun." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "" @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Englesch (USA)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Belarusesch" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Tschechesch" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Dänesch" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Däitsch" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Englesch (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Spuenesch" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Franséisch" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italienesch" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Lëtzebuergesch" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Hollännesch" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polnesch" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugisesch (Brasilien)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugisesch" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Rumänesch" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Russesch" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Slowenesch" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Serbesch" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Schwedesch" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Tierkesch" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Chinesesch (Vereinfacht)" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx-Administratioun" @@ -1520,171 +1532,171 @@ msgstr "E-Mail-Reegel" msgid "mail rules" msgstr "E-Mail-Reegelen" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Just Unhäng veraarbechten." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "All d'Fichiere veraarbechten, inklusiv \"inline\"-Unhäng." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Läschen" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "An e virdefinéierten Dossier réckelen" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Als gelies markéieren, gelies Mailen net traitéieren" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Als wichteg markéieren, markéiert E-Mailen net veraarbechten" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Sujet als TItel notzen" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Numm vum Dateiunhank als Titel benotzen" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Kee Korrespondent zouweisen" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "E-Mail-Adress benotzen" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Numm benotzen (oder E-Mail-Adress falls den Numm net disponibel ass)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Korrespondent benotzen deen hei drënner ausgewielt ass" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "Kont" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "Dossier" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Ënnerdossiere musse mat engem Zeeche getrennt si wéi beispillsweis engem Punkt ('.') oder engem Slash ('/'), mee dat hänkt vum Mailserver of." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "Ofsenderfilter" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "Sujets-Filter" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "Contenu-Filter" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "Maximalen Alter" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "An Deeg." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "Fichierstyp vum Unhank" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "\"Inline\"-Unhänk schléissen och agebonne Biller mat an, dofir sollt dës Astellung mat engem Filter fir den Numm vum Unhank kombinéiert ginn." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "Aktioun" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "Parameter fir Aktioun" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Zousätzleche Parameter fir d'Aktioun déi hei driwwer ausgewielt ass, zum Beispill den Numm vum Zildossier fir d'Aktioun \"An e virdefinéierten Dossier réckelen\". Ënnerdossiere musse mat Punkte getrennt ginn." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "Titel zouweisen aus" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "Korrespondent zouweisen aus" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "" diff --git a/src/locale/lv_LV/LC_MESSAGES/django.po b/src/locale/lv_LV/LC_MESSAGES/django.po index 51e9f57b2..b72f2e8db 100644 --- a/src/locale/lv_LV/LC_MESSAGES/django.po +++ b/src/locale/lv_LV/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:41\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Latvian\n" "Language: lv_LV\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokuments" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "īpašnieks" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Neviens" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Jebkādi vārdi" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Visi vārdi" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Precīza atbilstība" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Regulāra izteiksme" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "\"izplūdis\" vārds" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automātiski" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "nosaukums" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "atbilstība" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "atbilstības algoritms" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "nav reģistrjutīgs" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "korespondents" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "korespondenti" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "krāsa" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "ir iesūtnes birka" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Atzīmē šo tagu kā iesūtnes tagu: visi jaunie apstradātie dokumenti tiks atzīmēti ar iesūtnes tagiem." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "birka" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "birkas" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "dokumenta veids" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "dokumentu veidi" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "ceļš" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "uzglabāšanas ceļš" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "uzglabāšanas ceļi" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Nešifrēts" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Šifrēts ar GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "virsraksts" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "saturs" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "" -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "mime tips" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "kontrolsumma" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Oriģināla dokumenta kontrolsumma." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "arhīva kontrolsumma" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Arhivēta dokumenta kontrolsumma." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "izveidots" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "modificēts" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "glabāšanas veids" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "pievienots" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "faila nosaukums" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Pašreizējais faila nosaukums krātuvē" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "arhīva faila nosaukums" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Pašreizējais arhīva faila nosaukums krātuvē" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "sākotnējais faila nosaukums" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Faila sākotnējais nosaukums, kad tas tika augšupielādēts" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "arhīva sērijas numurs" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Šī dokumenta atrašanās vieta fiziskajā dokumentu arhīvā." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "dokuments" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "dokuments" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "atkļūdošana" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informācija" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "brīdinājums" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "kļūda" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kritiska" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "grupa" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "ziņa" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "līmenis" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "žurnāls" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "notikumu žurnāls" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "parādīt galvenajā panelī" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "rādīt sānu joslā" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "kārtošanas lauks" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "kārtot pretēji" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "saglabātais skats" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "saglabātais skati" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "virsraksts satur" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "saturā ir" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN ir" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "korespondents ir" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "dokumenta veids ir" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "ir iesūtnē" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "ir birka" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "ir jekura birka" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "izveidots pirms" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "izveidots pēc" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "izveidotais gads ir" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "izveidotais mēnesis ir" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "izveidotā diena ir" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "pievienots pirms" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "pievienots pēc" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "modificēts pirms" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "modificēts pēc" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "nav birkas" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "nav ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "virsraksts vai saturs satur" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "pilnteksta vaicājums" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "vairāk šādi" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "ir birkas" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN lielāks par" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN mazāks par" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "uzglabāšanas ceļš ir" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "korespondents ir" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "nav korespondenta" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "dokumenta veids ir" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "nav dokumenta tipa" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "uzglabāšanas ceļš ir" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "nav krātuves ceļa" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "īpašnieks ir" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "ir īpašnieks" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "nav īpašnieka" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "nav īpašnieka" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "ir pielāgota lauka vērtība" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "kopīgots ar mani" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "noteikumu tips" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "vērtība" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "filtra noteikums" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "filtra noteikumi" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "Uzdevuma ID" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID izpildītajam uzdevumam" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Atzīts" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Ja uzdevums tiek apstiprināts, izmantojot priekšgalsistēmu vai API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Uzdevuma faila nosaukums" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Faila nosaukums, kuram tika palaists uzdevums" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Uzdevuma nosaukums" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Uzdevuma stāvoklis" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "lietotājs" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "piezīme" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "piezīmes" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Arhīvs" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Oriģināls" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "kopīgot saiti" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "kopīgot saites" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Virkne" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Date" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Boolean" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Integer" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Float" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Monetary" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Dokumenta saite" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "datu tips" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "pielāgojams lauks" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "pielāgojami lauki" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Dokuments pievienots" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Dokuments atjaunināts" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "darbplūsmas trigeri" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "Norīkojums" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "Noņemt" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "piešķirt virsrakstu" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Piešķiriet dokumenta nosaukumu, var ietvert dažus vietturus, skatiet dokumentāciju." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "piešķirt šo birku" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "piešķirt šo dokumenta tipu" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "piešķirt šo korespondentu" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "piešķirt šo krātuves ceļu" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "piešķirt šo īpašnieku" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "piešķirt skata atļaujas šiem lietotājiem" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "piešķirt skata atļaujas šīm grupām" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "piešķirt izmaiņu atļaujas šiem lietotājiem" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "dzēst birkas" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "dzēst visus īpašniekus" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "noņemt skata atļaujas šiem lietotājiem" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "noņemt skata atļaujas šīm grupām" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "noņemt visas atļaujas" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "darbības" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "ieslēgts" @@ -920,16 +932,16 @@ msgstr "ieslēgts" msgid "Invalid regular expression: %(error)s" msgstr "" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "" @@ -1085,11 +1097,11 @@ msgstr "" msgid "Here's a link to the docs." msgstr "" -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "" @@ -1288,135 +1300,135 @@ msgstr "Lietotnes logo" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Angļu (ASV)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arābu" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Āfrikāņu" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Baltkrievu" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Bulgāru" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Kataloniešu" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Čehu" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Dāņu" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Vācu" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Grieķu" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Angļu (ASV)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Spāņu" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Somu" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Franču" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Ungāru" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Itāļu" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "Japāņu" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luksemburgiešu" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norvēģu" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Holandiešu" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Poļu" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugāļu (Brazīlija)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugāļu" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Rumāņu" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Krievu" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Slovāku" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Slovēņu" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Sērbu" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Zviedru" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turku" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ukraiņu" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Ķīniešu (vienkāršota)" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "" @@ -1520,171 +1532,171 @@ msgstr "" msgid "mail rules" msgstr "" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "" -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "" -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Dzēst" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "" -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "" -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "" -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "darbība" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "" -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "piešķirt virsrakstu" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "temats" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "saņemts" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "apstrādāts" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "statuss" diff --git a/src/locale/nl_NL/LC_MESSAGES/django.po b/src/locale/nl_NL/LC_MESSAGES/django.po index ce8679141..c9dc7749e 100644 --- a/src/locale/nl_NL/LC_MESSAGES/django.po +++ b/src/locale/nl_NL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-26 12:08\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Documenten" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "eigenaar" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Geen" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Elk woord" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Alle woorden" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Exacte overeenkomst" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Reguliere expressie" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Gelijkaardig woord" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automatisch" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "naam" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "Overeenkomst" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "Algoritme voor het bepalen van de overeenkomst" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "is niet hoofdlettergevoelig" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "correspondent" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "correspondenten" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "Kleur" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "is \"Postvak in\"-label" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Markeert dit label als een \"Postvak in\"-label: alle nieuw verwerkte documenten krijgen de \"Postvak in\"-labels." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "label" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "labels" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "documenttype" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "documenttypen" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "pad" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "opslag pad" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "opslag paden" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Niet versleuteld" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Versleuteld met GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "titel" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "inhoud" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "De onbewerkte gegevens van het document. Dit veld wordt voornamelijk gebruikt om te zoeken." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "mimetype" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "checksum" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "De checksum van het oorspronkelijke document." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "archief checksum" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "De checksum van het gearchiveerde document." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "aangemaakt" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "gewijzigd" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "type opslag" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "toegevoegd" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "bestandsnaam" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Huidige bestandsnaam in opslag" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "Bestandsnaam in archief" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Huidige bestandsnaam in archief" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "oorspronkelijke bestandsnaam" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "De oorspronkelijke naam van het bestand toen het werd geüpload" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "serienummer in archief" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "De positie van dit document in je fysieke documentenarchief." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "document" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "documenten" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "debug" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informatie" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "waarschuwing" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "fout" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kritiek" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "groep" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "bericht" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "niveau" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "bericht" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "berichten" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "Labels" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "Correspondent" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "weergeven op dashboard" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "weergeven in zijbalk" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "sorteerveld" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "omgekeerd sorteren" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "opgeslagen weergave" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "opgeslagen weergaven" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "titel bevat" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "inhoud bevat" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN is" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "correspondent is" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "documenttype is" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "zit in \"Postvak in\"" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "heeft label" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "heeft één van de labels" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "aangemaakt voor" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "aangemaakt na" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "aangemaakt jaar is" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "aangemaakte maand is" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "aangemaakte dag is" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "toegevoegd voor" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "toegevoegd na" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "gewijzigd voor" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "gewijzigd na" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "heeft geen label" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "heeft geen ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "titel of inhoud bevat" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "inhoud doorzoeken" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "meer zoals dit" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "heeft labels in" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN groter dan" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN kleiner dan" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "opslagpad is" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "heeft corrrespondent in" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "heeft geen correspondent in" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "heeft documenttype in" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "heeft geen documentttype in" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "heeft opslagpad in" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "heeft geen opslagpad in" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "eigenaar is" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "heeft eigenaar in" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "heeft geen eigenaar" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "heeft geen eigenaar in" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "heeft waarde van aangepast veld" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "is gedeeld door mij" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "type regel" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "waarde" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "filterregel" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "filterregels" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "Taak ID" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID voor de taak die werd uitgevoerd" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Bevestigd" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Of de taak is bevestigd via de frontend of de API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Bestandsnaam taak" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Naam van het bestand waarvoor de taak werd uitgevoerd" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Taaknaam" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Naam van de uitgevoerde taak" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Taakstatus" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Huidige status van de taak die wordt uitgevoerd" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Aangemaakt DateTime" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Datetime veld wanneer het resultaat van de taak werd aangemaakt in UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Gestart DateTime" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Datetime veld wanneer de taak werd gestart in UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Voltooid datum/tijd" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Datum/tijd veld wanneer de taak werd voltooid in UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Resultaatgegevens" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Gegevens geretourneerd door de taak" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Notitie bij het document" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "gebruiker" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "notitie" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "notities" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Archief" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Origineel" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "vervaldatum" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "slug" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "gedeelde link" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "gedeelde links" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Tekenreeks" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Datum" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Boolean" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Geheel getal" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Zwevendekommagetal" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Monetair" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Documentkoppeling" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "gegevenstype" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "aangepaste velden" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "Aangepaste velden" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "aangepast veld instantie" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "aangepast veld instanties" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "Verwerking gestart" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Document toegevoegd" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Document bijgewerkt" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Inname locatie" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "API upload" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "E-mails ophalen" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "Workflow trigger type" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "filter op opslaglocatie" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Alleen documenten verwerken die overeenkomen met dit pad. Wildcards met * zijn toegstaan. Niet hoofdlettergevoelig." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "filter op bestandsnaam" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Alleen documenten verwerken die volledig overeenkomen, indien aangegeven. Je kunt jokertekens gebruiken, zoals *.pdf of *factuur*. Dit is niet hoofdlettergevoelig." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "filter op documenten van deze e-mailregel" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "heeft deze label(s)" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "heeft dit documenttype" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "heeft deze correspondent" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "workflow trigger" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "workflow triggers" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "Toewijzing" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "Actietype workflow" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "titel toewijzen" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Een documenttitel toewijzen, kan gebruik maken van placeholders, zie documentatie." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "wijs dit label toe" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "wijs dit documenttype toe" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "wijs deze correspondent toe" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "wijs dit opslagpad toe" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "wijs deze eigenaar toe" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "geef deze gebruikers weergaverechten" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "geef deze groepen weergaverechten" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "geef deze gebruikers bewerkingsrechten" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "geef deze groepen bewerkingsrechten" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "deze aangepaste velden toewijzen" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "worflow actie" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "workflow acties" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "volgorde" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "triggers" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "acties" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "ingeschakeld" @@ -920,16 +932,16 @@ msgstr "ingeschakeld" msgid "Invalid regular expression: %(error)s" msgstr "Ongeldige reguliere expressie: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Ongeldig kleur." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Bestandstype %(type)s niet ondersteund" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Ongeldige variabele ontdekt." @@ -1086,11 +1098,11 @@ msgstr "Nog steeds hier?! Hmm, er kan iets mis zijn." msgid "Here's a link to the docs." msgstr "Dit is een link naar de documentatie." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Gedeelde link is niet gevonden." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Gedeelde link is verlopen." @@ -1289,135 +1301,135 @@ msgstr "Applicatie logo" msgid "paperless application settings" msgstr "paperless applicatie instellingen" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Engels (US)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arabisch" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Afrikaans" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Wit-Russisch" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Bulgaars" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Catalaans" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Tsjechisch" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Deens" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Duits" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Grieks" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Engels (Brits)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Spaans" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Fins" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Frans" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Hongaars" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italiaans" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "Japans" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxemburgs" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Noors" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Nederlands" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Pools" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugees (Brazilië)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugees" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Roemeens" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Russisch" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Slowaaks" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Sloveens" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Servisch" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Zweeds" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turks" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Oekraïens" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Chinees (vereenvoudigd)" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx administratie" @@ -1521,171 +1533,171 @@ msgstr "email-regel" msgid "mail rules" msgstr "email-regels" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Alleen bijlagen verwerken" -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Verwerk volledige email (met ingesloten bijlagen in bestand) als .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Verwerk volledige email (met ingesloten bijlagen als bestand) als .eml en verwerk bijlagen als aparte documenten" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Verwerk alle bestanden, inclusief 'inline' bijlagen." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Verwijder" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Verplaats naar gegeven map" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Markeer als gelezen, verwerk geen gelezen mails" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Markeer de mail, verwerk geen mails met markering" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Tag de mail met de opgegeven tag, verwerk geen getagde mails" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Gebruik onderwerp als titel" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Gebruik naam van bijlage als titel" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "Titel niet toewijzen vanuit regel" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Wijs geen correspondent toe" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Gebruik het email-adres" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Gebruik de naam, en anders het email-adres" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Gebruik de hieronder aangeduide correspondent" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "account" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "map" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Submappen moeten gescheiden worden door een scheidingsteken, vaak een punt ('.') of slash ('/'), maar het varieert per mailserver." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filter afzender" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filteren op" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filter onderwerp" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filter inhoud" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "filter bijlagenaam bevat" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "filter bijlagenaam bevat niet" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Geen documenten verwerken die overeenkomen met deze bestandsnaam indien ingevuld. Je kunt wildcards gebruiken, zoals *.pdf of *factuur*. Dit is niet hoofdlettergevoelig." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "Maximale leeftijd" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Aangegeven in dagen" -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "Type bijlage" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "\"Inline\" bijlagen bevatten vaak ook afbeeldingen. In dit geval valt het aan te raden om ook een filter voor de bestandsnaam op te geven." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "verwerkingsbereik" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "actie" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "actie parameters" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Extra parameter voor de hierboven geselecteerde actie, bijvoorbeeld: de doelmap voor de \"verplaats naar map\"-actie. Submappen moeten gescheiden worden door punten." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "wijs titel toe van" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "wijs correspondent toe van" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Wijs de eigenaar van de regel toe aan documenten" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "onderwerp" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "ontvangen" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "verwerkt" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "status" diff --git a/src/locale/no_NO/LC_MESSAGES/django.po b/src/locale/no_NO/LC_MESSAGES/django.po index ae7a3070c..82e662980 100644 --- a/src/locale/no_NO/LC_MESSAGES/django.po +++ b/src/locale/no_NO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-19 12:10\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Language: no_NO\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokumenter" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "eier" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Ingen" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Hvilket som helst ord" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Alle ord" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Eksakt match" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Regulære uttrykk" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" -msgstr "" +msgstr "Automatisk" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "navn" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "treff" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "samsvarende algoritme" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "er insensitiv" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "korrespondent" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "korrespondenter" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "farge" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "er innboks tag" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Markerer dette merket som en innboks-tag: Alle nybrukte dokumenter vil bli merket med innboks-tagger." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "tagg" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "tagger" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "dokument type" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "dokumenttyper" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "sti" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "lagringssti" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "lagringsveier" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Ukryptert" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Kryptert med GNU Personvernvakt" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "tittel" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "innhold" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Raw, tekstbare data fra dokumentet. Dette feltet brukes primært for søking." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "mime type" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "sjekksum" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Sjekksummen av det opprinnelige dokumentet." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "arkiv sjekksum" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Sjekksummen av det arkiverte dokumentet." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "opprettet" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "endret" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "lagringstype" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "lagt til" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "filnavn" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Gjeldende filnavn i lagring" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "arkiver filnavn" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Gjeldende arkiv filnavn i lagring" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "opprinnelig filnavn" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Filens opprinnelige filnavn ved opplasting" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "arkiver serienummer" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Dokumentets posisjon i ditt fysiske dokumentarkiv." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "dokument" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "dokumenter" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "feilsøk" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informasjon" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "advarsel" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "feil" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kritisk" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "gruppe" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "melding" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "nivå" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "Logg" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "logger" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" -msgstr "" +msgstr "Tabell" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" -msgstr "" - -#: documents/models.py:400 -msgid "Large Cards" -msgstr "" +msgstr "Små kort" #: documents/models.py:403 -msgid "Title" -msgstr "" - -#: documents/models.py:404 -msgid "Created" -msgstr "" - -#: documents/models.py:405 -msgid "Added" -msgstr "" +msgid "Large Cards" +msgstr "Store kort" #: documents/models.py:406 -msgid "Tags" -msgstr "" +msgid "Title" +msgstr "Tittel" #: documents/models.py:407 -msgid "Correspondent" -msgstr "" +msgid "Created" +msgstr "Opprettet" #: documents/models.py:408 -msgid "Document Type" -msgstr "" +msgid "Added" +msgstr "Lagt til" #: documents/models.py:409 -msgid "Storage Path" -msgstr "" +msgid "Tags" +msgstr "Etiketter" #: documents/models.py:410 -msgid "Note" -msgstr "" +msgid "Correspondent" +msgstr "Korrespondent" #: documents/models.py:411 -msgid "Owner" -msgstr "" +msgid "Document Type" +msgstr "Dokumenttype" #: documents/models.py:412 -msgid "Shared" -msgstr "" +msgid "Storage Path" +msgstr "Lagringssti" #: documents/models.py:413 -msgid "ASN" -msgstr "" +msgid "Note" +msgstr "Notat" -#: documents/models.py:419 +#: documents/models.py:414 +msgid "Owner" +msgstr "Eier" + +#: documents/models.py:415 +msgid "Shared" +msgstr "Delt" + +#: documents/models.py:416 +msgid "ASN" +msgstr "ASN" + +#: documents/models.py:422 msgid "show on dashboard" msgstr "vis på dashbordet" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "vis i sidestolpen" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "sorter felt" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "sorter på baksiden" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" -msgstr "" +msgstr "Vis sidestørrelse" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" -msgstr "" +msgstr "Vis visningsmodus" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" -msgstr "" +msgstr "Dokument visning felt" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "lagret visning" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "lagrede visninger" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "tittelen inneholder" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "innholdet inneholder" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN er" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "tilsvarendet er" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "dokumenttype er" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "er i innboksen" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "har tagg" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "har en tag" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "opprettet før" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "opprettet etter" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "opprettet år er" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "opprettet måned er" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "opprettet dag er" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "lagt til før" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "lagt til etter" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "endret før" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "endret etter" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "har ikke tagg" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "har ikke ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "tittel eller innhold inneholder" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "full tekst spørring" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" -msgstr "" +msgstr "mer som dette" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "har tags i" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN større enn" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN mindre enn" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "lagringssti er" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "har korrespondent i" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "har ingen korrespondent i" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "har dokumenttype i" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "har ikke dokumenttype i" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "har lagringssti i" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "har ikke lagringssti i" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "eier er" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "har eier i" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "har ikke eier" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "har ikke eier i" -#: documents/models.py:501 -msgid "has custom field value" -msgstr "" - -#: documents/models.py:502 -msgid "is shared by me" -msgstr "" - -#: documents/models.py:503 -msgid "has custom fields" -msgstr "" - #: documents/models.py:504 -msgid "has custom field in" -msgstr "" +msgid "has custom field value" +msgstr "har egendefinert feltverdi" #: documents/models.py:505 -msgid "does not have custom field in" -msgstr "" +msgid "is shared by me" +msgstr "er delt av meg" #: documents/models.py:506 -msgid "does not have custom field" -msgstr "" +msgid "has custom fields" +msgstr "har egendefinerte felt" -#: documents/models.py:516 +#: documents/models.py:507 +msgid "has custom field in" +msgstr "har egendefinert felt i" + +#: documents/models.py:508 +msgid "does not have custom field in" +msgstr "har ikke egendefinert felt i" + +#: documents/models.py:509 +msgid "does not have custom field" +msgstr "har ikke egendefinert felt" + +#: documents/models.py:519 msgid "rule type" msgstr "Type regel" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "verdi" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "filtrer regel" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "filtrer regler" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "Oppgave ID" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID for oppgaven som ble kjørt" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Bekreftet" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Hvis oppgaven bekreftes via frontend eller API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Filnavn for oppgave" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Navn på filen som oppgaven ble kjørt for" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Oppgavenavn" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Navn på Oppgaven som ble kjørt" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Oppgave tilstand" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Status for oppgaven som kjører" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Opprettet DatoTid" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Tidsstempel for når oppgaven ble opprettet i UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Startet DatoTid" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Tidsstempel for når oppgaven ble startet i UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Fullført tidsstempel" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Tidsstempel for når oppgaven ble fullført i UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Resultat data" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Dataene returnert av oppgaven" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Merknad til dokumentet" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "bruker" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "merknad" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "merknader" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Arkiv" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Original" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "utløp" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" -msgstr "" +msgstr "slug" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "del kobling" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" -msgstr "" +msgstr "del linker" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" -msgstr "" +msgstr "Tekst" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" -msgstr "" +msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" +msgstr "Dokument lenke" + +#: documents/models.py:812 +msgid "Select" msgstr "" -#: documents/models.py:820 +#: documents/models.py:824 msgid "data type" +msgstr "data type" + +#: documents/models.py:831 +msgid "extra data" msgstr "" -#: documents/models.py:828 +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" -msgstr "" +msgstr "egendefinert felt" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" -msgstr "" +msgstr "egendefinerte felt" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" -msgstr "" +msgstr "egendefinert felt instans" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" -msgstr "" +msgstr "egendefinert felt instanser" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" -msgstr "" +msgstr "Dokument lagt til" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" -msgstr "" +msgstr "Dokument oppdatert" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "API-opplasting" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Epost-henting" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" -msgstr "" +msgstr "Arbeidsflyt utløser-type" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "filtrer sti" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Bare last inn dokumenter med en sti som samsvarer med dette hvis angitt. Jokertegn angitt som * er tillatt. Saker er usensitive." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "filtrer filnavn" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Bare bruke dokumenter som samsvarer med dette filnavnet hvis angitt. Jokertegn som *.pdf eller *faktura* er tillatt. Saksfortegnet." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "filtrere dokumenter fra denne epostregelen" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" -msgstr "" +msgstr "har disse etikett(ene)" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" -msgstr "" +msgstr "har denne dokumenttypen" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" -msgstr "" +msgstr "har denne korrespondenten" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" -msgstr "" +msgstr "arbeidsflyt utløser" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "tildel tittel" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Tilordne en dokumenttittel, kan inkludere noen plassholdere, se dokumentasjon." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "tilordne denne taggen" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "tilordne denne dokumenttypen" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "Tildel denne korrespondenten" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "tilordne denne lagringsstien" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "tilordne denne eieren" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "gir lesetilgang til disse brukerne" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "gi lesetilgang til disse brukerne" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "gir skrivetilgang til disse brukerne" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "gi skrivetilgang til disse gruppene" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "ordre" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "Ugyldig regulært uttrykk: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Ugyldig farge." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Filtype %(type)s støttes ikke" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Ugyldig variabel oppdaget." @@ -1085,11 +1097,11 @@ msgstr "Fortsatt her?! Hmm, noe kan være galt." msgid "Here's a link to the docs." msgstr "Her er en lenke til dokkene." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Delingskobling ble ikke funnet." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Linken er utløpt." @@ -1146,23 +1158,23 @@ msgstr "Paperless" #: paperless/models.py:26 msgid "pdf" -msgstr "" +msgstr "pdf" #: paperless/models.py:27 msgid "pdfa" -msgstr "" +msgstr "pdfa" #: paperless/models.py:28 msgid "pdfa-1" -msgstr "" +msgstr "pdfa-1" #: paperless/models.py:29 msgid "pdfa-2" -msgstr "" +msgstr "pdfa-2" #: paperless/models.py:30 msgid "pdfa-3" -msgstr "" +msgstr "pdfa-3" #: paperless/models.py:39 msgid "skip" @@ -1178,7 +1190,7 @@ msgstr "" #: paperless/models.py:42 msgid "skip_noarchive" -msgstr "" +msgstr "skip_noarchive" #: paperless/models.py:50 msgid "never" @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Engelsk (US)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arabisk" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Afrikansk" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Hviterussisk" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Katalansk" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Tsjekkisk" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Dansk" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Tysk" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Gresk" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Engelsk (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Spansk" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Finsk" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Fransk" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italiensk" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxembourgsk" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norsk" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Nederlandsk" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polsk" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugisisk (Brasil)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugisisk" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Rumensk" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Russisk" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Slovakisk" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Slovenian" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Serbisk" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Svensk" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Tyrkisk" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ukrainsk" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Kinesisk forenklet" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx-administrasjon" @@ -1520,171 +1532,171 @@ msgstr "e-post regel" msgid "mail rules" msgstr "Epost regler" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Bare behandle vedlegg." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Behandle full e-post (med innebygde vedlegg i fil) som .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Behandle full e-post (med innebygde vedlegg i fil) som .eml + behandle vedlegg som separate dokumenter" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Behandle alle filer, inkludert \"inline\"-vedlegg." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Slett" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Flytt til angitt mappe" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Merk som lest og ikke behandle e-post" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Marker posten, ikke behandle flaggede meldinger" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Merk e-post med angitte tag, ikke bruk merkede meldinger" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Bruk emne som tittel" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Bruk vedlagte filnavn som tittel" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "Ikke tilordne tittel fra regel" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Ikke tildel en korrespondent" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Bruk e-postadresse" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Bruk navn (eller e-postadresse hvis det ikke er tilgjengelig)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Bruk tilsvarende valgt nedenfor" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "konto" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "mappe" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Undermapper må være atskilt av en skilletegn, ofte en punktum ('.') eller skråstrek ('/'), men den varierer fra e-postserver." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtrer fra" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filtrer til" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filtrer emne" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filtrer innhold" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "maksimal alder" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Spesifisert i dager" -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "vedlegg type" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Innebygde vedlegg inkluderer innebygde bilder, så det er best å kombinere dette alternativet med et filter." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "handling" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "parameter for handling" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Ytterligere parameter for handlingen valgt ovenfor, dvs. målmappen for flytting til mappehandling. Undermapper må separeres med punkter." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "tilordne tittel fra" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "Tildel korrespondent fra" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "emne" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "mottatt" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "behandlet" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "status" diff --git a/src/locale/pl_PL/LC_MESSAGES/django.po b/src/locale/pl_PL/LC_MESSAGES/django.po index e525cdeae..043bd3512 100644 --- a/src/locale/pl_PL/LC_MESSAGES/django.po +++ b/src/locale/pl_PL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-20 00:25\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokumenty" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "właściciel" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Brak" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Dowolne słowo" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Wszystkie słowa" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Dokładne dopasowanie" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Wyrażenie regularne" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Słowo rozmyte" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automatyczny" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "nazwa" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "dopasowanie" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "algorytm dopasowania" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "bez rozróżniania wielkości znaków" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "korespondent" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "korespondenci" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "kolor" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "jest tagiem skrzynki odbiorczej" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Zaznacza ten tag jako tag skrzynki odbiorczej: Wszystkie nowo przetworzone dokumenty będą oznaczone tagami skrzynki odbiorczej." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "znacznik" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "tagi" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "typ dokumentu" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "typy dokumentów" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "ścieżka" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "ścieżka zapisu" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "ścieżki zapisu" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Niezaszyfrowane" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Zaszyfrowane przy użyciu GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "tytuł" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "zawartość" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Surowe, tekstowe dane dokumentu. To pole jest używane głównie do wyszukiwania." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "mime type" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "suma kontrolna" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Suma kontrolna oryginalnego dokumentu." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "suma kontrolna archiwum" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Suma kontrolna zarchiwizowanego dokumentu." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "utworzono" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "zmodyfikowano" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "typ przechowywania" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "dodano" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "nazwa pliku" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Aktualna nazwa pliku w pamięci" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "nazwa pliku archiwum" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Aktualna nazwa pliku archiwum w pamięci" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "oryginalna nazwa pliku" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Oryginalna nazwa pliku w momencie jego przesyłania" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "numer seryjny archiwum" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Pozycja tego dokumentu w archiwum dokumentów fizycznych." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "dokument" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "dokumenty" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "debugowanie" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informacja" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "ostrzeżenie" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "błąd" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "krytyczne" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "grupa" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "wiadomość" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "poziom" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "log" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "dziennik" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "Tabela" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "Małe karty" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "Duże karty" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "Tytuł" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "Utworzono" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "Dodano" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "Tagi" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "Korespondent" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "Typ dokumentu" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "Ścieżka zapisu" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "Notatka" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "Właściciel" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "Współdzielony" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "ASN" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "pokaż na stronie głównej" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "pokaż na pasku bocznym" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "pole sortowania" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "sortuj malejąco" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "Pokaż rozmiar strony" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "Pokaż tryb wyświetlania" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "Wyświetlane pola dokumentu" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "zapisany widok" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "zapisane widoki" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "tytuł zawiera" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "zawartość zawiera" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "numer archiwum jest" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "korespondentem jest" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "typ dokumentu jest" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "jest w skrzynce odbiorczej" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "ma tag" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "ma dowolny tag" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "utworzony przed" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "utworzony po" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "rok utworzenia to" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "miesiąc utworzenia to" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "dzień utworzenia to" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "dodany przed" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "dodany po" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "zmodyfikowany przed" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "zmodyfikowany po" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "nie ma tagu" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "nie ma numeru archiwum" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "tytuł lub zawartość zawiera" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "zapytanie pełnotekstowe" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "więcej takich" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "ma znaczniki w" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN większy niż" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN mniejszy niż" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "ścieżką zapisu jest" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "ma korespondenta w" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "nie ma korespondenta w" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "ma typ dokumentu w" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "nie ma typu dokumentu w" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "ma ścieżkę zapisu w" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "nie ma ścieżki zapisu w" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "właściciel to" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "ma właściciela w" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "nie ma właściciela" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "nie ma właściciela w" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "ma wartość pola dodatkowego" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "jest udostępniony przeze mnie" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "posiada pola dodatkowe" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "ma dodatkowe pole w" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "nie ma dodatkowego pola w" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "nie ma pola dodatkowego" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "typ reguły" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "wartość" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "reguła filtrowania" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "reguły filtrowania" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID zadania" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "ID Celery dla zadania, które zostało uruchomione" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Potwierdzono" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Jeśli zadanie zostanie potwierdzone za pomocą interfejsu webowego lub API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Nazwa Pliku Zadania" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Nazwa pliku, dla którego zostało uruchomione zadanie" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Nazwa zadania" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Nazwa zadania, które zostało uruchomione" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Stan zadania" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Aktualny stan zadania" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Data i czas utworzenia" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Pole daty i czasu, gdy wynik zadania został utworzony w czasie UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Data i czas rozpoczęcia" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Pole daty i czasu, gdy zadanie rozpoczęto w czasie UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Data i czas zakończenia" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Pole daty i czasu, gdy zadanie zakończono w UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Dane wynikowe" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Dane zwrócone przez zadanie" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Notatka dla dokumentu" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "użytkownik" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "notatka" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "notatki" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Archiwum" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Oryginał" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "wygaśnięcie" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "adres URL" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "udostępnij link" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "udostępnij linki" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Ciąg znaków" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "Adres URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Data" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Wartość logiczna" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Liczba całkowita" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Liczba rzeczywista" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Format księgowy" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Link do dokumentu" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "typ danych" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "pole dodatkowe" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "pola dodatkowe" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "przypisane pole dodatkowe" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "przypisanych pól dodatkowych" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "Rozpoczęto pobieranie" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Dodano dokument" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Dokument zaktualizowano" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Folder pobierania" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Przesyłanie przez API" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Pobieranie E-mail" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "Typ wyzwalacza dla procesu" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "filtruj ścieżkę" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Pobiera tylko dokumenty ze ścieżką, która pasuje do wyspecyfikowanej. Symbol * jest dozwolony. Wielkość liter bez znaczenia." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "filtruj po nazwie pliku" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Przetwarzaj tylko dokumenty, które całkowicie pasują do tej nazwy pliku, jeśli jest podana. Wzorce dopasowania jak *.pdf lub *faktura* są dozwolone. Wielkość liter nie jest rozróżniana." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "filtruj dokumenty z tej reguły pocztowej" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "posiada wskazane tag(i)" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "posiada wskazany typ dokumentu" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "posiada wskazanego nadawcę" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "wyzwalacz procesu" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "wyzwalacze procesu" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "Przypisanie" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "Usuwanie" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "Typ akcji w procesie" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "przypisz tytuł" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Przypisz tytuł dokumentu, może zawierać zmienne, szczegóły w dokumentacji." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "przypisz ten tag" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "przypisz ten typ dokumentu" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "przypisz tego korespondenta" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "przypisz tą ścieżkę zapisu" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "przypisz tego właściciela" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "nadaj tym użytkownikom uprawnienia do przeglądania" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "nadaj tym grupom uprawnienia do przeglądania" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "nadaj tym użytkownikom uprawnienia do zmiany" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "nadaj tym grupom uprawnienia do zmiany" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "przypisz te pola dodatkowe" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "usuń ten tag/te tagi" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "usuń wszystkie tagi" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "usuń te typy dokumentów" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "usuń wszystkie typy dokumentów" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "usuń tych korespondentów" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "usuń wszystkich korespondentów" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "usuń te ścieżki zapisu" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "usuń wszystkie ścieżki zapisu" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "usuń tych właścicieli" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "usuń wszystkich właścicieli" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "usuń uprawnienia do wyświetlania dla tych użytkowników" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "usuń uprawnienia do wyświetlania dla tych grup" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "usuń uprawnienia do zmiany dla tych użytkowników" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "usuń uprawnienia do zmiany dla tych grup" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "usuń wszystkie uprawnienia" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "usuń te pola dodatkowe" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "usuń wszystkie pola dodatkowe" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "akcja procesu" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "akcje procesu" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "kolejność" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "wyzwalacze" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "akcje" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "włączony" @@ -920,16 +932,16 @@ msgstr "włączony" msgid "Invalid regular expression: %(error)s" msgstr "Nieprawidłowe wyrażenie regularne: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Nieprawidłowy kolor." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Typ pliku %(type)s nie jest obsługiwany" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Wykryto nieprawidłową zmienną." @@ -1086,11 +1098,11 @@ msgstr "Nadal tutaj?! Hmm, coś może być nie tak." msgid "Here's a link to the docs." msgstr "Oto link do dokumentacji." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Link nie został odnaleziony." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Link utracił ważność." @@ -1289,135 +1301,135 @@ msgstr "Logo aplikacji" msgid "paperless application settings" msgstr "paperless ustawienia aplikacji" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Angielski (USA)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "arabski" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Afrykanerski" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Białoruski" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Bułgarski" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Kataloński" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Czeski" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Duński" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Niemiecki" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Grecki" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Angielski (Wielka Brytania)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Hiszpański" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Fiński" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Francuski" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Węgierski" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Włoski" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "Japoński" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luksemburski" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norweski" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Holenderski" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polski" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugalski (Brazylia)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugalski" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Rumuński" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Rosyjski" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Słowacki" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Słoweński" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Serbski" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Szwedzki" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turecki" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ukraiński" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Chiński uproszczony" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Administracja Paperless-ngx" @@ -1521,171 +1533,171 @@ msgstr "reguła wiadomości" msgid "mail rules" msgstr "reguły wiadomości" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Przetwarzaj tylko załączniki." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Przetwarzaj pełną wiadomości mailową (z załącznikami osadzonymi w pliku) jako .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Przetwarzaj pełną wiadomości mailową (z załącznikami osadzonymi w pliku) jako .eml + przetwórz załączniki jako osobne dokumenty" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Przetwarzaj wszystkie pliki, łącznie z załącznikami „inline”." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Usuń" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Przenieś do określonego folderu" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Oznacz jako przeczytane, nie przetwarzaj przeczytanych wiadomości" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Oznacz wiadomość, nie przetwarzaj oznaczonych wiadomości" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Oznacz pocztę z podanym tagiem, nie przetwarzaj otagowanych wiadomości" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Użyj tematu jako tytułu" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Użyj nazwy pliku załącznika jako tytułu" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "Nie przypisuj tytułu z reguły" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Nie przypisuj korespondenta" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Użyj adresu e-mail" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Użyj nazwy nadawcy (lub adresu e-mail, jeśli jest niedostępna)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Użyj korespondenta wybranego poniżej" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "konto" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "katalog" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Podfoldery muszą być oddzielone ogranicznikiem, często kropką ('.') lub cięciem ('/'), ale różni się w zależności od serwera pocztowego." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtruj po nadawcy" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filtruj po odbiorcy" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filtruj po temacie" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filtruj po treści" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "uwzględnij nazwę załącznika wg filtru" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "wyklucz nazwę załącznika wg filtru" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Nie pobieraj dokumentów, które w pełni pasują do tej nazwy pliku, jeśli jest określona. Dozwolone są maski, takie jak *.pdf lub *faktura*. Bez uwzględniania wielkości liter." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "nie starsze niż" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "dni." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "typ załącznika" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Załączniki typu \"inline\" zawierają osadzone obrazy, więc najlepiej połączyć tę opcję z filtrem nazwy pliku." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "zakres pobierania" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "akcja" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "parametr akcji" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Dodatkowy parametr dla akcji wybranej powyżej, tj. docelowy folder akcji \"Przenieś do określonego folderu\". Podfoldery muszą być oddzielone kropkami." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "przypisz tytuł" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "przypisz korespondenta z" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Przypisz właścicela reguły do dokumentów" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "temat" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "otrzymano" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "przetworzono" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "status" diff --git a/src/locale/pt_BR/LC_MESSAGES/django.po b/src/locale/pt_BR/LC_MESSAGES/django.po index 6cc0fe858..3285de5a1 100644 --- a/src/locale/pt_BR/LC_MESSAGES/django.po +++ b/src/locale/pt_BR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:41\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -21,898 +21,910 @@ msgstr "" msgid "Documents" msgstr "Documentos" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "proprietário" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Nenhum" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Qualquer palavra" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Todas as palavras" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Correspondência exata" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Expressão regular" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automático" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "nome" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "correspondência" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "algoritmo de correspondência" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "diferencia maiúsculas de minúsculas" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "correspondente" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "correspondentes" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "cor" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "é etiqueta caixa de entrada" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Marca essa etiqueta como caixa de entrada: Todos os novos documentos consumidos terão as etiquetas de caixa de entrada." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "etiqueta" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "etiquetas" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "tipo de documento" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "tipos de documento" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "caminho" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "caminho de armazenamento" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "caminhos de armazenamento" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Não encriptado" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Encriptado com GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "título" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "conteúdo" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "O conteúdo de texto bruto do documento. Esse campo é usado principalmente para busca." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "tipo mime" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "soma de verificação" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "A soma de verificação original do documento." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "Soma de verificação de arquivamento." -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "A soma de verificação do documento arquivado." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "criado" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "modificado" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "tipo de armazenamento" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "adicionado" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "nome do arquivo" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Nome do arquivo atual armazenado" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "nome do arquivo para arquivamento" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Nome do arquivo para arquivamento armazenado" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "nome do arquivo original" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "O nome original do arquivo quando ele foi carregado" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "número de sério de arquivamento" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "A posição deste documento no seu arquivamento físico." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "documento" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "documentos" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "debug" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informação" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "aviso" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "erro" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "crítico" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "grupo" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "mensagem" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "nível" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "log" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "logs" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "Tipo de documento" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "Caminho de armazenamento" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "exibir no painel de controle" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "exibir no painel lateral" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "ordenar campo" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "odernar reverso" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "visualização" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "visualizações" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "título contém" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "conteúdo contém" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "NSA é" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "correspondente é" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "tipo de documento é" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "é caixa de entrada" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "contém etiqueta" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "contém qualquer etiqueta" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "criado antes de" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "criado depois de" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "ano de criação é" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "mês de criação é" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "dia de criação é" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "adicionado antes de" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "adicionado depois de" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "modificado antes de" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "modificado depois de" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "não tem etiqueta" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "não tem NSA" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "título ou conteúdo contém" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "pesquisa de texto completo" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "contém etiquetas em" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "NSA maior que" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "NSA menor que" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "caminho de armazenamento é" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "tem correspondente em" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "não tem correspondente em" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "possui categoria de documento em" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "não possui categoria de documento em" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "possui caminho de armazenamento em" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "não possui caminho de armazenamento em" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "o proprietário é" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "tem proprietário em" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "não tem proprietário" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "não tem proprietário em" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "compartilhado por mim" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "tipo de regra" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "valor" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "regra de filtragem" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "regras de filtragem" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID da tarefa" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "ID da Celery para a tarefa que foi executada" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Confirmado" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Se a tarefa é reconhecida através do frontend ou API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Nome do arquivo da tarefa" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Nome do arquivo para o qual a tarefa foi executada" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Nome da tarefa" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Nome da tarefa executada" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Estado da tarefa" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Estado atual da tarefa sendo executada" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Data/Hora de criação" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Campo Data/Hora quando o resultado da tarefa foi criado, em UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Data/Hora de início" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Campo Data/Hora quando a tarefa começou, em UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Data/Hora de conclusão" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Campo Data/Hora quando a tarefa foi concluída, em UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Dados de Resultado" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Os dados retornados pela tarefa" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Nota para o documento" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "usuário" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "nota" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "notas" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Arquivo" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Original" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "validade" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "slug" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "compartilhar link" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "compartilhar link" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Texto" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Data" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Booleano" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Número inteiro" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Ponto flutuante" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Unidade monetária" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Link do documento" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "tipo de dados" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "campo personalizado" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "campos personalizados" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "instância de campo personalizado" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "instâncias de campo personalizadas" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Documento Adicionado" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Documento Atualizado" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Pasta de Consumo" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Envio por API" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Busca em e-mail" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "filtro de caminho" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Consumir somente documentos que correspondem a este nome de arquivo se especificado.\n" "Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsculas e minúsculas." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "atribuir título" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Atribuir um título de documento, pode incluir alguns espaços reservados, consulta a documentação." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "atribuir esta etiqueta" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "atribuir este tipo de documento" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "atribuir este correspondente" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "atribuir este caminho de armazenamento" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "atribuir este proprietário" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "atribuir estes campos personalizados" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "ordem" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "gatilhos" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "ações" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -921,16 +933,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "Expressão regular inválida: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Cor inválida." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Tipo de arquivo %(type)s não suportado" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Variável inválida detectada." @@ -1086,11 +1098,11 @@ msgstr "Ainda aqui?! Hmm, algo pode estar errado." msgid "Here's a link to the docs." msgstr "Aqui está um link para a documentação." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Link de compartilhamento não encontrado." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "O link de compartilhamento expirou." @@ -1289,135 +1301,135 @@ msgstr "Logo do aplicativo" msgid "paperless application settings" msgstr "configurações do aplicativo paperless" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Inglês (EUA)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Árabe" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Africanês" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Bielorrusso" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Búlgaro" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Catalão" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Tcheco" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Dinamarquês" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Alemão" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Grego" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Inglês (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Espanhol" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Finlandês" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Francês" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Húngaro" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italiano" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "Japonês" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxemburguês" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norueguês" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Holandês" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polonês" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Português (Brasil)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Português" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Romeno" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Russo" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Eslovaco" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Esloveno" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Sérvio" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Sueco" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turco" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ucraniano" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Chinês Simplificado" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Administração do Paperless-ngx" @@ -1521,171 +1533,171 @@ msgstr "regra de e-mail" msgid "mail rules" msgstr "regras de e-mail" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Processar somente anexos." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Processar e-mail completo (com anexos incorporados no arquivo) como .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Processar e-mail completo (com anexos incorporados no arquivo) como .eml + processar anexos como documentos separados" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Processar todos os arquivos, incluindo anexos 'inline'." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Excluir" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Mover para pasta especificada" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Marcar como lido, não processar e-mails lidos" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Sinalizar o e-mail, não processar e-mails sinalizados" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Marcar o e-mail com a etiqueta especificada, não processar e-mails marcados" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Usar assunto como título" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Usar nome do arquivo anexo como título" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Não atribuir um correspondente" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Usar endereço de e-mail" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Usar nome (ou endereço de e-mail se não disponível)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Usar correspondente selecionado abaixo" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "conta" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "pasta" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Subpastas devem ser separadas por um delimitador, muitas vezes um ponto ('.') ou uma barra ('/'), mas varia de acordo com o servidor de e-mail." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtrar de" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filtrar assunto" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filtrar corpo" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "idade máxima" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Especificada em dias." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "tipo de anexo" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Anexos inline incluem imagens inseridas, por isso é melhor combinar essa opção com um filtro de nome de arquivo." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "escopo do consumo" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "ação" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "parâmetro da ação" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Parâmetro adicional para a ação selecionada acima, por exemplo: a pasta de destino da ação de mover pasta. Subpastas devem ser separadas por pontos." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "atribuir título de" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "atribuir correspondente de" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "assunto" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "recebido" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "processado" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "status" diff --git a/src/locale/pt_PT/LC_MESSAGES/django.po b/src/locale/pt_PT/LC_MESSAGES/django.po index a945873ea..28b0fda31 100644 --- a/src/locale/pt_PT/LC_MESSAGES/django.po +++ b/src/locale/pt_PT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-14 00:25\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Language: pt_PT\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Documentos" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "dono" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Nenhum" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Qualquer palavra" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Todas as palavras" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Detecção exata" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Expressão regular" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Palavra difusa" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automático" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "nome" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "correspondência" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "algoritmo correspondente" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "é insensível" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "correspondente" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "correspondentes" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "cor" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "é etiqueta de novo" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Marca esta etiqueta como uma etiqueta de entrada. Todos os documentos recentemente consumidos serão etiquetados com a etiqueta de entrada." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "etiqueta" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "etiquetas" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "tipo de documento" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "tipos de documento" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "caminho" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "local de armazenamento" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "locais de armazenamento" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Não encriptado" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Encriptado com GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "título" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "conteúdo" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Os dados de texto, em cru, do documento. Este campo é utilizado principalmente para pesquisar." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "tipo mime" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "soma de verificação" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "A soma de verificação do documento original." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "arquivar soma de verificação" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "A soma de verificação do documento arquivado." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "criado" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "modificado" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "tipo de armazenamento" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "adicionado" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "nome de ficheiro" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Nome do arquivo atual no armazenamento" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "nome do ficheiro de arquivo" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Nome do arquivo atual em no armazenamento" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "nome do ficheiro original" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "O nome original do arquivo quando foi carregado" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "numero de série de arquivo" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "A posição do documento no seu arquivo físico de documentos." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "documento" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "documentos" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "depurar" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informação" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "aviso" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "erro" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "crítico" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "grupo" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "mensagem" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "nível" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "registo" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "registos" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "Tabela" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "Cartões Pequenos" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "Cartões Grandes" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "Título" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "Criado" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "Adicionado" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "Etiquetas" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "Correspondente" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "Tipo de Documento" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "Caminho de armazenamento" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "Nota" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "Proprietário" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "Partilhado" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "ASN" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "exibir no painel de controlo" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "mostrar na navegação lateral" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "ordenar campo" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "ordenar inversamente" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "Exibir tamanho da página" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "Modo de visualização" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "Exibir Campos de Documento" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "vista guardada" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "vistas guardadas" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "o título contém" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "o conteúdo contém" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "O NSA é" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "o correspondente é" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "o tipo de documento é" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "está na entrada" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "tem etiqueta" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "tem qualquer etiqueta" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "criado antes" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "criado depois" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "ano criada é" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "mês criado é" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "dia criado é" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "adicionada antes" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "adicionado depois de" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "modificado antes de" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "modificado depois de" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "não tem etiqueta" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "não possui um NSA" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "título ou conteúdo contém" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "consulta de texto completo" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "mais como este" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "tem etiquetas em" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN maior que" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN menor que" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "local de armazenamento é" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "tem correspondente em" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "não tem correspondente em" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "tem categoria de documento em" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "não tem categoria de documento em" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "tem caminho de armazenamento em" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "não possui caminho de armazenamento em" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "o proprietário é" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "tem proprietário em" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "não tem proprietário" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "não tem proprietário em" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "tem valor de campo personalizado" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "é partilhado por mim" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "personalizado" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "tem um campo personalizado em" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "não tem um campo personalizado" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "não tem um campo personalizado" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "tipo de regra" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "valor" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "regra de filtragem" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "regras de filtragem" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID da tarefa" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "ID do Celery para a tarefa que foi executada" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Confirmado" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Se a tarefa é reconhecida através do frontend ou API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Nome do Ficheiro da Tarefa" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Nome do ficheiro pelo qual a tarefa foi executada" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Nome da Tarefa" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Nome da Tarefa que foi executada" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Estado da Tarefa" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Estado atual da tarefa em execução" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Data de Criação" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Campo data/hora quando o resultado da tarefa foi criado, em UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Data de Início" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Campo Data/Hora quando a tarefa foi iniciada, em UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Data de conclusão" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Campo data/hora quando a tarefa foi concluída, em UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Resultados" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Os dados devolvidos pela tarefa" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Nota do documento" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "utilizador" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "nota" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "notas" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Arquivo" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Original" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "validade" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "slug" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "partilhar ligação" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "compartilhar links" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Texto" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Data" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Booleano" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Inteiro" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Virgula flutuante" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Moeda" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Endereço do Documento" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "tipo de dados" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "campo personalizado" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "campos personalizados" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "instância de campo personalizado" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "instâncias de campo personalizado" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "Consumo Iniciado" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Documento Adicionado" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Documento Atualizado" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Pasta de consumo" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Envio de Api" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Obter E-mail" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "Tipo de acionamento de fluxo de trabalho" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "caminho do filtro" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Apenas consume documentos com um caminho que combina com o especificado. Wildcards especificados como * são permitidos. Não faz distinção entre maiúsculas de minúsculas." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "filtro do nome do ficheiro" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Consumir apenas documentos que correspondam inteiramente ao nome de arquivo se especificado. Genéricos como *.pdf ou *fatura* são permitidos. Não é sensível a letras maiúsculas/minúsculas." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "filtrar documentos desta regra de e-mail" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "tem esta(s) tag(s)" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "tem esta categoria de documento" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "Atribuição" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "Remoção" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "atribuir título" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Atribuir um título de documento, pode incluir alguns placeholders, consulte a documentação." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "atribuir esta etiqueta" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "atribuir este tipo de documento" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "atribuir este correspondente" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "atribuir este caminho de armazenamento" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "conceder permissões de visualização para estes utilizadores" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "conceder permissões de visualização para estes grupos" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "remover todos os tipos de documentos" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "remover todos os correspondentes" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "remover todos os donos" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "remover todas as permissões" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "remover esses campos personalizados" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "remover todos os campos personalizados" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "ordem" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "ações" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "ativado" @@ -920,16 +932,16 @@ msgstr "ativado" msgid "Invalid regular expression: %(error)s" msgstr "Expressão regular inválida: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Cor invalida." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Tipo de arquivo %(type)s não suportado" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Variável inválida detetada." @@ -1085,11 +1097,11 @@ msgstr "Ainda aqui?! Hmm, algo pode estar errado." msgid "Here's a link to the docs." msgstr "Aqui está uma hiperligação para os documentos." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "O link de partilha não foi encontrado." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "O link de partilha expirou." @@ -1288,135 +1300,135 @@ msgstr "Logótipo da aplicação" msgid "paperless application settings" msgstr "configurações do paperless" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Inglês (EUA)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Árabe" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Africano" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Bielorrusso" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Búlgaro" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Catalão" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Checo" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Dinamarquês" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Deutsch" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Grego" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Inglês (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Espanhol" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Finlandês" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Français" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Húngaro" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italiano" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "Japonês" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxemburguês" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norueguês" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Nederlandse" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polaco" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Português (Brasil)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Português" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Romeno" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Russo" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Eslovaco" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Esloveno" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Sérvio" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Sueco" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turco" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ucraniano" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Chinês Simplificado" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Administração do Paperless-ngx" @@ -1520,171 +1532,171 @@ msgstr "regra de correio" msgid "mail rules" msgstr "regras de correio" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Processar anexos apenas." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Processar email completo (com anexos incorporados no arquivo) como .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Processar email completo (com anexos incorporados no ficheiro) como .eml + processar anexos como docs separados" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Processar todos os ficheiros, incluindo ficheiros 'embutidos (inline)'." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Excluir" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Mover para uma diretoria específica" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Marcar como lido, não processar emails lidos" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Marcar o email, não processar emails marcados" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Aplicar tag especificada ao email, não processar emails com tags" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Utilizar o assunto como título" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Utilizar o nome do anexo como título" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "Não atribuir título a partir da regra" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Não atribuir um correspondente" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Utilizar o endereço de email" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Utilizar nome (ou endereço de email se não disponível)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Utilizar o correspondente selecionado abaixo" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "conta" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "directoria" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Subpastas devem ser separadas por delimitador, como um ponto ('.') ou barra ('/'), varia de acordo com servidor de correio." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtrar de" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filtrar para" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filtrar assunto" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filtrar corpo" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "filtrar nome do arquivo anexo" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "filtrar nome do arquivo anexo" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "idade máxima" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Especificado em dias." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "tipo de anexo" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Anexos embutidos incluem imagens incorporadas, por isso é melhor combinar esta opção com um filtro de nome do arquivo." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "âmbito de consumo" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "ação" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "parâmetro de ação" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Parâmetros adicionais para a ação selecionada acima, isto é, a pasta alvo da ação mover para pasta. Sub-pastas devem ser separadas por pontos." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "atribuir titulo de" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "atribuir correspondente de" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Atribuir o proprietário da regra aos documentos" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "assunto" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "recebido" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "processado" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "estado" diff --git a/src/locale/ro_RO/LC_MESSAGES/django.po b/src/locale/ro_RO/LC_MESSAGES/django.po index 6a92747b3..9918d0703 100644 --- a/src/locale/ro_RO/LC_MESSAGES/django.po +++ b/src/locale/ro_RO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:41\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Language: ro_RO\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Documente" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "proprietar" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Nimic" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Orice cuvânt" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Toate cuvintele" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Potrivire exactă" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Expresie regulată" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "nume" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "potrivire" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "algoritm de potrivire" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "nu ține cont de majuscule" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "corespondent" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "corespondenți" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "culoare" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "este etichetă inbox" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Marchează aceasta eticheta ca etichetă inbox: Toate documentele nou consumate primesc aceasta eticheta." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "etichetă" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "etichete" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "tip de document" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "tipuri de document" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "cale" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "cale de stocare" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "căi de stocare" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Necriptat" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Criptat cu GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "titlu" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "conținut" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Textul brut al documentului. Acest camp este folosit in principal pentru căutare." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "tip MIME" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "sumă de control" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Suma de control a documentului original." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "suma de control a arhivei" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Suma de control a documentului arhivat." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "creat" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "modificat" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "tip de stocare" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "adăugat" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "nume fișier" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Numele curent al fișierului stocat" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "nume fișier arhiva" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Numele curent al arhivei stocate" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "numele original al fișierului" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Numele original al fișierului când a fost încărcat" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "număr serial in arhiva" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Poziția acestui document in arhiva fizica." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "document" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "documente" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "depanare" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informații" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "avertizare" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "eroare" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "critic" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "grup" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "mesaj" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "nivel" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "jurnal" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "jurnale" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "afișează pe tabloul de bord" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "afișează in bara laterala" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "sortează camp" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "sortează invers" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "vizualizare" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "vizualizări" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "titlul conține" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "conținutul conține" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "Avizul prealabil de expediție este" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "corespondentul este" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "tipul documentului este" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "este în inbox" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "are eticheta" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "are orice eticheta" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "creat înainte de" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "creat după" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "anul creării este" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "luna creării este" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "ziua creării este" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "adăugat înainte de" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "adăugat după" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "modificat înainte de" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "modificat după" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "nu are etichetă" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "nu are aviz prealabil de expediție" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "titlul sau conținutul conține" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "query fulltext" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "are etichete în" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "calea de stocare este" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "are corespondent în" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "nu are corespondent în" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "are tip de document în" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "nu are tip document în" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "are cale de stocare în" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "nu are cale de stocare în" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "proprietarul este" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "are proprietar în" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "nu are proprietar" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "nu are proprietar în" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "tip de regula" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "valoare" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "regulă de filtrare" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "reguli de filtrare" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID Sarcină" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "ID-ul sarcinii Celery care a fost rulată" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Confirmat" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Dacă sarcina este confirmată prin frontend sau API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Numele fișierului sarcină" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Numele fișierului pentru care sarcina a fost executată" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Nume sarcină" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Numele sarcinii care a fost executată" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Stare sarcină" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Stadiul actual al sarcinii în curs de desfășurare" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Data creării" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Data începerii" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Data finalizării" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Datele rezultatului" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Datele returnate de sarcină" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Notă pentru document" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "utilizator" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "notă" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "note" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Arhivă" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Original" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "expirare" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "link de partajare" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "link-uri de partajare" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Şir de caractere" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "Adresă URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Dată" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Boolean" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Număr întreg" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Număr zecimal" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Link document" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "tip date" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Consumă doar documentele care se potrivesc în întregime cu acest nume de fișier, dacă este specificat. Simbolul * ține locul oricărui șir de caractere. Majusculele nu contează." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "atribuie această etichetă" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "atribuie acest tip" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "atribuie acest corespondent" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "ordonează" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "Expresie regulată invalida: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Culoare invalidă." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Tip de fișier %(type)s nesuportat" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "" @@ -1085,11 +1097,11 @@ msgstr "" msgid "Here's a link to the docs." msgstr "" -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "" @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Engleză (Americană)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Cehă" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Daneză" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Germană" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Engleză (Britanică)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Spaniolă" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Franceză" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italiană" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxemburgheză" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Olandeză" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Poloneză" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugheză (Brazilia)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugheză" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Română" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Rusă" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Suedeză" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Administrare Paperless-ngx" @@ -1520,171 +1532,171 @@ msgstr "regulă email" msgid "mail rules" msgstr "reguli email" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Procesează doar atașamentele." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Procesează toate fișierele, inclusiv atașamentele „inline”." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Șterge" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Mută în directorul specificat" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Marchează ca citit, nu procesa email-uri citite" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Marchează, nu procesa email-uri marcate" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Utilizează subiectul ca titlu" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Utilizează numele fișierului atașat ca titlu" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Nu atribui un corespondent" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Folosește adresa de email" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Folosește numele (dacă nu exista, folosește adresa de email)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Folosește corespondentul selectat mai jos" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "cont" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "director" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "" -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtrează de la" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filtrează subiect" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filtrează corpul email-ului" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "vârsta maximă" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Specificată in zile." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "tip atașament" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Atașamentele \"inline\" includ și imaginile încorporate, deci această opțiune funcționează cel mai bine combinată cu un filtru pentru numele fișierului." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "acţiune" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "parametru acțiune" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Parametru adițional pentru acțiunea definită mai sus (ex. directorul în care să se realizeze o mutare). Subdosarele trebuie separate prin puncte." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "atribuie titlu din" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "atribuie corespondent din" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "" diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po index 33014b2cd..d9192be54 100644 --- a/src/locale/ru_RU/LC_MESSAGES/django.po +++ b/src/locale/ru_RU/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-03 12:10\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Документы" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "владелец" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Никакой" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Любые слова" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Все слова" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Точное соответствие" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Регулярное выражение" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "\"Нечёткий\" режим" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Автоматически" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "имя" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "соответствие" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "алгоритм сопоставления" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "без учёта регистра" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "корреспондент" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "корреспонденты" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "цвет" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "это входящий тег" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Отметить этот тег как «Входящий»: все вновь добавленные документы будут помечены тегами «Входящие»." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "тег" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "теги" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "тип документа" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "типы документов" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "путь" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "путь к хранилищу" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "пути хранения" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "не зашифровано" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Зашифровано с помощью GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "заголовок" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "содержимое" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Это поле используется в основном для поиска." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "тип Mime" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "контрольная сумма" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Контрольная сумма оригинального документа." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "контрольная сумма архива" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Контрольная сумма архивного документа." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "создано" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "изменено" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "тип хранилища" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "добавлено" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "имя файла" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Текущее имя файла в хранилище" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "имя файла архива" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Текущее имя файла архива в хранилище" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "исходное имя файла" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Исходное имя файла при его загрузке" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "архивный номер (АН)" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Позиция этого документа в вашем физическом архиве документов." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "документ" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "документы" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "отладка" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "информация" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "предупреждение" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "ошибка" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "критическая" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "группа" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "сообщение" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "уровень" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "журнал" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "логи" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "Таблица" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "Маленькие карточки" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "Большие карточки" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "Добавлено" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "Теги" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "Тип документа" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "Заметка" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "Владелец" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "показать на панели" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "показать в боковой панели" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "Поле сортировки" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "обратная сортировка" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "сохранённое представление" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "сохраненные представления" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "заголовок содержит" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "содержимое содержит" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "АН" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "корреспондент" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "тип документа" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "во входящих" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "есть тег" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "есть любой тег" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "создан до" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "создан после" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "год создания" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "месяц создания" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "день создания" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "добавлен до" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "добавлен после" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "изменен до" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "изменен после" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "не имеет тега" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "не имеет архивного номера" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "Название или содержимое включает" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "полнотекстовый запрос" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "больше похожих" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "имеет этикетки в" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "АН больше чем" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "АН меньше чем" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "путь хранения является" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "имеет корреспондента в" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "не имеет корреспондента в" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "имеет тип документа в" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "не имеет тип документа в" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "имеет путь хранения в" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "не имеет пути хранения в" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "владелец" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "имеет владельца в" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "не имеет владельца" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "не имеет владельца в" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "имеет спецзначение поля" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "делится мною" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "Тип правила" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "значение" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "Правило фильтрации" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "правила фильтрации" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ИД задачи" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "ИД Celery для задачи, которая была выполнена" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Подтверждено" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Если задание подтверждено через внешний интерфейс или API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Имя файла задачи" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Имя файла, для которого была запущена задача" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Название задачи" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Название задачи, которая была запущена" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Состояние задачи" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Текущее состояние выполняемой задачи" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Дата и время создания" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Поле времени даты, когда результат задачи был создан в формате UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Дата и время начала" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Поле времени и даты начала выполнения задачи в формате UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Дата и время завершения" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Поле времени и даты, когда задание было выполнено в формате UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Данные результата" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Данные, возвращаемые задачей" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Заметка для документа" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "пользователь" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "заметка" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "заметки" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Архив" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Оригинал" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "истечение" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "динамический идентификатор" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "ссылка для обмена" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "ссылки для обмена" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Строка" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "Ссылка" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Дата" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Логическое значение" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Целое число" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "С плавающей точкой" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Валюта" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Ярлык на документ" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "тип данных" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "спецполе" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "спецполя" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "спецобразец поля" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "спецобразцы поля" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "Обработка документа начата" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Документ добавлен" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Документ обновлен" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Обработка из папки" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "API загрузка" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Получить почту" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "Tип пускового механизма автоматизации" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "фильтр путя" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Обрабатывает только документы, соответствующие этому пути если он указан. Допускаются такие символы, как *. Верхний и нижний регистр не учитываются." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "фильтр имя файла" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Обрабатывать только документы, которые полностью совпадают с именем файла (если оно указано). Маски, например *.pdf или *счет*, разрешены. Без учёта регистра." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "фильтр документов из этого правила электронной почты" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "имеет эти этикетки" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "имеет этот тип документа" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "имеет этого корреспондента" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "пусковой механизм автоматизации" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "пусковые механизмы автоматизации" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "Задание" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "Удаление" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "Тип действия автоматизации" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "присвоить заголовок" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Назначьте заголовок документа. Оно может содержать заполнители, см. документацию." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "назначить этот тег" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "назначить этот тип документа" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "назначить этого корреспондента" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "назначить этот путь хранения" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "назначить этого владельца" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "предоставьте права на отображение этим пользователям" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "предоставьте права на отображение этим группам" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "предоставьте права на редактирование этим пользователям" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "предоставьте права на редактирование этим группам" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "назначьте эти спецполя" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "удалить выбранные таг(и)" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "удалить все таги" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "удалить эти тип(ы) документов" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "удалить всех владельцев" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "удалить все разрешения" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "действия автоматизации" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "действия автоматизации" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "порядок" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "пусковые механизмы" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "действия" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "включено" @@ -920,16 +932,16 @@ msgstr "включено" msgid "Invalid regular expression: %(error)s" msgstr "неверное регулярное выражение: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Неверный цвет." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Тип файла %(type)s не поддерживается" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Обнаружена неверная переменная." @@ -1085,11 +1097,11 @@ msgstr "Все еще здесь?! Возможно что-то не так." msgid "Here's a link to the docs." msgstr "Вот ссылка на документацию." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Ссылка для обмена не найдена." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Срок действия ссылки для обмена истёк." @@ -1288,135 +1300,135 @@ msgstr "Логотип приложения" msgid "paperless application settings" msgstr "настройки приложения paperless" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Английский (США)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Арабский" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Африкаанс" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Белорусский" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Болгарский" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Каталонский" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Чешский" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Датский" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Немецкий" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Греческий" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Английский (Великобритании)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Испанский" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Финский" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Французский" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Венгерский" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Итальянский" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "Японский" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Люксембургский" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Норвежский" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Датский" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Польский" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Португальский (Бразилия)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Португальский" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Румынский" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Русский" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Словацкий" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Словенский" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Сербский" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Шведский" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Турецкий" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Украинский" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Китайский упрощенный" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Администрирование Paperless-ngx" @@ -1520,171 +1532,171 @@ msgstr "правило почты" msgid "mail rules" msgstr "правила почты" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Обрабатывать только вложения." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Обработка всей почты (со вложенными файлами) как .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Обработка всей почты (со вложенными файлами) как .eml + обрабатывать вложения как отдельные документы" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Обрабатывать все файлы, включая 'встроенные' вложения." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Удалить" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Переместить в указанную папку" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Пометить как прочитанное, не обрабатывать прочитанные письма" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Пометить почту, не обрабатывать помеченные письма" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Отметить почту указанной этикеткой, не обрабатывать этикетированные письма" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Тема в качестве заголовка" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Использовать имя вложенного файла как заголовок" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "Использовать тему в качестве заголовки" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Не назначать корреспондента" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Использовать email адрес" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Использовать имя (или адрес электронной почты, если недоступно)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Использовать корреспондента, выбранного ниже" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "Учётная запись" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "каталог" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Подпапки должны быть отделены разделителем, часто точкой ('.') или косой чертой ('/'), но это зависит от почтового сервера." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "фильтр по отправителю" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "фильтр по" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "фильтр по теме" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "фильтр по тексту сообщения" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "фильтр по именю файла вложения (включительно)" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "фильтр по именю файла вложения (исключительно)" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Не используйте документы, полностью совпадающие с этим именем, если оно указано. Допускаются подстановочные знаки, такие как *.pdf или *invoice*. Нечувствительность к регистру." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "Максимальный возраст" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Указывается в днях." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "Тип вложения" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Вложенные вложения включая встраиваемые изображения. Лучше совместить эту опцию с фильтром по имени вложения." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "объем обработки" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "действие" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "параметр действия" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Дополнительный параметр для указанного выше действия, то есть целевая папка операции перемещения в папку. Вложенные папки должны быть разделены точками." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "назначить заголовок из" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "назначить корреспондента из" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Назначить документам правилавладелеца" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "тема" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "получено" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "обработано" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "статус" diff --git a/src/locale/sk_SK/LC_MESSAGES/django.po b/src/locale/sk_SK/LC_MESSAGES/django.po index 6f92afbd5..96403da6c 100644 --- a/src/locale/sk_SK/LC_MESSAGES/django.po +++ b/src/locale/sk_SK/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-02 12:08\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Slovak\n" "Language: sk_SK\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokumenty" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "vlastník" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Žiadny" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Akékoľvek slovo" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Všetky slová" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Presná zhoda" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Regulárny výraz" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "meno" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "zhoda" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "algoritmus zhody" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "nerozlišuje veľké a malé písmená" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "korešpondent" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "korešpondenti" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "farba" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "je štítok schránky" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Označí tento štítok ako štítok doručenej pošty: Všetky novo rozpoznané dokumenty budú označené štítkami doručenej pošty." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "štítok" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "štítky" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "typ dokumentu" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "typy dokumentov" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "cesta" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "cesta k úložisku" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "cesty k úložisku" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Nešifrované" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Šifrované pomocou GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "názov" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "obsah" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Nespracované, iba textové údaje dokumentu. Toto pole sa primárne používa na vyhľadávanie." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "MIME typ" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "kontrolný súčet" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Kontrolný súčet originálneho dokumentu." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "kontrolný súčet archívu" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Kontrolný súčet archivovaného dokumentu." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "vytvorené" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "upravené" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "typ úložiska" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "pridané" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "názov súboru" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Aktuálny názov dokumentu v úložisku" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "názov archivovaného súboru" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Aktuálny názov archívneho súboru v úložisku" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "pôvodný názov súboru" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Pôvodný názov súboru pri nahratí" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "sériové číslo archívu" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Umiestnenie dokumentu vo vašom fyzickom archíve." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "dokument" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "dokumenty" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "ladenie" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informácia" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "upozornenie" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "chyba" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kritické" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "skupina" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "správa" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "úroveň" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "log" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "logy" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "zobraziť na hlavnom paneli" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "zobraziť na bočnom paneli" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "zoraďovacie pole" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "zoradiť opačne" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "uložené zobrazenie" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "uložené zobrazenia" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "názov obsahuje" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "dokument obsahuje" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN je" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "odosielateľ je" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "typ dokumentu je" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "je v doručenej pošte" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "má štítok" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "má niektorý zo štítkov" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "vytvorený pred" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "vytvorený po" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "rok vytvorenia je" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "mesiac vytvorenia je" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "deň vytvorenia je" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "pridaný pred" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "pridaný po" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "zmenený pred" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "zmenený po" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "nemá štítok" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "nemá ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "názov alebo dokument obsahuje" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "fulltextový dopyt" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "má štítok v" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN väčšie ako" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN menšie ako" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "cesta k úložisku je" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "typ pravidla" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "hodnota" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "pravidlo filtra" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "pravidlá filtra" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID úlohy" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID úlohy, ktorá bola vykonaná" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Potvrdené" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Ak je úloha potvrdená prostredníctvom rozhrania alebo API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Názov súboru úlohy" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Názov súboru, na ktorom bola vykonaná úloha" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Názov úlohy" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Názov vykonanej úlohy" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Stav úlohy" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Aktuálny stav bežiacej úlohy" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Dátum a čas vytvorenia" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Dátum a čas výsledku úlohy v UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Dátum a čas začiatku" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Dátum a čas začiatku úlohy v UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Dátum a čas skončenia" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Dátum a čas skončenia úlohy v UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Výsledné dáta" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Výsledné dáta úlohy" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "užívateľ" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "poznámky" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Spracuje iba dokumenty so zhodným názvom, ak je vyplnený. Použitie zástupných znakov ako *.pdf alebo *invoice* je povolené. Rozoznáva malé a veľké písmená." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "priradiť tento štítok" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "priradiť tento typ dokumentu" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "priradiť tohto odosielateľa" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "poradie" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "Neplatný regulárny výraz: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Neplatná farba." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Typ súboru %(type)s nie je podporovaný" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Zistená neplatná premenná." @@ -1085,11 +1097,11 @@ msgstr "Ešte stále tu?! Hmm, niečo sa možno prihodilo." msgid "Here's a link to the docs." msgstr "Tu je odkaz na dokumentáciu." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "" @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Angličtina (US)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arabčina" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Bieloruština" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Catalan" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Čeština" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Dánčina" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Nemčina" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Angličtina (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Španielčina" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Finnish" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Francúzština" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Taliančina" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxemburčina" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Holandčina" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polština" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugalčina (Brazília)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugalčina" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Rumunčina" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Ruština" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Slovenčina" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Slovinčina" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Srbčina" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Švédčina" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turečtina" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Čínština (zjednodušená)" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Správa Paperless-ngx" @@ -1520,171 +1532,171 @@ msgstr "e-mailové pravidlo" msgid "mail rules" msgstr "e-mailové pravidlá" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Spracovať iba prílohy." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Spracovať celý e-mail (s prílohami vloženými do súboru) ako .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Spracovať celý e-mail (s prílohami vloženými do súboru) ako .eml + prílohy spracovať ako samostatné dokumenty" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Spracovať všetky súbory, vrátane 'inline' príloh." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Vymazať" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Presunúť do vybraného priečinka" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Označiť ako prečítané, nespracovať prečítané e-maily" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Označiť e-mail, nespracovať označené e-maily" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Priradiť e-mailu vybraný štítok, nespracovať e-maily so štítkami" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Použiť predmet ako názov" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Použiť názov súboru prílohy ako názov" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Nepriradiť odosielateľa" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Použiť e-mailovú adresu" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Použiť meno (alebo e-mailovú adresu, ak nie je vyplnené)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Použiť odosielateľa zvoleného nižšie" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "účet" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "priečinok" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Podpriečinky musia byť oddelené oddeľovačom, najčastejšie bodkou ('.') alebo lomítkom ('/'), podľa mailového servera." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtrovať od" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filtrovať do" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filtrovať predmet" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filtrovať podľa obsahu" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "maximálny vek" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Určené v dňoch." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "typ prílohy" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "'Inline' prílohy obsahujú vložené obrázky, preto je najvhodnejšie kombinovať túto možnosť s filtrovaním podľa názvu súboru." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "rozsah spracovania" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "akcia" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "parameter akcie" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Prídavný parameter akcie vybranej vyššie, konkrétne cieľový priečinok akcie presunutia priečinku. Podpriečinky musia byť oddelené bodkami." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "priradiť názov podľa" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "priradiť odosielateľa podľa" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "predmet" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "doručené" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "spracované" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "stav" diff --git a/src/locale/sl_SI/LC_MESSAGES/django.po b/src/locale/sl_SI/LC_MESSAGES/django.po index 558c9181f..80cffa717 100644 --- a/src/locale/sl_SI/LC_MESSAGES/django.po +++ b/src/locale/sl_SI/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:41\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "Language: sl_SI\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokumenti" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "lastnik" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Brez" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Katerakoli beseda" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Vse besede" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Točno ujemanje" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Regularni izraz" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "ime" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "ujemanje" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "algoritem ujemanja" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "brez razlikovanje velikosti črk" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "dopisnik" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "dopisniki" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "barva" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "je vhodna oznaka" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Označi to oznako kot vhodno oznako: vsi na novo obdelani dokumenti bodo označeni z vhodno oznako." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "oznaka" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "oznake" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "vrsta dokumenta" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "vrste dokumentov" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "pot" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "pot shranjevanja" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "poti shranjevanja" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Nešifrirano" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Šifrirano z GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "naslov" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "vsebina" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Neobdelani besedilni podatki dokumenta. To polje se uporablja predvsem za iskanje." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "vrsta mime" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "kontrolna vsota" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Kontrolna vsota izvirnega dokumenta." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "arhivska kontrolna vsota" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Kontrolna vsota arhiviranega dokumenta." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "ustvarjeno" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "spremenjeno" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "vrsta shrambe" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "dodano" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "ime datoteke" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Trenutno ime dokumenta v shrambi" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "ime arhivske datoteke" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Trenutno ime arhivske datoteke v shrambi" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "izvirno ime datoteke" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Izvirno ime datoteke, ko je bila naložena" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "arhivska serijska številka" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Položaj tega dokumenta v vašem fizičnem arhivu dokumentov." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "dokument" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "dokumenti" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "razhroščevanje" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informacija" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "opozorilo" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "napaka" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kritično" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "skupina" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "sporočilo" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "nivo" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "dnevnik" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "dnevniki" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "prikaži na pregledni plošči" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "prikaži v stranski vrstici" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "polje za razvrščanje" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "razvrsti obratno" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "shranjeni pogled" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "shranjeni pogledi" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "naslov vsebuje" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "vsebina vsebuje" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN je" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "dopisnik je" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "vrsta dokumenta je" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "je v prejetem" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "ima oznako" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "ima katero koli oznako" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "ustvarjeno pred" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "ustvarjeno po" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "leto nastanka" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "mesec nastanka" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "dan nastanka" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "dodano pred" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "dodano po" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "spremenjeno pred" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "spremenjeno po" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "nima oznake" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "nima ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "naslov ali vsebina vsebujeta" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "polnobesedilna poizvedba" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "ima oznake" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN večje kot" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN manjši od" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "pot shranjevanja je" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "ima dopisnika v" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "nima dopisnika v" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "ima vrsto dokumenta v" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "nima vrste dokumenta v" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "ima pot za shranjevanje v" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "nima poti za shranjevanje v" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "lastnik je" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "ima lastnika v" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "brez lastnika" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "nima lastnika v" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "vrsta pravila" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "vrednost" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "filtriraj pravilo" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "filtriraj pravila" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID opravila" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID opravila, ki je bilo izvedeno" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Potrjeno" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Če je opravilo potrjeno prek uporabniškega vmesnika ali API-ja" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Ime datoteke opravila" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Ime datoteke, za katero je bilo izvedeno opravilo" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Ime opravila" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Ime opravila, ki je bilo izvedeno" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Status opravila" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Trenutno stanje opravila, ki se izvaja" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Ustvarjeno DatumČas" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Polje z datumom, ko je bil rezultat opravila ustvarjen (v UTC)" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Začetni DatumČas" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Polje z datumom, ko se je opravilo začelo (v UTC)" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Končan DatumČas" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Polje z datumom, ko je bilo opravilo dokončano (v UTC)" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Podatki o rezultatu" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Od opravila vrnjeni podatki" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Opomba za dokument" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "uporabnik" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "opomba" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "zapiski" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Arhiv" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Izvirnik" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "zapadlost" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "slug" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "deli povezavo" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "deli povezave" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Niz (besedilo)" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Datum" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Logična vrednost" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Celo število" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Ne celo število" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Denarno" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "tip podatka" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "polje po meri" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "polja po meri" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "primer polja po meri" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "primeri polja po meri" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Zajemalna mapa" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Api prenos" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Pridobi e-pošto" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "filtriraj pot" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Če je določena, zajemi samo dokumente s potjo, ki se ujema s to. Dovoljeni so nadomestni znaki, določeni kot *. Ni občutljivo na velikost črk." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "filtriraj imena datotek" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Uporabljajte samo dokumente, ki se v celoti ujemajo s tem imenom datoteke, če je navedeno. Dovoljeni so nadomestni znaki, kot sta *.pdf ali *račun*. Neobčutljiva na velike in male črke." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "filtriraj dokumente iz tega e-poštnega pravila" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "dodeli naslov" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Dodelite naslov dokumenta, lahko vključuje nekatere nadomestne znake, glejte dokumentacijo." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "dodeli to oznako" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "dodeli to vrsto dokumenta" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "dodeli tega dopisnika" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "dodeli to pot shranjevanja" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "določi tega lastnika" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "tem uporabnikom podeli dovoljenje za ogled" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "tem skupinam podeli dovoljenje za ogled" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "tem uporabnikom podeli dovoljenje za spreminjanje" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "tem skupinam podeli dovoljenje za spreminjanje" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "vrstni red" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "omogočeno" @@ -920,16 +932,16 @@ msgstr "omogočeno" msgid "Invalid regular expression: %(error)s" msgstr "Neveljaven splošen izraz: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Napačna barva." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Vrsta datoteke %(type)s ni podprta" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Zaznani neveljavni znaki." @@ -1085,11 +1097,11 @@ msgstr "Še vedno tam? Hmm, kot kaže je šlo nekaj narobe." msgid "Here's a link to the docs." msgstr "Tu je povezava do dokumentacije." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Deljena povezave ni bila najdena." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Deljena povezava je potekla." @@ -1288,135 +1300,135 @@ msgstr "Logotip aplikacije" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Angleščina (ZDA)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arabščina" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Afrikanščina" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Beloruščina" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Bolgarščina" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Katalonščina" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Češčina" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Danščina" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Nemščina" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Grščina" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Angleščina (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Španščina" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Finščina" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Francoščina" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Madžarščina" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italijanščina" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "japonščina" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luksemburški" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norveščina" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Nizozemščina" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Poljščina" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugalščina (Brazilija)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugalščina" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Romunščina" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Ruščina" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Slovaščina" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Slovenščina" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Srbščina" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Švedščina" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turščina" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ukrajinščina" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Poenostavljena kitajščina" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx administracija" @@ -1520,171 +1532,171 @@ msgstr "poštno pravilo" msgid "mail rules" msgstr "poštna pravila" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Obdelujte samo priloge." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Obdelava celotne e-pošte (z vstavljenimi priponkami v datoteki) kot .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Obdelava celotne e-pošte (z vstavljenimi prilogami v datoteki) kot .eml + obdelava prilog kot ločenih dokumentov" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Obdelajte vse datoteke, vključno z \"vgrajenimi\" prilogami." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Izbriši" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Premakni v določeno mapo" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Označi kot prebrano, ne obdelujte prebrane pošte" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Označite pošto z zastavico, ne obdelujte označene pošte" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Označi pošto s določeno oznako, ne procesiraj označene pošte" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Uporabite zadevo kot naslov" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Uporabite ime datoteke priloge kot naslov" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "Ne dodelite naslova s pravilom" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Ne dodelite dopisnika" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Uporabite poštni naslov" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Uporabi ime (ali e-poštni naslov, če ime ni na voljo)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Uporabite dopisnika, izbranega spodaj" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "račun" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "mapa" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Podmape morajo biti ločene s znakom, običajno je to pika (.) ali slash ('/'), je pa odvisno od poštnega strežnika." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtriraj prejeto" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filtriraj za" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filtriraj zadevo" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filtriraj vsebino" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "najvišja starost" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Določeno v dnevih." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "vrsta priponke" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Vgrajene priloge vključujejo vdelane slike, zato je najbolje, da to možnost združite s filtrom imen datoteke." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "obseg zajemanja" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "dejanja" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "parameter delovanja" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Dodatni parameter za zgoraj izbrano dejanje, to je ciljna mapa dejanja premika v mapo. Podmape morajo biti ločene s pikami." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "dodeli naslov iz" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "dodeli dopisnika iz" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Dodelitev lastnika pravila dokumentom" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "zadeva" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "prejeto" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "obdelano" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "stanje" diff --git a/src/locale/sr_CS/LC_MESSAGES/django.po b/src/locale/sr_CS/LC_MESSAGES/django.po index 29a93f576..3aafb3ee5 100644 --- a/src/locale/sr_CS/LC_MESSAGES/django.po +++ b/src/locale/sr_CS/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-06-04 12:10\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Serbian (Latin)\n" "Language: sr_CS\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokumenta" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "vlasnik" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Nijedan" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Bilo koja reč" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Sve reči" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Tačno podudaranje" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Regularni izraz" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Nejasna reč" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automatski" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "naziv" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "poklapanje" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "algoritam podudaranja" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "bez razlike veliko/malo slovo" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "korespodent" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "korespodenti" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "boja" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "je oznaka prijemnog sandučeta" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Označava ovu oznaku kao oznaku prijemnog sandučeta (inbox): Svi novoobrađeni dokumenti će biti označeni oznakama prijemnog sandučeta (inbox)." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "oznaka" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "oznake" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "tip dokumenta" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "tipovi dokumenta" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "putanja" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "putanja skladišta" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "putanja skladišta" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Nešifrovano" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Šifrovano pomoću GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "naslov" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "sadržaj" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Neobrađeni tekstualni podaci dokumenta. Ovo se polje koristi prvenstveno za pretraživanje." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "mime tip" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "kontrolna suma" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Kontrolna suma originalnog dokumenta." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "arhivni checksum" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Kontrolna suma arhivnog dokumenta." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "kreirano" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "izmenjeno" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "tip skladišta" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "dodato" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "naziv fajla" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Trenutni naziv sačuvane datoteke" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "naziv fajla arhive" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Trenutni naziv arhivirane sačuvane datoteke" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "originalno ime fajla" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Originalni naziv fajla kada je otpremljen" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "arhivski serijski broj" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Položaj ovog dokumenta u vašoj fizičkoj arhivi dokumenata." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "dokument" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "dokumenta" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "okloni greške" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "informacija" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "upozorenje" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "grеška" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kritično" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "grupa" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "poruka" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "nivo" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "log" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "logovi" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "Tabela" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "Male kartice" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "Velike kartice" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "Naslov" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "Kreirano" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "Dodato" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "Oznake" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "Korespondent" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "Tip dokumenta" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "Putanje skladišta" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "Beleška" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "Vlasnik" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "Deljeno" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "prikaži na kontrolnoj tabli" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "prikaži u bočnoj traci" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "polje za sortiranje" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "obrnuto sortiranje" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "Veličinа stranice za prikaz" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "Polja prikaza dokumenta" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "sačuvani prikaz" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "sačuvani prikazi" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "naslov sadrži" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "sadržaj sadrži" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN je" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "korespodent je" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "tip dokumenta je" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "je u prijemnog sandučetu" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "ima oznaku" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "ima bilo koju oznaku" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "kreiran pre" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "kreiran posle" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "godina kreiranja je" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "mesec kreiranja je" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "dan kreiranja je" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "dodat pre" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "dodat posle" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "izmenjen pre" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "izmenjen posle" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "nema oznaku" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "nema ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "naslov i sadržaj sadrži" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "upit za ceo tekst" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "više ovakvih" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "ima oznake u" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN veći od" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN manji od" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "putanja skladišta je" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "postoji korespondent" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "ne postoji korespondent" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "postoji tip dokumenta" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "tip pravila" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "vrednost" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "filter pravilo" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "filter pravila" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID Zadatka" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID za zadatak koji je pokrenut" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Potvrđeno" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Ako je zadatak potvrđen preko frontenda ili API-ja" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Naziv fajla za koji je zadatak pokrenut" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Ime zadatka" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Naziv zadatka koji je bio pokrenut" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Stanje zadatka" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Trenutno stanje zadatka koji se izvršava" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Datum i vreme kreiranja" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Polje datuma i vremena kada je rezultat zadatka kreiran u UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Datum i vreme početka" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Polje datuma i vremena kada je zadatak pokrenut u UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Datum i vreme završetka" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Polje datuma i vremena kada je zadatak završen u UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Podaci o rezultatu" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Podaci koje vraća zadatak" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "korisnik" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "beleške" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "String" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Datum" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Logičko" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Ceo broj" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Float" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Monetarno" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "tip podataka" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "prilagođeno polje" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "dodatna polja" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Folder za obradu" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Preuzimanje e-pošte" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "filtriraj putanju" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "filtriraj ime fajla" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Konzumirajte samo dokumente koji u potpunosti odgovaraju ovom nazivu datoteke ako je navedeno. Dopušteni su zamenski znakovi kao što su *.pdf ili *faktura*. Neosetljivo je na mala i mala slova." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "dodeli naslov" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "dodeli ovu oznaku" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "dodeli ovaj tip dokumenta" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "dodeli ovog korspodenta" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "raspored" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "Nevažeći regularni izraz: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Nevažeća boja." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Vrsta datoteke %(type)s nije podržana" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Otkrivena je nevažeća promenljiva." @@ -1085,11 +1097,11 @@ msgstr "Još uvek si ovde?! Hmm, možda nešto nije u redu." msgid "Here's a link to the docs." msgstr "Veze ka dokumentima." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "" @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Engleski (US)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arapski" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Afrički" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Beloruski" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Bugarski" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Katalonski" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Češki" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Danski" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Nemački" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Grčki" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Engleski (UK)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Španski" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Finski" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Francuski" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Mađarski" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italijanski" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luksemburški" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norveški" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Holandski" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Poljski" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugalski (Brazil)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugalski" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Rumunski" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Ruski" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Slovački" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Slovenački" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Srpski" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Švedski" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turski" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ukrajinski" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Kineski pojednostavljen" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx administracija" @@ -1520,171 +1532,171 @@ msgstr "pravilo e-pošte" msgid "mail rules" msgstr "pravila e-pošte" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Obradi samo priloge." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Obradite sve datoteke, uključujući \"umetnute\" priloge." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Obriši" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Premesti u određen folder" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Označi kao pročitano. Ne obrađuj pročitanu e-poštu" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Označi poštu zastavicom. Ne obrađuj e-poštu sa zastavicom" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Označite poštu specifičnom oznakom. Ne obrađuj e-poštu s specifičnom oznakom" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Koristi predmet kao naziv" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Koristi naziv datoteke priloga kao naziv" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Ne dodeljuj korespodenta" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Koristi mejl adresu" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Koristi naziv (ili mejl adresu ako nije dostupno)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Koristi koreespodenta ispod" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "nalog" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "folder" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Podfolderi moraju biti odvojeni separatorom, često tačkom ('.') ili kosom crtom ('/'), ali to se razlikuje zavisno od servera e-pošte." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filter od" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filtriraj po" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filter naslov" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filter telo poruke" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "maksimalna starost" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Navedeno u danima." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "tip priloga" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Ugrađeni prilozi uključuju ugrađene slike, pa je najbolje kombinovati ovu opciju s filterom naziva datoteke." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "obim obrade priloga" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "radnja" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "parametar akcije" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Dodatni parametar za gore odabranu akciju, tj. ciljani folder za premeštanje u folder akcije. Podfolderi moraju biti odvojeni tačkama." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "dodeli naziv iz" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "dodeli korespodenta iz" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "tema" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "primljeno" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "obrađeno" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "status" diff --git a/src/locale/sv_SE/LC_MESSAGES/django.po b/src/locale/sv_SE/LC_MESSAGES/django.po index 2743694a6..b24912a2c 100644 --- a/src/locale/sv_SE/LC_MESSAGES/django.po +++ b/src/locale/sv_SE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:41\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Language: sv_SE\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Dokument" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "ägare" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Ingen" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Valfritt ord" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Alla ord" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Exakt matchning" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Reguljära uttryck" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Ungefärligt ord" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Automatisk" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "namn" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "träff" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "matchande algoritm" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "är ej skiftlägeskänsligt" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "korrespondent" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "korrespondenter" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "färg" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "är inkorgsetikett" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Markerar denna etikett som en inkorgsetikett: Alla nyligen konsumerade dokument kommer att märkas med inkorgsetiketter." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "etikett" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "etiketter" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "dokumenttyp" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "dokumenttyper" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "sökväg" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "sökväg för lagring" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "sökvägar för lagring" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Okrypterad" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Krypterad med GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "titel" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "innehåll" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Dokumentets obearbetade textdata. Detta fält används främst för sökning." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "MIME-typ" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "kontrollsumma" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Kontrollsumman för originaldokumentet." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "arkivera kontrollsumma" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Kontrollsumman för det arkiverade dokumentet." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "skapad" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "ändrad" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "lagringstyp" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "tillagd" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "filnamn" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Nuvarande filnamn i lagringsutrymmet" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "arkivfilnamn" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Nuvarande arkivfilnamn i lagringsutrymmet" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "ursprungligt filnamn" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Det ursprungliga namnet på filen när den laddades upp" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "serienummer (arkivering)" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Placeringen av detta dokument i ditt fysiska dokumentarkiv." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "dokument" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "dokument" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "felsök" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "information" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "varning" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "fel" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kritisk" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "grupp" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "meddelande" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "nivå" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "logg" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "loggar" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "visa på kontrollpanelen" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "visa i sidofältet" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "sortera fält" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "sortera omvänt" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "sparad vy" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "sparade vyer" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "titel innehåller" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "innehåll innehåller" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN är" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "korrespondent är" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "dokumenttyp är" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "är i inkorgen" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "har etikett" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "har någon etikett" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "skapad före" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "skapad efter" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "skapat år är" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "skapad månad är" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "skapad dag är" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "tillagd före" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "tillagd efter" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "ändrad före" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "ändrad efter" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "har inte etikett" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "har inte ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "titel eller innehåll innehåller" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "fulltextfråga" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "mer som detta" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "har taggar i" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN större än" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN mindre än" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "sökväg till lagring är" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "har korrespondent i" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "har inte korrespondent i" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "har dokumenttyp i" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "har inte dokumenttyp i" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "har sökväg till lagring i" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "har inte sökväg till lagring i" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "ägare är" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "har ägare i" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "har inte ägare" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "har inte ägare i" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "har anpassat fältvärde" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "delas av mig" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "regeltyp" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "värde" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "filtrera regel" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "filtrera regler" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "Uppgifts-ID" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID för uppgiften som kördes" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Bekräftad" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Om uppgiften bekräftas via frontend eller API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Uppgiftens filnamn" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Namn på filen som aktiviteten kördes för" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Uppgiftens namn" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Namn på uppgiften som kördes" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Uppgiftsstatus" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Nuvarande tillstånd för uppgiften som körs" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Skapad Datumtid" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Datumtidsfält när aktivitetsresultatet skapades i UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Startad datumtid" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Datumfält när uppgiften startades i UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Slutförd datumtid" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Datumtidsfält när uppgiften slutfördes i UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Resultatdata" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "De data som returneras av uppgiften" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Anteckning för dokumentet" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "användare" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "anteckning" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "anteckningar" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Arkiv" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Original" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "utgångsdatum" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "permalänk" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "dela länk" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "dela länkar" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Sträng" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Datum" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Boolean" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Heltal" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "Flyttal" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Monetär" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Dokumentlänk" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "datatyp" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "anpassat fält" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "anpassade fält" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "anpassad fältinstans" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "anpassade fältinstanser" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "Konsumtion påbörjad" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Dokument tillagt" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Dokument uppdaterat" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Förbruka mapp" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Api-uppladdning" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Konsumera endast dokument som matchar exakt detta filnamn, om det är angivet. Jokertecken som *.pdf eller *faktura* är tillåtna. Ej skiftlägeskänsligt." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "tilldela titel" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "tilldela denna etikett" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "tilldela den här dokumenttypen" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "tilldela denna korrespondent" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "tilldela denna ägare" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "ordning" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "Ogiltigt reguljärt uttryck: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Ogiltig färg." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Filtypen %(type)s stöds inte" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Ogiltig variabel upptäckt." @@ -1085,11 +1097,11 @@ msgstr "Fortfarande här?! Hmm, någonting kan vara fel." msgid "Here's a link to the docs." msgstr "Här är en länk till dokumentationen." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Delningslänken har upphört att gälla." @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Engelska (USA)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arabiska" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Belarusiska" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Kataloniska" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Tjeckiska" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Danska" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Tyska" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Engelska (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Spanska" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Finska" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Franska" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Italienska" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Luxemburgiska" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Holländska" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polska" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portugisiska (Brasilien)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portugisiska" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Rumänska" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Ryska" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Slovakiska" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Slovenska" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Serbiska" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Svenska" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Turkiska" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ukrainiska" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Kinesiska (förenklad)" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx administration" @@ -1520,171 +1532,171 @@ msgstr "e-postregel" msgid "mail rules" msgstr "e-postregler" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Behandla endast bilagor." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Behandla helt e-postmeddelande (med inbäddade bilagor i fil) som .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Behandla helt e-postmeddelande (med inbäddade bilagor i fil) som .eml + processbilagor som separata dokument" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Behandla alla filer, inklusive infogade bilagor." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Radera" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Flytta till angiven mapp" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Markera som läst, bearbeta inte lästa meddelanden" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Flagga meddelandet, bearbeta inte flaggade meddelanden" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Tagga meddelandet med en specifik tagg, bearbeta inte taggade meddelanden" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Använd ämne som titel" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Använd bilagans filnamn som titel" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Tilldela inte en korrespondent" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Använd e-postadress" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Använd namn (eller e-postadress om inte tillgängligt)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Använd korrespondent som valts nedan" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "konto" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "mapp" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Undermappar måste separeras med en avgränsare, ofta en punkt ('.') eller snedstreck ('/'), men det varierar beroende på e-postserver." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "filtrera från" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "filtrera till" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "filtrera ämne" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "filtrera kropp" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "högsta ålder" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Anges i dagar." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "typ av bilaga" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Infogade bilagor inkluderar inbäddade bilder, så det är bäst att kombinera detta alternativ med ett filnamnsfilter." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "förbruknings omfattning" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "åtgärd" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "åtgärdsparameter" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Ytterligare parametrar för åtgärden som valts ovan, d.v.s. målmappen för åtgärden \"flytta till angiven mapp\". Undermappar måste vara separerade med punkter." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "tilldela titel från" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "tilldela korrespondent från" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "ämne" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "mottaget" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "bearbetat" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "status" diff --git a/src/locale/th_TH/LC_MESSAGES/django.po b/src/locale/th_TH/LC_MESSAGES/django.po index 2e848c434..c4d675d18 100644 --- a/src/locale/th_TH/LC_MESSAGES/django.po +++ b/src/locale/th_TH/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-23 12:09\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Thai\n" "Language: th_TH\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "เอกสาร" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "เจ้าของ" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "ไม่ใช้งาน" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "คำใดคำหนึ่ง" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "ทุกคำ" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "ตรงกันทุกประการ" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Regular expression" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "อัตโนมัติ" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "ชื่อ" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "การจำแนก" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "วิธีการจำแนก" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "ไม่คำนึงถึงตัวพิมพ์เล็ก-ใหญ่" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "จาก" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "จาก" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "สี" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "แท็กแรกเข้า" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "แท็กเอกสารใหม่ทั้งหมดด้วยแท็กนี้ (แท็กแรกเข้า)" -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "แท็ก" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "แท็ก" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "ประเภทเอกสาร" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "ประเภทเอกสาร" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "พาธ" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "พาธจัดเก็บ" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "พาธจัดเก็บ" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "ไม่เข้ารหัส" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "เข้ารหัสด้วย GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "ชื่อ" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "เนื้อหา" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "เนื้อหาของเอกสารในรูปแบบข้อความล้วน ในการค้นหาข้อมูล เนื้อหาของเอกสาร จะถูกใช้ในการค้นเป็นหลัก" -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "mime type" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "checksum" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "ค่า checksum ของไฟล์เอกสารต้นฉบับ" -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "archive checksum" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "ค่า checksum ของเอกสารประเภทเก็บถาวร" -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "สร้างเมื่อ" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "แก้ไขเมื่อ" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "วิธีการจัดเก็บ" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "นำเข้าเมื่อ" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "ชื่อไฟล์" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "ชื่อไฟล์ในพื้นที่จัดเก็บ" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "ชื่อไฟล์ที่ถูกเก็บถาวร" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "ชื่อไฟล์ที่ถูกเก็บถาวรในพื้นที่จัดเก็บ" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "ชื่อไฟล์ต้นฉบับ" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "ชื่อไฟล์ต้นฉบับที่อัพโหลดเข้ามา" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "รหัสการจัดเก็บถาวร" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "ตำแหน่งเอกสารนี้ในสถานที่จัดเก็บจริง ๆ ของคุณ" -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "เอกสาร" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "เอกสาร" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "debug" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "ข้อมูล" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "คำเตือน" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "ข้อผิดพลาด" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "ร้ายแรง" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "กลุ่ม" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "ข้อความ" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "ระดับ" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "log" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "logs" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "ตาราง" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "แท็ก" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "ประเภทเอกสาร" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "หมายเหตุ" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "เจ้าของ" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "แสดงบนหน้าหลัก" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "แสดงบนเมนูด้านข้าง" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "จัดเรียงตาม" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "เรียงย้อนกลับ" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "การค้นที่เก็บไว้" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "การค้นที่เก็บไว้" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "ชื่อมีคำว่า" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "เนื้อหาเอกสารมีคำว่า" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN คือ" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "ผู้เขียนคือ" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "ประเภทเอกสารคือ" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "อยู่ในกล่องขาเข้า" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "มีแท็ก" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "มีแท็กใดก็ตาม" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "สร้างก่อน" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "สร้างหลังจาก" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "สร้างเมื่อปี" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "สร้างเมื่อเดือน" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "สร้างเมื่อวันที่" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "นำเข้าก่อน" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "นำเข้าหลังจาก" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "แก้ไขก่อน" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "แก้ไขหลังจาก" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "ไม่มีแท็ก" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "ไม่มี ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "ชื่อหรือเนื้อหามีคำว่า" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "ค้นจากทุกอย่าง" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "มีแท็ก" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN มากกว่า" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN น้อยกว่า" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "พาธจัดเก็บคือ" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "ผู้เขียนคือ" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "ไม่มีผู้เขียนเป็น" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "ประเภทเอกสารคือ" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "ไม่มีประเภทเป็น" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "พาธจัดเก็บคือ" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "ไม่มีพาธจัดเก็บเป็น" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "เจ้าของคือ" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "เจ้าของคือ" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "ไม่มีเจ้าของเป็น" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "ไม่มีเจ้าของเป็น" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "ชนิดของกฎ" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "ค่า" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "กฎในการค้น" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "กฎในการค้น" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "รหัสงาน" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID ของงานที่ทำ" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "จ่ายงานแล้ว" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "กรณีที่งานได้ถูกจ่ายผ่าน frontend หรือ API แล้ว" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "ชื่อไฟล์งาน" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "ชื่อไฟล์ที่นำไปประมวลผล" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "ชื่องาน" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "ชื่อของงานที่ประมวลผล" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "สถานะงาน" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "สถานะปัจจุบันของงานที่กำลังทำ" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "วันเวลาสร้าง" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "วันเวลาเมื่องานถูกสร้างในเขตเวลา UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "วันเวลาเริ่ม" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "วันเวลาเมื่อเริ่มทำงานในเขตเวลา UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "เสร็จเมื่อ" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "วันเวลาเมื่อทำงานเสร็จสิ้นในเขตเวลา UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "ผลลัพธ์" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "ข้อมูลจากการทำงาน" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "หมายเหตุสำหรับเอกสาร" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "ผู้ใช้งาน" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "หมายเหตุ" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "หมายเหตุ" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "เก็บถาวร" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "ต้นฉบับ" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "หมดอายุ" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "slug" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "แชร์​ลิงก์" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "แชร์​ลิงก์" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "เพิ่มเอกสารแล้ว" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "ปรับปรุงเอกสารแล้ว" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "ประมวลผลเอกสารที่ชื่อไฟล์ตรงกับที่ระบุ (หากมี) โดยไม่สนใจอักษรพิมพ์ใหญ่-เล็ก และสามารถระบุแบบ wildcard ได้เช่น .pdf หรือ *invoice*" -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "กำหนดแท็กนี้" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "กำหนดประเภทเอกสารนี้" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "กำหนดผู้เขียนนี้" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "อันดับ" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "Regular expression ไม่ถูกต้อง : %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "สีไม่ถูกต้อง" -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "ไม่รองรับไฟล์ประเภท %(type)s" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "ตรวจพบตัวแปรไม่ถูกต้อง" @@ -1085,11 +1097,11 @@ msgstr "ยังค้างอยู่หรอ​? อืมม ต้อง msgid "Here's a link to the docs." msgstr "ลิงก์ไปยังเอกสารคือ" -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "ไม่พบลิงก์นี้" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "ลิงก์หมดอายุแล้ว" @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "ภาษาอังกฤษ (สหรัฐฯ)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "ภาษาอาหรับ" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "ภาษาอาฟรีกานส์" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "ภาษาเบลารุส" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "ภาษาคาตาลัน" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "ภาษาเช็ก" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "ภาษาเดนมาร์ก" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "ภาษาเยอรมัน" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "ภาษากรีก" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "ภาษาอังกฤษ (สหราชอาณาจักร)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "ภาษาสเปน" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "ภาษาฟินแลนด์" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "ภาษาฝรั่งเศส" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "ภาษาอิตาลี" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "ภาษาลักเซมเบิร์ก" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "ภาษานอร์เวย์" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "ภาษาดัตช์" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "ภาษาโปแลนด์" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "ภาษาโปรตุเกส (บราซิล)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "ภาษาโปรตุเกส" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "ภาษาโรมาเนีย" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "ภาษารัสเซีย" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "ภาษาสโลวาเกีย" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "ภาษาสโลเวเนีย" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "ภาษาเซอร์เบีย" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "ภาษาสวีเดน" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "ภาษาตุรกี" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "ภาษายูเครน" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "ภาษาจีน (ตัวย่อ)" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "การจัดการ Paperless-ngx" @@ -1520,171 +1532,171 @@ msgstr "กฎเมล" msgid "mail rules" msgstr "กฎเมล" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "ประมวลผลเฉพาะไฟล์แนบเท่านั้น" -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "ประมวลผลทั้งหมดเป็น .eml (รวมถึงไฟล์แนบแบบ embedded)" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "ประมวลผลทั้งหมดเป็น .eml (รวมถึงไฟล์แนบแบบ embedded) + ประมวลผลไฟล์แนบแยกแต่ละไฟล์" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "ประมวลผลทั้งหมด รวมทั้งไฟล์แนบที่อยู่ในเนื้อความ (inline)" -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "ลบทิ้ง" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "ย้ายไปยังโฟลเดอร์ที่ระบุ" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "ทำเครื่องหมายว่าอ่านแล้ว และไม่สนใจเมลที่อ่านแล้ว" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "ปักธงเมล และไม่สนใจเมลที่ปักธงแล้ว" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "แท็กเมลด้วยแท็กที่ระบุ และไม่สนใจเมลที่แท็กแล้ว" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "ใช้หัวเรื่องเป็นชื่อเอกสาร" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "ใช้ชื่อไฟล์แนบเป็นชื่อเอกสาร" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "ไม่ต้องกำหนดผู้เขียน" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "ใช้ที่อยู่เมล" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "ใช้ชื่อผู้ส่ง (หากไม่มี ใช้ที่อยู่เมล)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "ใช้ชื่อผู้เขียนตามที่เลือกข้างล่าง" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "บัญชี" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "โฟลเดอร์" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "โฟลเตอร์รองต้องแยกด้วยเครื่องหมายวรรคตอน ปกติแล้วจะเป็น มหัพภาค ('.') หรือ ทับ ('/') ทั้งนี้อาจจะแตกต่างกันไปตามแม่ข่ายเมล" -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "กรอง จาก" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "กรอง ถึง" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "กรอง หัวเรื่อง" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "กรอง เนื้อความ" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "อายุสูงสุด" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "ระบุเป็นวัน" -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "ประเภทไฟล์แนบ" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "ไฟล์แนบในเนื้อความ รวมไปถึงรูปภาพ (แนะนำให้ใช้ร่วมกับตัวกรองชื่อ)" -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "ขอบเขตการประมวลผล" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "การดำเนินการ" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "พารามิเตอร์ของการดำเนินการ" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "พารามิเตอร์เพิ่มเติมสำหรับการดำเนินการที่เลือก เช่น โฟลเดอร์ปลายทางที่จะย้าย โฟลเดอร์ย่อยต้องระบุโดยคั่นด้วยจุด" -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "กำหนดชื่อจาก" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "กำหนดผู้เขียน" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "หัวเรื่อง" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "ได้รับเมื่อ" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "ประมวลผลเมื่อ" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "สถานะ" diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po index 91fbd69bd..bee166a9c 100644 --- a/src/locale/tr_TR/LC_MESSAGES/django.po +++ b/src/locale/tr_TR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:41\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Belgeler" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "sahibi" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Hiçbiri" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Herhangi bir kelime" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Tüm Kelimeler" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Tam eşleşme" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Düzenli ifade" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "ad" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "eşleme" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "eşleştirme algoritması" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "duyarsızdır" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "kâtip" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "kâtipler" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "renk" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "gelen kutu etiketidir" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Bu etiketi, gelen kutusu etiketi olarak işaretle: Yeni aktarılan tüm dokümanlar gelen kutusu etiketi ile etiketlendirileceklerdir." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "etiket" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "etiketler" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "belge türü" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "belge türleri" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "dizin" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "depolama dizini" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "depolama dizinleri" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Şifresiz" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "GNU Gizlilik Koruması ile şifrelendirilmiştir" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "başlık" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "içerik" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Belgenin ham, yalnızca metin verileri. Bu alan öncelikle arama için kullanılır." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "mime türü" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "sağlama toplamı" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Orjinal belgenin sağlama toplamı." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "arşiv sağlama toplamı" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Arşivlenen belgenin sağlama toplamı." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "oluşturuldu" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "değiştirilmiş" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "depolama türü" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "eklendi" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "dosya adı" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Depolamadaki geçerli dosya adı" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "arşiv dosya adı" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Depolamadaki geçerli arşiv dosya adı" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "özgün dosya adı" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Yüklendiğindeki özgün dosya adı" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "arşiv seri numarası" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Bu belgenin fiziksel belge arşivinizdeki konumu." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "belge" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "belgeler" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "hata ayıklama" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "bilgi" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "uyarı" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "hata" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "kritik" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "grup" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "ileti" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "düzey" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "günlük" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "günlükler" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "kontrol panelinde göster" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "kenar çubuğunda göster" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "alan ile sırala" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "tersine sırala" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "kaydedilen görünüm" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "kaydedilen görünümler" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "başlık şunu içerir" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "içerik şunu içerir" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN ise" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "muhabir ise" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "belge türü ise" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "gelen kutusunun içinde" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "etiketine sahip" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "herhangi bir etiketine sahip" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "bu tarihten önce oluşturuldu" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "bu tarihten sonra oluşturuldu" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "oluşturma yili ise" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "oluşturma ayı ise" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "oluşturma günü ise" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "bu tarihten önce eklendi" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "bu tarihten sonra eklendi" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "bu tarihten önce değiştirldi" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "bu tarihten sonra değiştirldi" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "etikete sahip değil" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "ASN'ye sahip değil" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "başlik veya içerik içerir" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "tam metin sorgulama" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "içerisinde etiketine sahip" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN şundan daha büyük" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN şundan daha küçük" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "depolama yolu ise" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "belge türüne şurada sahip" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "belge türüne şurada sahip değil" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "şurada depolama yolu mevcut" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "şurada depolama yolu yok" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "sahibi" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "şurada sahibi" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "sahipsiz" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "şurada sahibi yoktur" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "kural türü" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "değer" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "filtreleme kuralı" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "filtreleme kuralları" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "Görev kimliği" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Görevler için yürütülen Celery ID" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Onaylandı" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Görev dosya adı" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Görev adı" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Görev Durumu" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Oluşturulan tarih saat" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Başlangıç saati zamanı" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "kullanıcı" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "not" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "notlar" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Arşiv" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Orjinal" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "süre sonu" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "bağlantıyı paylaş" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "bağlantıları paylaş" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Tarih" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "dosya adı ara" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Yalnızca belirtilmişse bu dosya ismiyla tamamen eşleşen belgeleri tüket. *.pdf veya *fatura* gibi joker karakterlere izin verilir. Büyük küçük yazılımına duyarsız." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "başlık at" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "bu etiketi atan" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "bu dosya türünü atan" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "bu muhabiri atan" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "bu kullanıcılara görüntüleme izni ver" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "bu kullanıcılara değişiklik yapma izni ver" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "bu gruplara değişiklik yapma izni ver" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "sıra" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "Hatalı Düzenli İfade: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Geçersiz renk." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Dosya türü %(type)s desteklenmiyor" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Geçersiz değişken algılandı." @@ -1085,11 +1097,11 @@ msgstr "Hâlâ burada mısınız? Hmm, bir şeyler yanlış olabilir." msgid "Here's a link to the docs." msgstr "" -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Paylaşım bağlantısı bulunamadı." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Bağlantının kullanım süresi doldu." @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "İngilizce (Birleşik Devletler)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Arapça" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Afrika dili" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Belarusça" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Katalanca" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Çekçe" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Danca" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Almanca" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Yunanca" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "İngilizce (GB)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "İspanyolca" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Fince" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Fransızca" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "İtalyanca" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Lüksemburgca" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norveçce" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Hollandaca" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Polonyaca" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Portekizce (Brezilya)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Portekizce" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Romence" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Rusça" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Slovakça" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Slovakça" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Sırpça" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "İsveççe" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Türkçe" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ukraynaca" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Basitleştirilmiş Çince" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx yönetimi" @@ -1520,171 +1532,171 @@ msgstr "e-posta kuralı" msgid "mail rules" msgstr "e-posta kuralları" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Sadece ekleri işle." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Tüm postayı (dosyaya gömülü eklerle birlikte) .eml olarak işleyin + ekleri ayrı belgeler olarak işleyin" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Tüm dosyaları işle, 'satır içi' ekletiler dahil." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Sil" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Belirtilen klasöre taşı" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Okunmuş olarak işaretle, okunmuş e-postaları işleme" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "E-Postayi etiketlendir, etiketlendirilmiş e-postaları işleme" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Postayı belirtilen etiketle etiketleyin, etiketlenmiş postaları ise işleme koymayın" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Konuyu başlık olarak kullan" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Eklenti dosyanın ismini başlık olarak kullan" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "Kuraldan başlık atama" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Muhabir atanma" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "E-posta adresi kullan" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "İsim kullan (veya yoksa e-posta adresini)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Aşağıdaki seçili olan muhabiri kullan" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "hesap" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "klasör" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Alt klasörler, genellikle nokta ('.') veya eğik çizgi ('/') gibi bir sınırlayıcı ile ayrılmalıdır, ancak bu posta sunucusuna göre değişir." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "den filtrele" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "buraya kadar filtrele" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "konuyu filtrele" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "içerik filtrele" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "yaş sınırı" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Gün olarak belirtilmiş." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "eklenti türü" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Satır içi ekler katıştırılmış görüntüler içerir, bu nedenle bu seçeneği bir dosya adı filtresiyle birleştirmek en iyisidir." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "eylem" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "eylem parametreleri" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Yukarıda seçilen eylem için ek parametre, örneğin klasöre taşı eyleminin hedef klasörü gibi. Alt klasörler noktalarla ayrıştırılmalıdır." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "başlik atan" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "muhabiri atan" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Kural sahibini belgelere ata" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "konu" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "alındı" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "işlendi" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "durum" diff --git a/src/locale/uk_UA/LC_MESSAGES/django.po b/src/locale/uk_UA/LC_MESSAGES/django.po index c8bcc3cec..ce2dcabf3 100644 --- a/src/locale/uk_UA/LC_MESSAGES/django.po +++ b/src/locale/uk_UA/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-28 00:24\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Документи" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "власник" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Немає" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Будь-яке слово" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Усі слова" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Точна відповідність" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Регулярний вираз" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "Приблизний пошук" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "Автоматично" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "назва" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "відповідність" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "алгоритм зіставляння" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "нечутливий до регістру" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "кореспондент" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "кореспонденти" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "колір" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "є вхідним тегом" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "Позначає цей тег як вхідний тег: всі нещодавно додані документи будуть відмічені вхідними тегами." -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "тег" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "теги" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "тип документа" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "типи документів" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "шлях" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "шлях зберігання" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "шляхи зберігання" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Без шифрування" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "Зашифровано з допомогою GNU Privacy Guard" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "заголовок" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "вміст" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "Необроблений текст документа. Це поле використовується в переважно для пошуку." -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "тип MIME" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "контрольна сума" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "Контрольна сума оригінального документа." -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "контрольна сума архіву" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "Контрольна сума архівованого документа." -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "створено" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "змінено" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "тип сховища" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "додано" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "назва файлу" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Поточна назва файлу в сховищі" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "назва файлу архіву" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "Поточна назва файлу архіву в сховищі" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "оригінальна назва файлу" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "Оригінальна назва файлу, коли його було завантажено" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "архівний серійний номер (АСН)" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "Позиція цього документа у вашому фізичному архіві документів." -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "документ" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "документи" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "зневадження" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "інформація" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "попередження" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "помилка" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "критично" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "група" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "повідомлення" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "рівень" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "лог" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "логи" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "показати на панелі" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "показати в бічній панелі" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "поле сортування" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "зворотнє сортування" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "збережене представлення" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "збережені представлення" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "заголовок містить" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "вміст містить" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "АСН" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "кореспондент" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "тип документа" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "у вхідних" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "має тег" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "має будь-який тег" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "створено до" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "створено після" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "рік створення" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "місяць створення" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "день створення" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "додано до" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "додано після" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "змінено до" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "змінено після" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "не має тегу" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "не має АСН" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "заголовок або вміст містить" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "повнотекстовий запит" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "шукати подібне" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "має теги в" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "АСН більший ніж" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "АСН менший ніж" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "шлях зберігання" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "має кореспондента в" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "не має кореспондента в" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "має тип документа в" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "не має типу документа в" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "має шлях до сховища в" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "не має шляху до сховища в" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "власник є" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "має власника в" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "не має власника" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "не має власника в" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "має значення спеціального поля" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "поділився я" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "тип правила" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "значення" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "правило фільтрації" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "правила фільтрації" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "ID завдання" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "Celery ID завдання, яке було запущено" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "Підтверджено" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "Якщо завдання підтверджено через вебінтерфейс або API" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "Назва файлу завдання" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "Назва файлу, для якого було запущено завдання" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "Назва завдання" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "Назва завдання, яке було запущено" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "Стан завдання" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "Поточний стан завдання в обробці" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "Дата і час створення" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "Дата і час створення результату виконання завдання в UTC" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "Дата і час початку" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "Дата і час початку виконання завдання в UTC" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "Дата і час завершення" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "Дата і час завершення виконання завдання в UTC" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "Дані результату" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "Дані, які повернені завданням" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "Примітка до документа" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "користувач" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "примітка" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "нотатки" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "Архів" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "Оригінал" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "закінчується" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "слаг" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "поділитися посиланням" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "поділитися посиланнями" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "Текст" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL-адреса" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "Дата" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "Логічне значення" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "Ціле число" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "З рухомою комою" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "Монетарний" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "Посилання на документ" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "тип даних" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "користувацьке поле" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "користувацькі поля" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "спеціальний екземпляр поля" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "спеціальні екземпляри поля" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "Використання розпочато" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "Документ додано" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "Документ оновлено" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "Використати теку" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Завантаження API" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "Завантаження пошти" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "Тип тригера робочого процесу" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "шлях фільтра" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Використовувати лише документи зі шляхом, який відповідає цьому, якщо вказано. Допускаються символи підставлення, позначені як *. Регістр не враховується." -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "фільтрувати за назвою файлу" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Обробляти лише ті документи, які повністю відповідають назві файлу, якщо вказано. Шаблони, такі як *.pdf чи *invoice* дозволені. Без врахування регістру." -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "фільтрувати документи з цього правила пошти" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "має цей тег(и)" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "має тип документа" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "має кореспондента" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "тригер робочого процесу" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "тригери робочого процесу" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "Призначення" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "Видалення" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "Тип дії робочого процесу" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "призначити назву" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Призначити заголовок документу, може включати деякі місця заповнювачів, див. документацію." -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "призначити цей тег" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "призначити цей тип документа" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "призначити цього кореспондента" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "призначити шлях до сховища" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "призначити власника" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "надати дозволи на перегляд цим користувачам" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "надати дозволи на перегляд цим групам" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "надати дозволи на зміну цим користувачам" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "надати дозволи на зміну цим групам" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "призначити користувацькі поля" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "видалити тег(и)" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "видалити всі теги" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "видалити тип(и) документів" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "видалити всі типи документів" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "видалити кореспондента (-ів)" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "видалити всіх кореспондентів" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "видалити шлях для зберігання" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "видалити всі шляхи зберігання" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "видалити власника (-ів)" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "видалити всіх власників" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "видалити дозволи на перегляд для цих користувачів" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "видалити дозволи на перегляд для цих груп" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "видалити дозволи на редагування для цих користувачів" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "видалити дозволи на редагування для цих груп" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "видалити всі дозволи" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "видалити користувацькі поля" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "видалити всі користувацькі поля" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "дія робочого циклу" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "дії робочого циклу" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "порядок" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "тригери" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "дії" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "ввімкнено" @@ -920,16 +932,16 @@ msgstr "ввімкнено" msgid "Invalid regular expression: %(error)s" msgstr "Неправильний регулярний вираз: %(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "Неправильний колір." -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "Тип файлу %(type)s не підтримується" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "Виявлено неправильну змінну." @@ -1086,11 +1098,11 @@ msgstr "Все ще тут? Хмм, щось могло піти не так." msgid "Here's a link to the docs." msgstr "Ось посилання на документацію." -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "Посилання для спільного доступу не знайдено." -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "Термін дії посилання закінчився." @@ -1289,135 +1301,135 @@ msgstr "" msgid "paperless application settings" msgstr "налаштування програми документообігу" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "Англійська (США)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "Арабська" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Африкаанс" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "Білоруська" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "Болгарська" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Каталонська" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "Чеська" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "Данська" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "Німецька" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Грецька" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "Англійська (Велика Британія)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "Іспанська" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "Фінська" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "Французька" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "Угорська" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "Італійська" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "Люксембурзька" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Норвезька" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "Нідерландська" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "Польська" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "Португальська (Бразилія)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "Португальська" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "Румунська" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "Російська" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Словацька" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "Словенська" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "Сербська" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "Шведська" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "Турецька" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Українська" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "Китайська спрощена" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Адміністрування Paperless-ngx" @@ -1521,171 +1533,171 @@ msgstr "правило пошти" msgid "mail rules" msgstr "правила пошти" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "Обробляти лише вкладення." -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "Обробка всієї пошти (з вбудованими вкладеннями) як .eml" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "Обробка всієї пошти (з вбудованими вкладеннями) як .eml + обробляти вкладення як окремі документи" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "Обробляти всі файли, включаючи вбудовані вкладення." -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "Видалити" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "Перемістити до вказаної теки" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "Відмітити як прочитане, не обробляти прочитані повідомлення" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "Позначити пошту, не обробляти позначені листи" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "Позначити пошту зі вказаним тегом, не обробляти позначені листи" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "Використовувати тему як заголовок" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "Використовувати назву файлу як заголовок" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "Не призначати заголовок від цього правила" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "Не призначити кореспондента" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "Використовувати адресу електронної пошти" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "Використовувати ім'я (або адресу електронної пошти, якщо не доступне)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "Використовувати кореспондента, вибраного нижче" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "обліковий запис" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "тека" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "Підтеки мають розділятися розділювальними символами, часто крапкою ('.') або скісною рискою ('/'), але це залежить від поштового сервера." -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "фільтрувати по відправнику" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "фільтрувати по отримувачу" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "фільтрувати за темою" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "фільтрувати по тексту повідомлення" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "фільтр враховує вкладену назву файлу" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "фільтр не враховує вкладену назву файлу" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Не використовуйте документи, які повністю відповідають цій назві файлу, якщо вона вказана. Допускаються символи підстановки, наприклад *.pdf або *рахунок-фактура*. Регістр не враховується." -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "максимальний вік" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "Вказано в днях." -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "тип вкладення" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "Вбудовані вкладення містять зображення, тому краще об'єднати цю опцію з фільтром по назві файлу." -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "сфера застосування" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "дія" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "параметр дії" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "Додатковий параметр для вибраної вище дії, тобто цільова тека для дії переміщення до теки. Підтеки повинні бути розділені крапками." -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "призначити заголовок з" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "призначити кореспондента з" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "Призначити власника правила документів" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "uid" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "тема" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "отримано" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "оброблено" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "статус" diff --git a/src/locale/vi_VN/LC_MESSAGES/django.po b/src/locale/vi_VN/LC_MESSAGES/django.po index 0524f16e7..728d33f0b 100644 --- a/src/locale/vi_VN/LC_MESSAGES/django.po +++ b/src/locale/vi_VN/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:41\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "Tài liệu" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "chủ sở hữu" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "Không có" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "Từ bất kỳ" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "Tất cả từ" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "Chính xác" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "Biểu hiện bình thường" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "tên" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "phù hợp" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "thuật toán tìm kiếm" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "không phân biệt chữ hoa/thường" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "tương ứng" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "tương ứng" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "màu" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "là thẻ inbox" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "" -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "thẻ" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "các thẻ" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "loại tài liệu" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "các loại tài liệu" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "đường dẫn" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "đường dẫn lưu trữ dữ liệu" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "các đường dẫn lưu trữ dữ liệu" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "Không mã hóa" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "tiêu đề" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "nội dung" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "" -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "định dạng mime" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "kiểm tra giá trị" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "" -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "" -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "đã tạo" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "đã sửa đổi" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "loại lưu trữ" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "đã thêm" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "tên tập tin" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "Tên tệp hiện tại trong bộ nhớ" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "" -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "tài liệu" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "tài liệu" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "gỡ lỗi" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "thông tin" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "cảnh báo" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "lỗi" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "nhóm" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "tin nhắn" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "bản ghi" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "log" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "hiển thị dashboard" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "hiển thị trong slidebar" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "trường sắp xếp" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "lưu chế độ xem" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "lưu chế độ xem" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "" @@ -1085,11 +1097,11 @@ msgstr "" msgid "Here's a link to the docs." msgstr "" -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "" @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "" @@ -1520,171 +1532,171 @@ msgstr "" msgid "mail rules" msgstr "" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "" -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "" -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "" -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "" -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "" -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "" -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "" diff --git a/src/locale/zh_CN/LC_MESSAGES/django.po b/src/locale/zh_CN/LC_MESSAGES/django.po index 6de4e1d66..0773c3c6c 100644 --- a/src/locale/zh_CN/LC_MESSAGES/django.po +++ b/src/locale/zh_CN/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-23 12:09\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "文档" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "所有者" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "无" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "任意单词" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "所有单词" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "精确匹配" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "正则表达式" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "模糊单词" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "自动" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "名称" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "匹配" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "匹配算法" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "忽略大小写" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "联系人" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "联系人" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "颜色" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "收件箱标签" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "将此标签标记为收件箱标签:所有新处理的文档将被标记为收件箱标签。" -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "标签" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "标签" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "文档类型" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "文档类型" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "路径" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "保存路径" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "保存路径" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "未加密" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "使用 GNU 隐私防护(GPG)加密" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "标题" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "内容" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "文档的原始、纯文本的数据。这个字段主要用于搜索。" -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "mime 类型" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "校验和" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "原始文档的校验和。" -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "存档校验和" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "已归档文档的校验和。" -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "已创建" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "已修改" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "存储类型" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "已添加" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "文件名" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "当前存储中的文件名" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "归档文件名" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "当前存储中的归档文件名" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "原文件名" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "文件上传时的原始名称" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "归档序列号" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "此文档在您的物理文档归档中的位置。" -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "文档" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "文档" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "调试" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "信息" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "警告" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "错误" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "严重" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "用户组" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "消息" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "等级" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "日志" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "日志" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "在仪表盘显示" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "在侧边栏显示" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "排序字段" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "反向排序" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "保存的视图" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "保存的视图" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "标题包含" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "内容包含" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN 为" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "联系人是" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "文档类型是" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "在收件箱中" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "有标签" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "有任意标签" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "在此时间之前创建" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "在此时间之后创建" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "创建年份是" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "创建月份是" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "创建日期是" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "添加早于" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "添加晚于" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "修改早于" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "修改晚于" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "没有标签" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "没有 ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "标题或内容包含" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "全文检索" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "如同这个" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "有标签包含于" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN 大于" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN 小于" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "保存路径" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "联系人" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "没有联系人" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "文档类型" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "没有文档类型" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "存储路径" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "没有存储路径" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "所有者是" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "已经设置所有者" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "没有所有者" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "没有所有者" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "添加自定义字段值" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "由我共享" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "规则类型" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "值" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "过滤规则" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "过滤规则" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "任务ID" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "正在运行的任务的 Celery ID" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "已确认" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "如果任务通过前端或 API 确认" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "任务文件名" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "正在运行的任务文件名称" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "任务名称" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "运行中的任务名称" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "任务状态" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "当前任务运行状态" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "创建日期" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "任务结果创建时间(UTC)" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "开始时间" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "任务开始时间(UTC)" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "完成时间" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "任务完成时间(UTC)" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "结果数据" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "任务返回的数据" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "文档备注" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "用户" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "备注" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "备注" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "归档" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "原版" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "过期时间" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "缩写" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "分享链接" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "分享链接" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "字符串" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "URL链接" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "日期" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "布尔型" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "整数" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "浮点数" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "货币" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "文档链接" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "数据类型" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "自定义字段" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "自定义字段" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "自定义字段实例" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "自定义字段实例" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "消费已开始" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "文档已添加" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "文档已更新" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "消费文件夹" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "Api上传" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "邮件获取" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "工作流触发器类型" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "过滤路径" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "只消耗匹配了指定路径的文档。路径指定中允许使用*作为通配符,大小写不敏感。" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "过滤文件名" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "如果指定了文件名,只处理完全匹配此文件名的文档。允许使用通配符,如 *.pdf 或 *发票*。不区分大小写。" -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "从邮件规则中过滤文档" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "含有这些标签" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "具有此文档类型" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "已有此联系人" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "工作流触发器" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "工作流触发器" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "分配任务" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "移除" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "工作流动作类型" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "指定标题" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "指定一个文档标题,可以包含一些占位符,参见文档。" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "分配此标签" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "分配此文档类型" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "分配此联系人" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "指定存储路径" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "指定所有者" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "为这些用户授予观看权限" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "为这些用户组授予观看权限" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "为这些用户授予修改权限" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "为这些用户组授予修改权限" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "分配这些自定义字段" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "移除这些标签" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "删除所有的标签" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "移除这些文档类型 " -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "移除所有文档类型" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "移除这些通讯员" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "移除所有通讯员" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "移除这些存储路径" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "移除全部存储路径" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "移除这些所有者 " -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "移除所有所有者" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "移除这些用户的查看权限" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "移除这些组的查看权限" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "为这些用户授予修改权限" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "移除这些组的更改权限" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "移除所有权限" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "移除这些自定义字段" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "移除所有自定义字段" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "工作流动作" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "工作流动作" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "排序" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "触发器" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "动作" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "已启用" @@ -920,16 +932,16 @@ msgstr "已启用" msgid "Invalid regular expression: %(error)s" msgstr "无效的正则表达式:%(error)s" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "无效的颜色" -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "不支持文件类型 %(type)s" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "检测到无效变量。" @@ -1086,11 +1098,11 @@ msgstr "还是在这里?嗯,可能有些错误。" msgid "Here's a link to the docs." msgstr "这是与文档的链接。" -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "未找到共享链接。" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "分享链接已失效!" @@ -1289,135 +1301,135 @@ msgstr "应用程序图标" msgid "paperless application settings" msgstr "无纸应用设置" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "英语(美国)" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "阿拉伯语" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "Afrikaans 荷兰语" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "白俄罗斯语" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "保加利亚语" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "Catalan 加泰罗尼亚语" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "捷克语" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "丹麦语" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "德语" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "Greek 希腊语" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "英语(英国)" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "西班牙语" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "已完成" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "法语" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "匈牙利语" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "意大利语" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "日语" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "卢森堡语" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "Norwegian 挪威语" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "荷兰语" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "波兰语" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "葡萄牙语 (巴西)" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "葡萄牙语" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "罗马尼亚语" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "俄语" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "Slovak 斯洛伐克语" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "斯洛语尼亚语" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "塞尔维亚语" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "瑞典语" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "土耳其语" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "Ukrainian 乌克兰语" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "简体中文" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "Paperless-ngx 管理" @@ -1521,171 +1533,171 @@ msgstr "邮件规则" msgid "mail rules" msgstr "邮件规则" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "只处理附件。" -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "处理.eml邮件文件(包含文件中的嵌入附件) " -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "处理.eml邮件文件(包含文件中的嵌入附件) + 将附件作为单独的文档处理" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "处理所有文件,包括“内嵌”附件。" -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "删除" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "移动到指定文件夹" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "标记为已读,不处理已读邮件" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "标记邮件,不处理已标记的邮件" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "用指定标签标记邮件,不要处理已标记的邮件" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "使用主题作为标题" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "使用附件名作为标题" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "不从规则分配标题" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "不分配联系人" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "使用邮件地址" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "使用名称 (如果不可用则使用邮箱地址)" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "使用下面选择的联系人" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "账户" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "文件夹" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "子文件夹必须用分隔符分隔,通常是一个 dot ('.') 或 slash ('/'),但它因邮件服务器而异。" -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "过滤来自" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "过滤结果" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "过滤主题" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "过滤内容" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "过滤附件文件名,包含" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "过滤附件文件名,不包含" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "如果指定了文件名,不要处理完全匹配此文件名的文档。允许使用通配符,如 *.pdf 或 *发票*。不区分大小写。" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "存活期" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "指定日期。" -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "附件类型" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "内嵌附件包含嵌入图像,所以最好将此选项与文件名过滤器结合起来。" -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "消费范围" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "操作" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "操作参数" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "上面选择的操作的附加参数,即移动到文件夹操作的目标文件夹。子文件夹必须用“.”来分隔。" -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "分配标题来自" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "分配联系人来自" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "赋予文档拥有者权限" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "UID" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "标题" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "已接收" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "已处理" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr "状态" diff --git a/src/locale/zh_TW/LC_MESSAGES/django.po b/src/locale/zh_TW/LC_MESSAGES/django.po index d9bead3c7..be4b63876 100644 --- a/src/locale/zh_TW/LC_MESSAGES/django.po +++ b/src/locale/zh_TW/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-19 11:07-0700\n" -"PO-Revision-Date: 2024-05-20 16:40\n" +"POT-Creation-Date: 2024-07-09 11:27-0700\n" +"PO-Revision-Date: 2024-07-09 18:28\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Language: zh_TW\n" @@ -21,897 +21,909 @@ msgstr "" msgid "Documents" msgstr "文件" -#: documents/models.py:36 documents/models.py:783 +#: documents/models.py:39 documents/models.py:786 msgid "owner" msgstr "擁有者" -#: documents/models.py:53 documents/models.py:946 +#: documents/models.py:56 documents/models.py:970 msgid "None" msgstr "無" -#: documents/models.py:54 documents/models.py:947 +#: documents/models.py:57 documents/models.py:971 msgid "Any word" msgstr "任何字" -#: documents/models.py:55 documents/models.py:948 +#: documents/models.py:58 documents/models.py:972 msgid "All words" msgstr "所有字詞" -#: documents/models.py:56 documents/models.py:949 +#: documents/models.py:59 documents/models.py:973 msgid "Exact match" msgstr "完全符合" -#: documents/models.py:57 documents/models.py:950 +#: documents/models.py:60 documents/models.py:974 msgid "Regular expression" msgstr "" -#: documents/models.py:58 documents/models.py:951 +#: documents/models.py:61 documents/models.py:975 msgid "Fuzzy word" msgstr "" -#: documents/models.py:59 +#: documents/models.py:62 msgid "Automatic" msgstr "" -#: documents/models.py:62 documents/models.py:416 documents/models.py:1267 -#: paperless_mail/models.py:18 paperless_mail/models.py:96 +#: documents/models.py:65 documents/models.py:419 documents/models.py:1291 +#: paperless_mail/models.py:18 paperless_mail/models.py:107 msgid "name" msgstr "名稱" -#: documents/models.py:64 documents/models.py:1007 +#: documents/models.py:67 documents/models.py:1031 msgid "match" msgstr "比對" -#: documents/models.py:67 documents/models.py:1010 +#: documents/models.py:70 documents/models.py:1034 msgid "matching algorithm" msgstr "比對演算法" -#: documents/models.py:72 documents/models.py:1015 +#: documents/models.py:75 documents/models.py:1039 msgid "is insensitive" msgstr "不區分大小寫" -#: documents/models.py:95 documents/models.py:147 +#: documents/models.py:98 documents/models.py:150 msgid "correspondent" msgstr "聯繫者" -#: documents/models.py:96 +#: documents/models.py:99 msgid "correspondents" msgstr "聯繫者" -#: documents/models.py:100 +#: documents/models.py:103 msgid "color" msgstr "顏色" -#: documents/models.py:103 +#: documents/models.py:106 msgid "is inbox tag" msgstr "收件匣標籤" -#: documents/models.py:106 +#: documents/models.py:109 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." msgstr "標記此標籤為收件匣標籤:所有新處理的文件將會以此收件匣標籤作標記。" -#: documents/models.py:112 +#: documents/models.py:115 msgid "tag" msgstr "標籤" -#: documents/models.py:113 documents/models.py:185 +#: documents/models.py:116 documents/models.py:188 msgid "tags" msgstr "標籤" -#: documents/models.py:118 documents/models.py:167 +#: documents/models.py:121 documents/models.py:170 msgid "document type" msgstr "文件類型" -#: documents/models.py:119 +#: documents/models.py:122 msgid "document types" msgstr "文件類型" -#: documents/models.py:124 +#: documents/models.py:127 msgid "path" msgstr "位址" -#: documents/models.py:129 documents/models.py:156 +#: documents/models.py:132 documents/models.py:159 msgid "storage path" msgstr "儲存位址" -#: documents/models.py:130 +#: documents/models.py:133 msgid "storage paths" msgstr "儲存位址" -#: documents/models.py:137 +#: documents/models.py:140 msgid "Unencrypted" msgstr "未加密" -#: documents/models.py:138 +#: documents/models.py:141 msgid "Encrypted with GNU Privacy Guard" msgstr "已使用 GNU Privacy Guard 進行加密" -#: documents/models.py:159 +#: documents/models.py:162 msgid "title" msgstr "標題" -#: documents/models.py:171 documents/models.py:697 +#: documents/models.py:174 documents/models.py:700 msgid "content" msgstr "內容" -#: documents/models.py:174 +#: documents/models.py:177 msgid "The raw, text-only data of the document. This field is primarily used for searching." msgstr "文件的原始純文字數據。這個欄位主要用於搜尋" -#: documents/models.py:179 +#: documents/models.py:182 msgid "mime type" msgstr "mime 類型" -#: documents/models.py:189 +#: documents/models.py:192 msgid "checksum" msgstr "檢查碼" -#: documents/models.py:193 +#: documents/models.py:196 msgid "The checksum of the original document." msgstr "原始文件的校驗檢查碼" -#: documents/models.py:197 +#: documents/models.py:200 msgid "archive checksum" msgstr "存檔校驗檢查碼" -#: documents/models.py:202 +#: documents/models.py:205 msgid "The checksum of the archived document." msgstr "歸檔文件的校驗檢查碼" -#: documents/models.py:205 documents/models.py:385 documents/models.py:703 -#: documents/models.py:741 documents/models.py:811 documents/models.py:848 +#: documents/models.py:208 documents/models.py:388 documents/models.py:706 +#: documents/models.py:744 documents/models.py:815 documents/models.py:861 msgid "created" msgstr "已建立" -#: documents/models.py:208 +#: documents/models.py:211 msgid "modified" msgstr "已修改" -#: documents/models.py:215 +#: documents/models.py:218 msgid "storage type" msgstr "儲存空間類型" -#: documents/models.py:223 +#: documents/models.py:226 msgid "added" msgstr "已新增" -#: documents/models.py:230 +#: documents/models.py:233 msgid "filename" msgstr "檔案名稱" -#: documents/models.py:236 +#: documents/models.py:239 msgid "Current filename in storage" msgstr "儲存中的現行檔案名稱" -#: documents/models.py:240 +#: documents/models.py:243 msgid "archive filename" msgstr "存檔檔案名稱" -#: documents/models.py:246 +#: documents/models.py:249 msgid "Current archive filename in storage" msgstr "現時儲存空間封存的檔案名稱" -#: documents/models.py:250 +#: documents/models.py:253 msgid "original filename" msgstr "原先檔案名稱" -#: documents/models.py:256 +#: documents/models.py:259 msgid "The original name of the file when it was uploaded" msgstr "檔案上傳時的檔案名稱" -#: documents/models.py:263 +#: documents/models.py:266 msgid "archive serial number" msgstr "封存編號" -#: documents/models.py:273 +#: documents/models.py:276 msgid "The position of this document in your physical document archive." msgstr "此檔案在你實體儲存空間的位置。" -#: documents/models.py:279 documents/models.py:714 documents/models.py:768 +#: documents/models.py:282 documents/models.py:717 documents/models.py:771 msgid "document" msgstr "文件" -#: documents/models.py:280 +#: documents/models.py:283 msgid "documents" msgstr "文件" -#: documents/models.py:368 +#: documents/models.py:371 msgid "debug" msgstr "偵錯" -#: documents/models.py:369 +#: documents/models.py:372 msgid "information" msgstr "資訊" -#: documents/models.py:370 +#: documents/models.py:373 msgid "warning" msgstr "警告" -#: documents/models.py:371 paperless_mail/models.py:308 +#: documents/models.py:374 paperless_mail/models.py:319 msgid "error" msgstr "錯誤" -#: documents/models.py:372 +#: documents/models.py:375 msgid "critical" msgstr "嚴重" -#: documents/models.py:375 +#: documents/models.py:378 msgid "group" msgstr "群組" -#: documents/models.py:377 +#: documents/models.py:380 msgid "message" msgstr "訊息" -#: documents/models.py:380 +#: documents/models.py:383 msgid "level" msgstr "程度" -#: documents/models.py:389 +#: documents/models.py:392 msgid "log" msgstr "記錄" -#: documents/models.py:390 +#: documents/models.py:393 msgid "logs" msgstr "記錄" -#: documents/models.py:398 +#: documents/models.py:401 msgid "Table" msgstr "" -#: documents/models.py:399 +#: documents/models.py:402 msgid "Small Cards" msgstr "" -#: documents/models.py:400 +#: documents/models.py:403 msgid "Large Cards" msgstr "" -#: documents/models.py:403 +#: documents/models.py:406 msgid "Title" msgstr "" -#: documents/models.py:404 +#: documents/models.py:407 msgid "Created" msgstr "" -#: documents/models.py:405 +#: documents/models.py:408 msgid "Added" msgstr "" -#: documents/models.py:406 +#: documents/models.py:409 msgid "Tags" msgstr "" -#: documents/models.py:407 +#: documents/models.py:410 msgid "Correspondent" msgstr "" -#: documents/models.py:408 +#: documents/models.py:411 msgid "Document Type" msgstr "" -#: documents/models.py:409 +#: documents/models.py:412 msgid "Storage Path" msgstr "" -#: documents/models.py:410 +#: documents/models.py:413 msgid "Note" msgstr "" -#: documents/models.py:411 +#: documents/models.py:414 msgid "Owner" msgstr "" -#: documents/models.py:412 +#: documents/models.py:415 msgid "Shared" msgstr "" -#: documents/models.py:413 +#: documents/models.py:416 msgid "ASN" msgstr "" -#: documents/models.py:419 +#: documents/models.py:422 msgid "show on dashboard" msgstr "顯示在概覽" -#: documents/models.py:422 +#: documents/models.py:425 msgid "show in sidebar" msgstr "顯示在側邊欄" -#: documents/models.py:426 +#: documents/models.py:429 msgid "sort field" msgstr "排序欄位" -#: documents/models.py:431 +#: documents/models.py:434 msgid "sort reverse" msgstr "倒轉排序" -#: documents/models.py:434 +#: documents/models.py:437 msgid "View page size" msgstr "" -#: documents/models.py:442 +#: documents/models.py:445 msgid "View display mode" msgstr "" -#: documents/models.py:449 +#: documents/models.py:452 msgid "Document display fields" msgstr "" -#: documents/models.py:456 documents/models.py:513 +#: documents/models.py:459 documents/models.py:516 msgid "saved view" msgstr "已儲存的檢視表" -#: documents/models.py:457 +#: documents/models.py:460 msgid "saved views" msgstr "保存視圖" -#: documents/models.py:465 +#: documents/models.py:468 msgid "title contains" msgstr "標題包含" -#: documents/models.py:466 +#: documents/models.py:469 msgid "content contains" msgstr "內容包含" -#: documents/models.py:467 +#: documents/models.py:470 msgid "ASN is" msgstr "ASN 為" -#: documents/models.py:468 +#: documents/models.py:471 msgid "correspondent is" msgstr "聯繫者為" -#: documents/models.py:469 +#: documents/models.py:472 msgid "document type is" msgstr "文件類型為" -#: documents/models.py:470 +#: documents/models.py:473 msgid "is in inbox" msgstr "在收件匣內" -#: documents/models.py:471 +#: documents/models.py:474 msgid "has tag" msgstr "包含標籤" -#: documents/models.py:472 +#: documents/models.py:475 msgid "has any tag" msgstr "包含任何標籤" -#: documents/models.py:473 +#: documents/models.py:476 msgid "created before" msgstr "建立時間之前" -#: documents/models.py:474 +#: documents/models.py:477 msgid "created after" msgstr "建立時間之後" -#: documents/models.py:475 +#: documents/models.py:478 msgid "created year is" msgstr "建立年份為" -#: documents/models.py:476 +#: documents/models.py:479 msgid "created month is" msgstr "建立月份為" -#: documents/models.py:477 +#: documents/models.py:480 msgid "created day is" msgstr "建立日期為" -#: documents/models.py:478 +#: documents/models.py:481 msgid "added before" msgstr "加入時間之前" -#: documents/models.py:479 +#: documents/models.py:482 msgid "added after" msgstr "加入時間之後" -#: documents/models.py:480 +#: documents/models.py:483 msgid "modified before" msgstr "修改之前" -#: documents/models.py:481 +#: documents/models.py:484 msgid "modified after" msgstr "修改之後" -#: documents/models.py:482 +#: documents/models.py:485 msgid "does not have tag" msgstr "沒有包含標籤" -#: documents/models.py:483 +#: documents/models.py:486 msgid "does not have ASN" msgstr "沒有包含 ASN" -#: documents/models.py:484 +#: documents/models.py:487 msgid "title or content contains" msgstr "標題或內容包含" -#: documents/models.py:485 +#: documents/models.py:488 msgid "fulltext query" msgstr "全文搜索" -#: documents/models.py:486 +#: documents/models.py:489 msgid "more like this" msgstr "" -#: documents/models.py:487 +#: documents/models.py:490 msgid "has tags in" msgstr "含有這個標籤" -#: documents/models.py:488 +#: documents/models.py:491 msgid "ASN greater than" msgstr "ASN 大於" -#: documents/models.py:489 +#: documents/models.py:492 msgid "ASN less than" msgstr "ASN 小於" -#: documents/models.py:490 +#: documents/models.py:493 msgid "storage path is" msgstr "儲存位址為" -#: documents/models.py:491 +#: documents/models.py:494 msgid "has correspondent in" msgstr "包含聯繫者" -#: documents/models.py:492 +#: documents/models.py:495 msgid "does not have correspondent in" msgstr "沒有包含聯繫者" -#: documents/models.py:493 +#: documents/models.py:496 msgid "has document type in" msgstr "文件類型包含" -#: documents/models.py:494 +#: documents/models.py:497 msgid "does not have document type in" msgstr "沒有包含的文件類型" -#: documents/models.py:495 +#: documents/models.py:498 msgid "has storage path in" msgstr "儲存位址包含" -#: documents/models.py:496 +#: documents/models.py:499 msgid "does not have storage path in" msgstr "沒有包含的儲存位址" -#: documents/models.py:497 +#: documents/models.py:500 msgid "owner is" msgstr "擁有者為" -#: documents/models.py:498 +#: documents/models.py:501 msgid "has owner in" msgstr "擁有者包含" -#: documents/models.py:499 +#: documents/models.py:502 msgid "does not have owner" msgstr "沒有包含的擁有者" -#: documents/models.py:500 +#: documents/models.py:503 msgid "does not have owner in" msgstr "沒有包含的擁有者" -#: documents/models.py:501 +#: documents/models.py:504 msgid "has custom field value" msgstr "" -#: documents/models.py:502 +#: documents/models.py:505 msgid "is shared by me" msgstr "" -#: documents/models.py:503 +#: documents/models.py:506 msgid "has custom fields" msgstr "" -#: documents/models.py:504 +#: documents/models.py:507 msgid "has custom field in" msgstr "" -#: documents/models.py:505 +#: documents/models.py:508 msgid "does not have custom field in" msgstr "" -#: documents/models.py:506 +#: documents/models.py:509 msgid "does not have custom field" msgstr "" -#: documents/models.py:516 +#: documents/models.py:519 msgid "rule type" msgstr "規則類型" -#: documents/models.py:518 +#: documents/models.py:521 msgid "value" msgstr "數值" -#: documents/models.py:521 +#: documents/models.py:524 msgid "filter rule" msgstr "過濾規則" -#: documents/models.py:522 +#: documents/models.py:525 msgid "filter rules" msgstr "過濾規則" -#: documents/models.py:633 +#: documents/models.py:636 msgid "Task ID" msgstr "任務 ID" -#: documents/models.py:634 +#: documents/models.py:637 msgid "Celery ID for the Task that was run" msgstr "已執行任務的 Celery ID" -#: documents/models.py:639 +#: documents/models.py:642 msgid "Acknowledged" msgstr "已確認" -#: documents/models.py:640 +#: documents/models.py:643 msgid "If the task is acknowledged via the frontend or API" msgstr "如果任務已由前端 / API 確認" -#: documents/models.py:646 +#: documents/models.py:649 msgid "Task Filename" msgstr "任務檔案名稱" -#: documents/models.py:647 +#: documents/models.py:650 msgid "Name of the file which the Task was run for" msgstr "執行任務的目標檔案名稱" -#: documents/models.py:653 +#: documents/models.py:656 msgid "Task Name" msgstr "任務名稱" -#: documents/models.py:654 +#: documents/models.py:657 msgid "Name of the Task which was run" msgstr "" -#: documents/models.py:661 +#: documents/models.py:664 msgid "Task State" msgstr "任務狀態" -#: documents/models.py:662 +#: documents/models.py:665 msgid "Current state of the task being run" msgstr "" -#: documents/models.py:667 +#: documents/models.py:670 msgid "Created DateTime" msgstr "" -#: documents/models.py:668 +#: documents/models.py:671 msgid "Datetime field when the task result was created in UTC" msgstr "" -#: documents/models.py:673 +#: documents/models.py:676 msgid "Started DateTime" msgstr "" -#: documents/models.py:674 +#: documents/models.py:677 msgid "Datetime field when the task was started in UTC" msgstr "" -#: documents/models.py:679 +#: documents/models.py:682 msgid "Completed DateTime" msgstr "" -#: documents/models.py:680 +#: documents/models.py:683 msgid "Datetime field when the task was completed in UTC" msgstr "" -#: documents/models.py:685 +#: documents/models.py:688 msgid "Result Data" msgstr "" -#: documents/models.py:687 +#: documents/models.py:690 msgid "The data returned by the task" msgstr "" -#: documents/models.py:699 +#: documents/models.py:702 msgid "Note for the document" msgstr "" -#: documents/models.py:723 +#: documents/models.py:726 msgid "user" msgstr "" -#: documents/models.py:728 +#: documents/models.py:731 msgid "note" msgstr "" -#: documents/models.py:729 +#: documents/models.py:732 msgid "notes" msgstr "" -#: documents/models.py:737 +#: documents/models.py:740 msgid "Archive" msgstr "" -#: documents/models.py:738 +#: documents/models.py:741 msgid "Original" msgstr "" -#: documents/models.py:749 +#: documents/models.py:752 msgid "expiration" msgstr "" -#: documents/models.py:756 +#: documents/models.py:759 msgid "slug" msgstr "" -#: documents/models.py:788 +#: documents/models.py:791 msgid "share link" msgstr "" -#: documents/models.py:789 +#: documents/models.py:792 msgid "share links" msgstr "" -#: documents/models.py:801 +#: documents/models.py:804 msgid "String" msgstr "" -#: documents/models.py:802 +#: documents/models.py:805 msgid "URL" msgstr "" -#: documents/models.py:803 +#: documents/models.py:806 msgid "Date" msgstr "" -#: documents/models.py:804 +#: documents/models.py:807 msgid "Boolean" msgstr "" -#: documents/models.py:805 +#: documents/models.py:808 msgid "Integer" msgstr "" -#: documents/models.py:806 +#: documents/models.py:809 msgid "Float" msgstr "" -#: documents/models.py:807 +#: documents/models.py:810 msgid "Monetary" msgstr "" -#: documents/models.py:808 +#: documents/models.py:811 msgid "Document Link" msgstr "" -#: documents/models.py:820 +#: documents/models.py:812 +msgid "Select" +msgstr "" + +#: documents/models.py:824 msgid "data type" msgstr "" -#: documents/models.py:828 +#: documents/models.py:831 +msgid "extra data" +msgstr "" + +#: documents/models.py:835 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:841 msgid "custom field" msgstr "" -#: documents/models.py:829 +#: documents/models.py:842 msgid "custom fields" msgstr "" -#: documents/models.py:891 +#: documents/models.py:906 msgid "custom field instance" msgstr "" -#: documents/models.py:892 +#: documents/models.py:907 msgid "custom field instances" msgstr "" -#: documents/models.py:954 +#: documents/models.py:978 msgid "Consumption Started" msgstr "" -#: documents/models.py:955 +#: documents/models.py:979 msgid "Document Added" msgstr "" -#: documents/models.py:956 +#: documents/models.py:980 msgid "Document Updated" msgstr "" -#: documents/models.py:959 +#: documents/models.py:983 msgid "Consume Folder" msgstr "" -#: documents/models.py:960 +#: documents/models.py:984 msgid "Api Upload" msgstr "" -#: documents/models.py:961 +#: documents/models.py:985 msgid "Mail Fetch" msgstr "" -#: documents/models.py:964 +#: documents/models.py:988 msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:976 +#: documents/models.py:1000 msgid "filter path" msgstr "" -#: documents/models.py:981 +#: documents/models.py:1005 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:988 +#: documents/models.py:1012 msgid "filter filename" msgstr "" -#: documents/models.py:993 paperless_mail/models.py:151 +#: documents/models.py:1017 paperless_mail/models.py:162 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: documents/models.py:1004 +#: documents/models.py:1028 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:1020 +#: documents/models.py:1044 msgid "has these tag(s)" msgstr "" -#: documents/models.py:1028 +#: documents/models.py:1052 msgid "has this document type" msgstr "" -#: documents/models.py:1036 +#: documents/models.py:1060 msgid "has this correspondent" msgstr "" -#: documents/models.py:1040 +#: documents/models.py:1064 msgid "workflow trigger" msgstr "" -#: documents/models.py:1041 +#: documents/models.py:1065 msgid "workflow triggers" msgstr "" -#: documents/models.py:1051 +#: documents/models.py:1075 msgid "Assignment" msgstr "" -#: documents/models.py:1055 +#: documents/models.py:1079 msgid "Removal" msgstr "" -#: documents/models.py:1059 +#: documents/models.py:1083 msgid "Workflow Action Type" msgstr "" -#: documents/models.py:1065 +#: documents/models.py:1089 msgid "assign title" msgstr "" -#: documents/models.py:1070 +#: documents/models.py:1094 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:1079 paperless_mail/models.py:219 +#: documents/models.py:1103 paperless_mail/models.py:230 msgid "assign this tag" msgstr "" -#: documents/models.py:1088 paperless_mail/models.py:227 +#: documents/models.py:1112 paperless_mail/models.py:238 msgid "assign this document type" msgstr "" -#: documents/models.py:1097 paperless_mail/models.py:241 +#: documents/models.py:1121 paperless_mail/models.py:252 msgid "assign this correspondent" msgstr "指派這個聯繫者" -#: documents/models.py:1106 +#: documents/models.py:1130 msgid "assign this storage path" msgstr "" -#: documents/models.py:1115 +#: documents/models.py:1139 msgid "assign this owner" msgstr "" -#: documents/models.py:1122 +#: documents/models.py:1146 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1129 +#: documents/models.py:1153 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1136 +#: documents/models.py:1160 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1143 +#: documents/models.py:1167 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1150 +#: documents/models.py:1174 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1157 +#: documents/models.py:1181 msgid "remove these tag(s)" msgstr "" -#: documents/models.py:1162 +#: documents/models.py:1186 msgid "remove all tags" msgstr "" -#: documents/models.py:1169 +#: documents/models.py:1193 msgid "remove these document type(s)" msgstr "" -#: documents/models.py:1174 +#: documents/models.py:1198 msgid "remove all document types" msgstr "" -#: documents/models.py:1181 +#: documents/models.py:1205 msgid "remove these correspondent(s)" msgstr "" -#: documents/models.py:1186 +#: documents/models.py:1210 msgid "remove all correspondents" msgstr "" -#: documents/models.py:1193 +#: documents/models.py:1217 msgid "remove these storage path(s)" msgstr "" -#: documents/models.py:1198 +#: documents/models.py:1222 msgid "remove all storage paths" msgstr "" -#: documents/models.py:1205 +#: documents/models.py:1229 msgid "remove these owner(s)" msgstr "" -#: documents/models.py:1210 +#: documents/models.py:1234 msgid "remove all owners" msgstr "" -#: documents/models.py:1217 +#: documents/models.py:1241 msgid "remove view permissions for these users" msgstr "" -#: documents/models.py:1224 +#: documents/models.py:1248 msgid "remove view permissions for these groups" msgstr "" -#: documents/models.py:1231 +#: documents/models.py:1255 msgid "remove change permissions for these users" msgstr "" -#: documents/models.py:1238 +#: documents/models.py:1262 msgid "remove change permissions for these groups" msgstr "" -#: documents/models.py:1243 +#: documents/models.py:1267 msgid "remove all permissions" msgstr "" -#: documents/models.py:1250 +#: documents/models.py:1274 msgid "remove these custom fields" msgstr "" -#: documents/models.py:1255 +#: documents/models.py:1279 msgid "remove all custom fields" msgstr "" -#: documents/models.py:1259 +#: documents/models.py:1283 msgid "workflow action" msgstr "" -#: documents/models.py:1260 +#: documents/models.py:1284 msgid "workflow actions" msgstr "" -#: documents/models.py:1269 paperless_mail/models.py:98 +#: documents/models.py:1293 paperless_mail/models.py:109 msgid "order" msgstr "" -#: documents/models.py:1275 +#: documents/models.py:1299 msgid "triggers" msgstr "" -#: documents/models.py:1282 +#: documents/models.py:1306 msgid "actions" msgstr "" -#: documents/models.py:1285 +#: documents/models.py:1309 msgid "enabled" msgstr "" @@ -920,16 +932,16 @@ msgstr "" msgid "Invalid regular expression: %(error)s" msgstr "" -#: documents/serialisers.py:422 +#: documents/serialisers.py:435 msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1234 +#: documents/serialisers.py:1314 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1343 +#: documents/serialisers.py:1423 msgid "Invalid variable detected." msgstr "" @@ -1085,11 +1097,11 @@ msgstr "" msgid "Here's a link to the docs." msgstr "" -#: documents/templates/paperless-ngx/base.html:55 +#: documents/templates/paperless-ngx/base.html:58 msgid "Share link was not found." msgstr "" -#: documents/templates/paperless-ngx/base.html:59 +#: documents/templates/paperless-ngx/base.html:62 msgid "Share link has expired." msgstr "" @@ -1288,135 +1300,135 @@ msgstr "" msgid "paperless application settings" msgstr "" -#: paperless/settings.py:660 +#: paperless/settings.py:682 msgid "English (US)" msgstr "" -#: paperless/settings.py:661 +#: paperless/settings.py:683 msgid "Arabic" msgstr "" -#: paperless/settings.py:662 +#: paperless/settings.py:684 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:663 +#: paperless/settings.py:685 msgid "Belarusian" msgstr "" -#: paperless/settings.py:664 +#: paperless/settings.py:686 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:665 +#: paperless/settings.py:687 msgid "Catalan" msgstr "" -#: paperless/settings.py:666 +#: paperless/settings.py:688 msgid "Czech" msgstr "" -#: paperless/settings.py:667 +#: paperless/settings.py:689 msgid "Danish" msgstr "" -#: paperless/settings.py:668 +#: paperless/settings.py:690 msgid "German" msgstr "" -#: paperless/settings.py:669 +#: paperless/settings.py:691 msgid "Greek" msgstr "" -#: paperless/settings.py:670 +#: paperless/settings.py:692 msgid "English (GB)" msgstr "" -#: paperless/settings.py:671 +#: paperless/settings.py:693 msgid "Spanish" msgstr "" -#: paperless/settings.py:672 +#: paperless/settings.py:694 msgid "Finnish" msgstr "" -#: paperless/settings.py:673 +#: paperless/settings.py:695 msgid "French" msgstr "" -#: paperless/settings.py:674 +#: paperless/settings.py:696 msgid "Hungarian" msgstr "" -#: paperless/settings.py:675 +#: paperless/settings.py:697 msgid "Italian" msgstr "" -#: paperless/settings.py:676 +#: paperless/settings.py:698 msgid "Japanese" msgstr "" -#: paperless/settings.py:677 +#: paperless/settings.py:699 msgid "Luxembourgish" msgstr "" -#: paperless/settings.py:678 +#: paperless/settings.py:700 msgid "Norwegian" msgstr "" -#: paperless/settings.py:679 +#: paperless/settings.py:701 msgid "Dutch" msgstr "" -#: paperless/settings.py:680 +#: paperless/settings.py:702 msgid "Polish" msgstr "" -#: paperless/settings.py:681 +#: paperless/settings.py:703 msgid "Portuguese (Brazil)" msgstr "" -#: paperless/settings.py:682 +#: paperless/settings.py:704 msgid "Portuguese" msgstr "" -#: paperless/settings.py:683 +#: paperless/settings.py:705 msgid "Romanian" msgstr "" -#: paperless/settings.py:684 +#: paperless/settings.py:706 msgid "Russian" msgstr "" -#: paperless/settings.py:685 +#: paperless/settings.py:707 msgid "Slovak" msgstr "" -#: paperless/settings.py:686 +#: paperless/settings.py:708 msgid "Slovenian" msgstr "" -#: paperless/settings.py:687 +#: paperless/settings.py:709 msgid "Serbian" msgstr "" -#: paperless/settings.py:688 +#: paperless/settings.py:710 msgid "Swedish" msgstr "" -#: paperless/settings.py:689 +#: paperless/settings.py:711 msgid "Turkish" msgstr "" -#: paperless/settings.py:690 +#: paperless/settings.py:712 msgid "Ukrainian" msgstr "" -#: paperless/settings.py:691 +#: paperless/settings.py:713 msgid "Chinese Simplified" msgstr "" -#: paperless/urls.py:236 +#: paperless/urls.py:242 msgid "Paperless-ngx administration" msgstr "" @@ -1520,171 +1532,171 @@ msgstr "" msgid "mail rules" msgstr "" -#: paperless_mail/models.py:64 paperless_mail/models.py:75 +#: paperless_mail/models.py:75 paperless_mail/models.py:86 msgid "Only process attachments." msgstr "" -#: paperless_mail/models.py:65 +#: paperless_mail/models.py:76 msgid "Process full Mail (with embedded attachments in file) as .eml" msgstr "" -#: paperless_mail/models.py:69 +#: paperless_mail/models.py:80 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" msgstr "" -#: paperless_mail/models.py:76 +#: paperless_mail/models.py:87 msgid "Process all files, including 'inline' attachments." msgstr "" -#: paperless_mail/models.py:79 +#: paperless_mail/models.py:90 msgid "Delete" msgstr "" -#: paperless_mail/models.py:80 +#: paperless_mail/models.py:91 msgid "Move to specified folder" msgstr "" -#: paperless_mail/models.py:81 +#: paperless_mail/models.py:92 msgid "Mark as read, don't process read mails" msgstr "" -#: paperless_mail/models.py:82 +#: paperless_mail/models.py:93 msgid "Flag the mail, don't process flagged mails" msgstr "" -#: paperless_mail/models.py:83 +#: paperless_mail/models.py:94 msgid "Tag the mail with specified tag, don't process tagged mails" msgstr "" -#: paperless_mail/models.py:86 +#: paperless_mail/models.py:97 msgid "Use subject as title" msgstr "" -#: paperless_mail/models.py:87 +#: paperless_mail/models.py:98 msgid "Use attachment filename as title" msgstr "" -#: paperless_mail/models.py:88 +#: paperless_mail/models.py:99 msgid "Do not assign title from rule" msgstr "" -#: paperless_mail/models.py:91 +#: paperless_mail/models.py:102 msgid "Do not assign a correspondent" msgstr "不要指派聯繫者" -#: paperless_mail/models.py:92 +#: paperless_mail/models.py:103 msgid "Use mail address" msgstr "" -#: paperless_mail/models.py:93 +#: paperless_mail/models.py:104 msgid "Use name (or mail address if not available)" msgstr "" -#: paperless_mail/models.py:94 +#: paperless_mail/models.py:105 msgid "Use correspondent selected below" msgstr "使用以下已選擇的聯繫者" -#: paperless_mail/models.py:104 +#: paperless_mail/models.py:115 msgid "account" msgstr "" -#: paperless_mail/models.py:108 paperless_mail/models.py:263 +#: paperless_mail/models.py:119 paperless_mail/models.py:274 msgid "folder" msgstr "" -#: paperless_mail/models.py:112 +#: paperless_mail/models.py:123 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." msgstr "" -#: paperless_mail/models.py:118 +#: paperless_mail/models.py:129 msgid "filter from" msgstr "" -#: paperless_mail/models.py:125 +#: paperless_mail/models.py:136 msgid "filter to" msgstr "" -#: paperless_mail/models.py:132 +#: paperless_mail/models.py:143 msgid "filter subject" msgstr "" -#: paperless_mail/models.py:139 +#: paperless_mail/models.py:150 msgid "filter body" msgstr "" -#: paperless_mail/models.py:146 +#: paperless_mail/models.py:157 msgid "filter attachment filename inclusive" msgstr "" -#: paperless_mail/models.py:158 +#: paperless_mail/models.py:169 msgid "filter attachment filename exclusive" msgstr "" -#: paperless_mail/models.py:163 +#: paperless_mail/models.py:174 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: paperless_mail/models.py:170 +#: paperless_mail/models.py:181 msgid "maximum age" msgstr "" -#: paperless_mail/models.py:172 +#: paperless_mail/models.py:183 msgid "Specified in days." msgstr "" -#: paperless_mail/models.py:176 +#: paperless_mail/models.py:187 msgid "attachment type" msgstr "" -#: paperless_mail/models.py:180 +#: paperless_mail/models.py:191 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." msgstr "" -#: paperless_mail/models.py:186 +#: paperless_mail/models.py:197 msgid "consumption scope" msgstr "" -#: paperless_mail/models.py:192 +#: paperless_mail/models.py:203 msgid "action" msgstr "" -#: paperless_mail/models.py:198 +#: paperless_mail/models.py:209 msgid "action parameter" msgstr "" -#: paperless_mail/models.py:203 +#: paperless_mail/models.py:214 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." msgstr "" -#: paperless_mail/models.py:211 +#: paperless_mail/models.py:222 msgid "assign title from" msgstr "" -#: paperless_mail/models.py:231 +#: paperless_mail/models.py:242 msgid "assign correspondent from" msgstr "指派聯繫者從" -#: paperless_mail/models.py:245 +#: paperless_mail/models.py:256 msgid "Assign the rule owner to documents" msgstr "" -#: paperless_mail/models.py:271 +#: paperless_mail/models.py:282 msgid "uid" msgstr "" -#: paperless_mail/models.py:279 +#: paperless_mail/models.py:290 msgid "subject" msgstr "" -#: paperless_mail/models.py:287 +#: paperless_mail/models.py:298 msgid "received" msgstr "" -#: paperless_mail/models.py:294 +#: paperless_mail/models.py:305 msgid "processed" msgstr "" -#: paperless_mail/models.py:300 +#: paperless_mail/models.py:311 msgid "status" msgstr ""