From 2a2bf3bf55be5c591d496d974e9b5e94b0259d28 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 4 Aug 2023 12:04:36 -0700 Subject: [PATCH 01/13] Update environment.prod.ts --- src-ui/src/environments/environment.prod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index ce12ed95f..d64ea5e24 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -5,7 +5,7 @@ export const environment = { apiBaseUrl: document.baseURI + 'api/', apiVersion: '3', appTitle: 'Paperless-ngx', - version: '1.17.0', + version: '1.17.0-dev', webSocketHost: window.location.host, webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:', webSocketBaseUrl: base_url.pathname + 'ws/', From b09566a9a9194c3724b594c73229353277e7225a Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 6 Aug 2023 08:05:39 -0700 Subject: [PATCH 02/13] Adds Ukranian translation --- src-ui/angular.json | 1 + src-ui/messages.xlf | 17 ++++++++++++----- src-ui/setup-jest.ts | 2 ++ src-ui/src/app/app.module.ts | 2 ++ src-ui/src/app/services/settings.service.ts | 6 ++++++ src/paperless/settings.py | 1 + 6 files changed, 24 insertions(+), 5 deletions(-) diff --git a/src-ui/angular.json b/src-ui/angular.json index 61f2e9b4d..ff3a26a22 100644 --- a/src-ui/angular.json +++ b/src-ui/angular.json @@ -39,6 +39,7 @@ "sr-CS": "src/locale/messages.sr_CS.xlf", "sv-SE": "src/locale/messages.sv_SE.xlf", "tr-TR": "src/locale/messages.tr_TR.xlf", + "uk-UA": "src/locale/messages.uk_UA.xlf", "zh-CN": "src/locale/messages.zh_CN.xlf" } }, diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index b21c74fb1..e7dd14aab 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -5421,39 +5421,46 @@ 301 + + Ukranian + + src/app/services/settings.service.ts + 307 + + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 ISO 8601 src/app/services/settings.service.ts - 324 + 330 Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 diff --git a/src-ui/setup-jest.ts b/src-ui/setup-jest.ts index 80a890660..64f4e3531 100644 --- a/src-ui/setup-jest.ts +++ b/src-ui/setup-jest.ts @@ -30,6 +30,7 @@ import localeSl from '@angular/common/locales/sl' import localeSr from '@angular/common/locales/sr' import localeSv from '@angular/common/locales/sv' import localeTr from '@angular/common/locales/tr' +import localeUk from '@angular/common/locales/uk' import localeZh from '@angular/common/locales/zh' registerLocaleData(localeAr) @@ -55,6 +56,7 @@ registerLocaleData(localeSl) registerLocaleData(localeSr) registerLocaleData(localeSv) registerLocaleData(localeTr) +registerLocaleData(localeUk) registerLocaleData(localeZh) /* global mocks for jsdom */ diff --git a/src-ui/src/app/app.module.ts b/src-ui/src/app/app.module.ts index c58866256..86b6d29c4 100644 --- a/src-ui/src/app/app.module.ts +++ b/src-ui/src/app/app.module.ts @@ -115,6 +115,7 @@ import localeSl from '@angular/common/locales/sl' import localeSr from '@angular/common/locales/sr' import localeSv from '@angular/common/locales/sv' import localeTr from '@angular/common/locales/tr' +import localeUk from '@angular/common/locales/uk' import localeZh from '@angular/common/locales/zh' registerLocaleData(localeAr) @@ -140,6 +141,7 @@ registerLocaleData(localeSl) registerLocaleData(localeSr) registerLocaleData(localeSv) registerLocaleData(localeTr) +registerLocaleData(localeUk) registerLocaleData(localeZh) function initializeApp(settings: SettingsService) { diff --git a/src-ui/src/app/services/settings.service.ts b/src-ui/src/app/services/settings.service.ts index dcb64210a..c1736c0e4 100644 --- a/src-ui/src/app/services/settings.service.ts +++ b/src-ui/src/app/services/settings.service.ts @@ -302,6 +302,12 @@ export class SettingsService { englishName: 'Turkish', dateInputFormat: 'yyyy-mm-dd', }, + { + code: 'uk-ua', + name: $localize`Ukranian`, + englishName: 'Ukranian', + dateInputFormat: 'dd.mm.yyyy', + }, { code: 'zh-cn', name: $localize`Chinese Simplified`, diff --git a/src/paperless/settings.py b/src/paperless/settings.py index 39460066e..65a6cfd46 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -586,6 +586,7 @@ LANGUAGES = [ ("sr-cs", _("Serbian")), ("sv-se", _("Swedish")), ("tr-tr", _("Turkish")), + ("uk-ua", _("Ukranian")), ("zh-cn", _("Chinese Simplified")), ] From b961df90a72f506f4a58c236fd3712cebb1523ff Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Mon, 7 Aug 2023 12:08:35 -0700 Subject: [PATCH 03/13] Reduces the 2 mail tests flakiness --- Pipfile | 2 ++ Pipfile.lock | 12 +++++++++++- src/paperless_mail/tests/test_mail.py | 15 +++++++-------- 3 files changed, 20 insertions(+), 9 deletions(-) diff --git a/Pipfile b/Pipfile index 4bd0ed325..623ba5e1f 100644 --- a/Pipfile +++ b/Pipfile @@ -81,12 +81,14 @@ pytest-httpx = "*" pytest-env = "*" pytest-sugar = "*" pytest-xdist = "*" +pytest-rerunfailures = "*" "pdfminer.six" = "*" imagehash = "*" daphne = "*" # Documentation mkdocs-material = "*" + [typing-dev] mypy = "*" types-Pillow = "*" diff --git a/Pipfile.lock b/Pipfile.lock index 82337c08d..30ec9c90b 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "3913b5fd4b48095586e377129b3ba37f2d4610f44ae0edab736f81e103a8a837" + "sha256": "6ec43d0989237b0ed7da3e3306be49a1c637d2ad44222cf097b25c64c3e8d76d" }, "pipfile-spec": 6, "requires": {}, @@ -2921,6 +2921,7 @@ "sha256:b4bf8c45bd59934ed84001ad51e11b4ee40d40a1229d2c79f9c592b0a3f6bd8a" ], "index": "pypi", + "markers": "python_version >= '3.7'", "version": "==7.4.0" }, "pytest-cov": { @@ -2955,6 +2956,15 @@ "index": "pypi", "version": "==0.22.0" }, + "pytest-rerunfailures": { + "hashes": [ + "sha256:784f462fa87fe9bdf781d0027d856b47a4bfe6c12af108f6bd887057a917b48e", + "sha256:9a1afd04e21b8177faf08a9bbbf44de7a0fe3fc29f8ddbe83b9684bd5f8f92a9" + ], + "index": "pypi", + "markers": "python_version >= '3.7'", + "version": "==12.0" + }, "pytest-sugar": { "hashes": [ "sha256:8cb5a4e5f8bbcd834622b0235db9e50432f4cbd71fef55b467fe44e43701e062", diff --git a/src/paperless_mail/tests/test_mail.py b/src/paperless_mail/tests/test_mail.py index 82b874fd8..d7f543def 100644 --- a/src/paperless_mail/tests/test_mail.py +++ b/src/paperless_mail/tests/test_mail.py @@ -9,6 +9,7 @@ from typing import Optional from typing import Union from unittest import mock +import pytest from django.core.management import call_command from django.db import DatabaseError from django.test import TestCase @@ -400,8 +401,7 @@ class TestMail( attachments=2, ) - account = MailAccount() - account.save() + account = MailAccount.objects.create() rule = MailRule( assign_title_from=MailRule.TitleSource.FROM_FILENAME, account=account, @@ -445,8 +445,7 @@ class TestMail( ], ) - account = MailAccount() - account.save() + account = MailAccount.objects.create() rule = MailRule( assign_title_from=MailRule.TitleSource.FROM_FILENAME, account=account, @@ -475,8 +474,7 @@ class TestMail( ], ) - account = MailAccount() - account.save() + account = MailAccount.objects.create() rule = MailRule( assign_title_from=MailRule.TitleSource.FROM_FILENAME, account=account, @@ -504,8 +502,7 @@ class TestMail( ], ) - account = MailAccount() - account.save() + account = MailAccount.objects.create() rule = MailRule( assign_title_from=MailRule.TitleSource.FROM_FILENAME, account=account, @@ -696,6 +693,7 @@ class TestMail( self.assertEqual(len(self.bogus_mailbox.fetch("UNFLAGGED", False)), 1) self.assertEqual(len(self.bogus_mailbox.messages), 3) + @pytest.mark.flaky(reruns=4) def test_handle_mail_account_move(self): account = MailAccount.objects.create( name="test", @@ -854,6 +852,7 @@ class TestMail( ): self.mail_account_handler.handle_mail_account(account) + @pytest.mark.flaky(reruns=4) def test_error_skip_account(self): _ = MailAccount.objects.create( name="test", From 421e78a74809f71ef106316113080b39bb340e8e Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 7 Aug 2023 15:48:00 -0700 Subject: [PATCH 04/13] Handle very old date strings in correspondent list --- .../document-detail.component.spec.ts | 2 +- .../correspondent-list.component.spec.ts | 29 +++++++++++++++---- .../correspondent-list.component.ts | 14 ++++++++- .../src/app/data/paperless-correspondent.ts | 2 +- 4 files changed, 39 insertions(+), 8 deletions(-) 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 6ca99803c..dee1435b7 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 @@ -668,7 +668,7 @@ describe('DocumentDetailComponent', () => { const object = { id: 22, name: 'Correspondent22', - last_correspondence: new Date(), + last_correspondence: new Date().toISOString(), } as PaperlessCorrespondent const qfSpy = jest.spyOn(documentListViewService, 'quickFilter') component.filterDocuments([object]) 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 4f68a609b..d2168d8bd 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 @@ -31,8 +31,12 @@ describe('CorrespondentListComponent', () => { ReactiveFormsModule, ], }).compileComponents() - correspondentsService = TestBed.inject(CorrespondentService) + }) + + // Tests are included in management-list.compontent.spec.ts + + it('should use correct delete message', () => { jest.spyOn(correspondentsService, 'listFiltered').mockReturnValue( of({ count: 3, @@ -56,15 +60,30 @@ describe('CorrespondentListComponent', () => { fixture = TestBed.createComponent(CorrespondentListComponent) component = fixture.componentInstance fixture.detectChanges() - }) - // Tests are included in management-list.compontent.spec.ts - - it('should use correct delete message', () => { expect( component.getDeleteMessage({ id: 1, name: 'Correspondent1' }) ).toEqual( 'Do you really want to delete the correspondent "Correspondent1"?' ) }) + + it('should support very old date strings', () => { + jest.spyOn(correspondentsService, 'listFiltered').mockReturnValue( + of({ + count: 1, + all: [1], + results: [ + { + id: 1, + name: 'Correspondent1', + last_correspondence: '1832-12-31T15:32:54-07:52:58', + }, + ], + }) + ) + fixture = TestBed.createComponent(CorrespondentListComponent) + component = fixture.componentInstance + fixture.detectChanges() + }) }) diff --git a/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.ts b/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.ts index d75d208ef..06f9d11b1 100644 --- a/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.ts +++ b/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.ts @@ -44,7 +44,19 @@ export class CorrespondentListComponent extends ManagementListComponent { - return this.datePipe.transform(c.last_correspondence) + if (c.last_correspondence) { + let date = new Date(c.last_correspondence) + if (date.toString() == 'Invalid Date') { + // very old date strings are unable to be parsed + date = new Date( + c.last_correspondence + ?.toString() + .replace(/-(\d\d):\d\d:\d\d/gm, `-$1:00`) + ) + } + return this.datePipe.transform(date) + } + return '' }, }, ] diff --git a/src-ui/src/app/data/paperless-correspondent.ts b/src-ui/src/app/data/paperless-correspondent.ts index 142efd452..89aa6a694 100644 --- a/src-ui/src/app/data/paperless-correspondent.ts +++ b/src-ui/src/app/data/paperless-correspondent.ts @@ -1,5 +1,5 @@ import { MatchingModel } from './matching-model' export interface PaperlessCorrespondent extends MatchingModel { - last_correspondence?: Date + last_correspondence?: string // Date } From 022bb272e6f3b43a66ac7ec6a65f5ec9fca245b6 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 8 Aug 2023 16:27:40 -0700 Subject: [PATCH 05/13] Restrict status messages by owner if set --- .../data/websocket-consumer-status-message.ts | 1 + .../services/consumer-status.service.spec.ts | 45 ++++++++++++++++++- .../app/services/consumer-status.service.ts | 14 +++++- src/documents/consumer.py | 3 +- 4 files changed, 60 insertions(+), 3 deletions(-) diff --git a/src-ui/src/app/data/websocket-consumer-status-message.ts b/src-ui/src/app/data/websocket-consumer-status-message.ts index aecdda7c0..d1ac590b1 100644 --- a/src-ui/src/app/data/websocket-consumer-status-message.ts +++ b/src-ui/src/app/data/websocket-consumer-status-message.ts @@ -6,4 +6,5 @@ export interface WebsocketConsumerStatusMessage { status?: string message?: string document_id: number + owner_id?: number } 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 3725f847d..d3867e889 100644 --- a/src-ui/src/app/services/consumer-status.service.spec.ts +++ b/src-ui/src/app/services/consumer-status.service.spec.ts @@ -12,6 +12,7 @@ import { environment } from 'src/environments/environment' import { DocumentService } from './rest/document.service' import { HttpEventType, HttpResponse } from '@angular/common/http' import WS from 'jest-websocket-mock' +import { SettingsService } from './settings.service' describe('ConsumerStatusService', () => { let httpTestingController: HttpTestingController @@ -24,7 +25,21 @@ describe('ConsumerStatusService', () => { beforeEach(() => { TestBed.configureTestingModule({ - providers: [ConsumerStatusService, DocumentService], + providers: [ + ConsumerStatusService, + DocumentService, + SettingsService, + { + provide: SettingsService, + useValue: { + currentUser: { + id: 1, + username: 'testuser', + is_superuser: false, + }, + }, + }, + ], imports: [HttpClientTestingModule], }) @@ -275,4 +290,32 @@ describe('ConsumerStatusService', () => { 1 ) }) + + it('should not notify current user if document has different expected owner', () => { + consumerStatusService.connect() + server.send({ + task_id: '1234', + filename: 'file1.pdf', + current_progress: 50, + max_progress: 100, + docuement_id: 12, + owner_id: 1, + status: 'WORKING', + }) + + server.send({ + task_id: '5678', + filename: 'file2.pdf', + current_progress: 50, + max_progress: 100, + docuement_id: 13, + owner_id: 2, + status: 'WORKING', + }) + + consumerStatusService.disconnect() + expect(consumerStatusService.getConsumerStatusNotCompleted()).toHaveLength( + 1 + ) + }) }) diff --git a/src-ui/src/app/services/consumer-status.service.ts b/src-ui/src/app/services/consumer-status.service.ts index 394975333..3e21da138 100644 --- a/src-ui/src/app/services/consumer-status.service.ts +++ b/src-ui/src/app/services/consumer-status.service.ts @@ -2,6 +2,7 @@ import { Injectable } from '@angular/core' import { Subject } from 'rxjs' import { environment } from 'src/environments/environment' import { WebsocketConsumerStatusMessage } from '../data/websocket-consumer-status-message' +import { SettingsService } from './settings.service' // see ConsumerFilePhase in src/documents/consumer.py export enum FileStatusPhase { @@ -44,6 +45,8 @@ export class FileStatus { documentId: number + ownerId: number + getProgress(): number { switch (this.phase) { case FileStatusPhase.STARTED: @@ -81,7 +84,7 @@ export class FileStatus { providedIn: 'root', }) export class ConsumerStatusService { - constructor() {} + constructor(private settingsService: SettingsService) {} private statusWebSocket: WebSocket @@ -143,6 +146,15 @@ export class ConsumerStatusService { this.statusWebSocket.onmessage = (ev) => { let statusMessage: WebsocketConsumerStatusMessage = JSON.parse(ev['data']) + // tasks are async so we rely on checking user id + if ( + statusMessage.owner_id && + statusMessage.owner_id !== this.settingsService.currentUser?.id && + !this.settingsService.currentUser?.is_superuser + ) { + return + } + let statusMessageGet = this.get( statusMessage.task_id, statusMessage.filename diff --git a/src/documents/consumer.py b/src/documents/consumer.py index 6fa830101..0ec6090c2 100644 --- a/src/documents/consumer.py +++ b/src/documents/consumer.py @@ -90,6 +90,7 @@ class Consumer(LoggingMixin): "status": status, "message": message, "document_id": document_id, + "owner_id": self.override_owner_id if self.override_owner_id else None, } async_to_sync(self.channel_layer.group_send)( "status_updates", @@ -118,7 +119,7 @@ class Consumer(LoggingMixin): self.override_document_type_id = None self.override_asn = None self.task_id = None - self.owner_id = None + self.override_owner_id = None self.channel_layer = get_channel_layer() From 9291c98189963d69098359c6bb105762c8e3d9dd Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 8 Aug 2023 23:59:13 -0700 Subject: [PATCH 06/13] Improve 404 navigation and styling --- src-ui/messages.xlf | 83 ++++++++++--------- src-ui/src/app/app.module.ts | 2 + .../common/logo/logo.component.html | 18 ++++ .../common/logo/logo.component.scss | 0 .../common/logo/logo.component.spec.ts | 36 ++++++++ .../components/common/logo/logo.component.ts | 18 ++++ .../dashboard/dashboard.component.html | 19 +---- .../dashboard/dashboard.component.spec.ts | 2 + .../document-asn.component.spec.ts | 2 +- .../document-asn/document-asn.component.ts | 4 +- .../document-detail.component.spec.ts | 4 +- .../document-detail.component.ts | 8 +- .../document-list.component.spec.ts | 2 +- .../document-list/document-list.component.ts | 4 +- .../not-found/not-found.component.html | 25 ++++-- .../not-found/not-found.component.spec.ts | 7 +- 16 files changed, 160 insertions(+), 74 deletions(-) create mode 100644 src-ui/src/app/components/common/logo/logo.component.html create mode 100644 src-ui/src/app/components/common/logo/logo.component.scss create mode 100644 src-ui/src/app/components/common/logo/logo.component.spec.ts create mode 100644 src-ui/src/app/components/common/logo/logo.component.ts diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index e7dd14aab..28f4b06cb 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -1247,7 +1247,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -2808,43 +2808,43 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -2855,35 +2855,35 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2894,14 +2894,14 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2932,7 +2932,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2959,7 +2959,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 @@ -2968,7 +2968,7 @@ )"/> src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 @@ -3629,14 +3629,14 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 @@ -3907,7 +3907,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 @@ -4903,11 +4903,18 @@ 137 - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 + + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 @@ -5105,28 +5112,28 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 File not found. src/app/services/consumer-status.service.ts - 18 + 19 Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation @@ -5134,7 +5141,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation @@ -5142,7 +5149,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation @@ -5150,7 +5157,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation @@ -5158,49 +5165,49 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Finished. src/app/services/consumer-status.service.ts - 29 + 30 diff --git a/src-ui/src/app/app.module.ts b/src-ui/src/app/app.module.ts index 86b6d29c4..7a94f4316 100644 --- a/src-ui/src/app/app.module.ts +++ b/src-ui/src/app/app.module.ts @@ -92,6 +92,7 @@ import { PermissionsDialogComponent } from './components/common/permissions-dial import { PermissionsFormComponent } from './components/common/input/permissions/permissions-form/permissions-form.component' import { PermissionsFilterDropdownComponent } from './components/common/permissions-filter-dropdown/permissions-filter-dropdown.component' import { UsernamePipe } from './pipes/username.pipe' +import { LogoComponent } from './components/common/logo/logo.component' import localeAr from '@angular/common/locales/ar' import localeBe from '@angular/common/locales/be' @@ -221,6 +222,7 @@ function initializeApp(settings: SettingsService) { PermissionsFormComponent, PermissionsFilterDropdownComponent, UsernamePipe, + LogoComponent, ], imports: [ BrowserModule, diff --git a/src-ui/src/app/components/common/logo/logo.component.html b/src-ui/src/app/components/common/logo/logo.component.html new file mode 100644 index 000000000..6c688902e --- /dev/null +++ b/src-ui/src/app/components/common/logo/logo.component.html @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src-ui/src/app/components/common/logo/logo.component.scss b/src-ui/src/app/components/common/logo/logo.component.scss new file mode 100644 index 000000000..e69de29bb 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 new file mode 100644 index 000000000..118e0e40e --- /dev/null +++ b/src-ui/src/app/components/common/logo/logo.component.spec.ts @@ -0,0 +1,36 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing' + +import { LogoComponent } from './logo.component' +import { By } from '@angular/platform-browser' + +describe('LogoComponent', () => { + let component: LogoComponent + let fixture: ComponentFixture + + beforeEach(() => { + TestBed.configureTestingModule({ + declarations: [LogoComponent], + }) + fixture = TestBed.createComponent(LogoComponent) + component = fixture.componentInstance + fixture.detectChanges() + }) + + it('should support extra classes', () => { + expect(fixture.debugElement.queryAll(By.css('.foo'))).toHaveLength(0) + component.extra_classes = 'foo' + fixture.detectChanges() + expect(fixture.debugElement.queryAll(By.css('.foo'))).toHaveLength(1) + }) + + it('should support setting height', () => { + expect(fixture.debugElement.query(By.css('svg')).attributes.height).toEqual( + '6em' + ) + component.height = '10em' + fixture.detectChanges() + expect(fixture.debugElement.query(By.css('svg')).attributes.height).toEqual( + '10em' + ) + }) +}) diff --git a/src-ui/src/app/components/common/logo/logo.component.ts b/src-ui/src/app/components/common/logo/logo.component.ts new file mode 100644 index 000000000..0c5ecefda --- /dev/null +++ b/src-ui/src/app/components/common/logo/logo.component.ts @@ -0,0 +1,18 @@ +import { Component, Input } from '@angular/core' + +@Component({ + selector: 'app-logo', + templateUrl: './logo.component.html', + styleUrls: ['./logo.component.scss'], +}) +export class LogoComponent { + @Input() + extra_classes: string + + @Input() + height = '6em' + + getClasses() { + return ['logo'].concat(this.extra_classes).join(' ') + } +} diff --git a/src-ui/src/app/components/dashboard/dashboard.component.html b/src-ui/src/app/components/dashboard/dashboard.component.html index f2dcf855e..db396a62b 100644 --- a/src-ui/src/app/components/dashboard/dashboard.component.html +++ b/src-ui/src/app/components/dashboard/dashboard.component.html @@ -1,22 +1,5 @@ - +
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 911565526..6d100510d 100644 --- a/src-ui/src/app/components/dashboard/dashboard.component.spec.ts +++ b/src-ui/src/app/components/dashboard/dashboard.component.spec.ts @@ -16,6 +16,7 @@ import { IfPermissionsDirective } from 'src/app/directives/if-permissions.direct import { NgxFileDropModule } from 'ngx-file-drop' import { RouterTestingModule } from '@angular/router/testing' import { TourNgBootstrapModule, TourService } from 'ngx-ui-tour-ng-bootstrap' +import { LogoComponent } from '../common/logo/logo.component' describe('DashboardComponent', () => { let component: DashboardComponent @@ -33,6 +34,7 @@ describe('DashboardComponent', () => { UploadFileWidgetComponent, IfPermissionsDirective, SavedViewWidgetComponent, + LogoComponent, ], providers: [ PermissionsGuard, diff --git a/src-ui/src/app/components/document-asn/document-asn.component.spec.ts b/src-ui/src/app/components/document-asn/document-asn.component.spec.ts index 62b1113db..c8ad0d13d 100644 --- a/src-ui/src/app/components/document-asn/document-asn.component.spec.ts +++ b/src-ui/src/app/components/document-asn/document-asn.component.spec.ts @@ -53,6 +53,6 @@ describe('DocumentAsnComponent', () => { .mockReturnValue(of(convertToParamMap({ id: '5578' }))) const navigateSpy = jest.spyOn(router, 'navigate') component.ngOnInit() - expect(navigateSpy).toHaveBeenCalledWith(['404']) + expect(navigateSpy).toHaveBeenCalledWith(['404'], { replaceUrl: true }) }) }) diff --git a/src-ui/src/app/components/document-asn/document-asn.component.ts b/src-ui/src/app/components/document-asn/document-asn.component.ts index 4fb9f474a..6003f1621 100644 --- a/src-ui/src/app/components/document-asn/document-asn.component.ts +++ b/src-ui/src/app/components/document-asn/document-asn.component.ts @@ -25,7 +25,9 @@ export class DocumentAsnComponent implements OnInit { if (documentId.length == 1) { this.router.navigate(['documents', documentId[0]]) } else { - this.router.navigate(['404']) + this.router.navigate(['404'], { + replaceUrl: true, + }) } }) }) 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 dee1435b7..bbee477cc 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 @@ -355,14 +355,14 @@ describe('DocumentDetailComponent', () => { .mockReturnValueOnce(throwError(() => new Error('unable to discard'))) component.discard() fixture.detectChanges() - expect(navigateSpy).toHaveBeenCalledWith(['404']) + expect(navigateSpy).toHaveBeenCalledWith(['404'], { replaceUrl: true }) }) it('should 404 on invalid id', () => { jest.spyOn(documentService, 'get').mockReturnValueOnce(of(null)) const navigateSpy = jest.spyOn(router, 'navigate') fixture.detectChanges() - expect(navigateSpy).toHaveBeenCalledWith(['404']) + expect(navigateSpy).toHaveBeenCalledWith(['404'], { replaceUrl: true }) }) it('should support save, close and show success toast', () => { diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts index 7a385bebe..7337028da 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.ts +++ b/src-ui/src/app/components/document-detail/document-detail.component.ts @@ -341,7 +341,9 @@ export class DocumentDetailComponent this.openDocumentService.setDirty(doc, dirty) }, error: (error) => { - this.router.navigate(['404']) + this.router.navigate(['404'], { + replaceUrl: true, + }) }, }) @@ -513,7 +515,9 @@ export class DocumentDetailComponent this.openDocumentService.setDirty(doc, false) }, error: () => { - this.router.navigate(['404']) + this.router.navigate(['404'], { + replaceUrl: true, + }) }, }) } 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 2b14747bf..6e6dd8f6c 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 @@ -259,7 +259,7 @@ describe('DocumentListComponent', () => { .mockReturnValue(of(convertToParamMap({ id: '10' }))) const navigateSpy = jest.spyOn(router, 'navigate') fixture.detectChanges() - expect(navigateSpy).toHaveBeenCalledWith(['404']) + expect(navigateSpy).toHaveBeenCalledWith(['404'], { replaceUrl: true }) }) it('should load saved view from query params', () => { diff --git a/src-ui/src/app/components/document-list/document-list.component.ts b/src-ui/src/app/components/document-list/document-list.component.ts index 32431167b..25a95401f 100644 --- a/src-ui/src/app/components/document-list/document-list.component.ts +++ b/src-ui/src/app/components/document-list/document-list.component.ts @@ -153,7 +153,9 @@ export class DocumentListComponent .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe(({ view }) => { if (!view) { - this.router.navigate(['404']) + this.router.navigate(['404'], { + replaceUrl: true, + }) return } this.unmodifiedSavedView = view diff --git a/src-ui/src/app/components/not-found/not-found.component.html b/src-ui/src/app/components/not-found/not-found.component.html index 913132d1b..4b4dc7c09 100644 --- a/src-ui/src/app/components/not-found/not-found.component.html +++ b/src-ui/src/app/components/not-found/not-found.component.html @@ -1,8 +1,17 @@ -
- - - - - -

404 Not Found

-
+
+
+

404

+
+
+

Not Found

+

+ + + + + Go to Dashboard + +

+
+ +
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 8962d833f..2a0ab9d7c 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 @@ -1,5 +1,7 @@ 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' describe('NotFoundComponent', () => { let component: NotFoundComponent @@ -7,7 +9,7 @@ describe('NotFoundComponent', () => { beforeEach(async () => { TestBed.configureTestingModule({ - declarations: [NotFoundComponent], + declarations: [NotFoundComponent, LogoComponent], }).compileComponents() fixture = TestBed.createComponent(NotFoundComponent) @@ -18,6 +20,7 @@ describe('NotFoundComponent', () => { it('should create component', () => { expect(component).toBeTruthy() - expect(fixture.nativeElement.textContent).toContain('404 Not Found') + expect(fixture.nativeElement.textContent).toContain('Not Found') + expect(fixture.debugElement.queryAll(By.css('a'))).toHaveLength(1) }) }) From 3b666fef77c5c70f006c8d282825a3cd7e572af3 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 9 Aug 2023 08:52:23 -0700 Subject: [PATCH 07/13] Add backend check for ws message ownership --- src-ui/src/app/services/consumer-status.service.ts | 2 +- src/paperless/consumers.py | 13 ++++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/services/consumer-status.service.ts b/src-ui/src/app/services/consumer-status.service.ts index 3e21da138..2b587fbfd 100644 --- a/src-ui/src/app/services/consumer-status.service.ts +++ b/src-ui/src/app/services/consumer-status.service.ts @@ -146,7 +146,7 @@ export class ConsumerStatusService { this.statusWebSocket.onmessage = (ev) => { let statusMessage: WebsocketConsumerStatusMessage = JSON.parse(ev['data']) - // tasks are async so we rely on checking user id + // fallback if backend didnt restrict message if ( statusMessage.owner_id && statusMessage.owner_id !== this.settingsService.currentUser?.id && diff --git a/src/paperless/consumers.py b/src/paperless/consumers.py index 7c34c8c39..cf1a3b548 100644 --- a/src/paperless/consumers.py +++ b/src/paperless/consumers.py @@ -10,6 +10,16 @@ class StatusConsumer(WebsocketConsumer): def _authenticated(self): return "user" in self.scope and self.scope["user"].is_authenticated + def _is_owner_or_unowned(self, data): + return ( + ( + self.scope["user"].is_superuser + or self.scope["user"].id == data["owner_id"] + ) + if "owner_id" in data and "user" in self.scope + else True + ) + def connect(self): if not self._authenticated(): raise DenyConnection @@ -30,4 +40,5 @@ class StatusConsumer(WebsocketConsumer): if not self._authenticated(): self.close() else: - self.send(json.dumps(event["data"])) + if self._is_owner_or_unowned(event["data"]): + self.send(json.dumps(event["data"])) From a0622675fde3165627f831193c521445bcc370f0 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Thu, 10 Aug 2023 10:31:35 -0700 Subject: [PATCH 08/13] Loosen restriction and update a couple of packages which were out of date --- Pipfile | 7 +++--- Pipfile.lock | 65 ++++++++++++++++++++++++++-------------------------- 2 files changed, 35 insertions(+), 37 deletions(-) diff --git a/Pipfile b/Pipfile index 623ba5e1f..c7ab4f831 100644 --- a/Pipfile +++ b/Pipfile @@ -18,7 +18,7 @@ django-celery-results = "*" django-compression-middleware = "*" django-guardian = "*" django-extensions = "*" -django-filter = "~=22.1" +django-filter = "~=23.1" djangorestframework = "~=3.14" djangorestframework-guardian = "*" filelock = "*" @@ -35,8 +35,8 @@ psycopg2 = "*" rapidfuzz = "*" redis = {extras = ["hiredis"], version = "*"} scikit-learn = "~=1.3" -whitenoise = "~=6.3" -watchdog = "~=2.2" +whitenoise = "~=6.5" +watchdog = "~=3.0" whoosh="~=2.7" inotifyrecursive = "~=0.3" ocrmypdf = "~=14.0" @@ -88,7 +88,6 @@ daphne = "*" # Documentation mkdocs-material = "*" - [typing-dev] mypy = "*" types-Pillow = "*" diff --git a/Pipfile.lock b/Pipfile.lock index 30ec9c90b..0a64146bf 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "6ec43d0989237b0ed7da3e3306be49a1c637d2ad44222cf097b25c64c3e8d76d" + "sha256": "7954f2f8a02bde5433df07556cc8758f428fd61e93db849333be33bde80d83ff" }, "pipfile-spec": 6, "requires": {}, @@ -490,11 +490,11 @@ }, "django-filter": { "hashes": [ - "sha256:ed429e34760127e3520a67f415bec4c905d4649fbe45d0d6da37e6ff5e0287eb", - "sha256:ed473b76e84f7e83b2511bb2050c3efb36d135207d0128dfe3ae4b36e3594ba5" + "sha256:2fe15f78108475eda525692813205fa6f9e8c1caf1ae65daa5862d403c6dbf00", + "sha256:d12d8e0fc6d3eb26641e553e5d53b191eb8cec611427d4bdce0becb1f7c172b5" ], "index": "pypi", - "version": "==22.1" + "version": "==23.2" }, "django-guardian": { "hashes": [ @@ -1859,37 +1859,36 @@ }, "watchdog": { "hashes": [ - "sha256:03f342a9432fe08107defbe8e405a2cb922c5d00c4c6c168c68b633c64ce6190", - "sha256:0d9878be36d2b9271e3abaa6f4f051b363ff54dbbe7e7df1af3c920e4311ee43", - "sha256:0e1dd6d449267cc7d6935d7fe27ee0426af6ee16578eed93bacb1be9ff824d2d", - "sha256:2caf77ae137935c1466f8cefd4a3aec7017b6969f425d086e6a528241cba7256", - "sha256:3d2dbcf1acd96e7a9c9aefed201c47c8e311075105d94ce5e899f118155709fd", - "sha256:4109cccf214b7e3462e8403ab1e5b17b302ecce6c103eb2fc3afa534a7f27b96", - "sha256:4cd61f98cb37143206818cb1786d2438626aa78d682a8f2ecee239055a9771d5", - "sha256:53f3e95081280898d9e4fc51c5c69017715929e4eea1ab45801d5e903dd518ad", - "sha256:564e7739abd4bd348aeafbf71cc006b6c0ccda3160c7053c4a53b67d14091d42", - "sha256:5b848c71ef2b15d0ef02f69da8cc120d335cec0ed82a3fa7779e27a5a8527225", - "sha256:5defe4f0918a2a1a4afbe4dbb967f743ac3a93d546ea4674567806375b024adb", - "sha256:6f5d0f7eac86807275eba40b577c671b306f6f335ba63a5c5a348da151aba0fc", - "sha256:7a1876f660e32027a1a46f8a0fa5747ad4fcf86cb451860eae61a26e102c8c79", - "sha256:7a596f9415a378d0339681efc08d2249e48975daae391d58f2e22a3673b977cf", - "sha256:85bf2263290591b7c5fa01140601b64c831be88084de41efbcba6ea289874f44", - "sha256:8a4d484e846dcd75e96b96d80d80445302621be40e293bfdf34a631cab3b33dc", - "sha256:8f2df370cd8e4e18499dd0bfdef476431bcc396108b97195d9448d90924e3131", - "sha256:91fd146d723392b3e6eb1ac21f122fcce149a194a2ba0a82c5e4d0ee29cd954c", - "sha256:95ad708a9454050a46f741ba5e2f3468655ea22da1114e4c40b8cbdaca572565", - "sha256:964fd236cd443933268ae49b59706569c8b741073dbfd7ca705492bae9d39aab", - "sha256:9da7acb9af7e4a272089bd2af0171d23e0d6271385c51d4d9bde91fe918c53ed", - "sha256:a073c91a6ef0dda488087669586768195c3080c66866144880f03445ca23ef16", - "sha256:a74155398434937ac2780fd257c045954de5b11b5c52fc844e2199ce3eecf4cf", - "sha256:aa8b028750b43e80eea9946d01925168eeadb488dfdef1d82be4b1e28067f375", - "sha256:d1f1200d4ec53b88bf04ab636f9133cb703eb19768a39351cee649de21a33697", - "sha256:d9f9ed26ed22a9d331820a8432c3680707ea8b54121ddcc9dc7d9f2ceeb36906", - "sha256:ea5d86d1bcf4a9d24610aa2f6f25492f441960cf04aed2bd9a97db439b643a7b", - "sha256:efe3252137392a471a2174d721e1037a0e6a5da7beb72a021e662b7000a9903f" + "sha256:0e06ab8858a76e1219e68c7573dfeba9dd1c0219476c5a44d5333b01d7e1743a", + "sha256:13bbbb462ee42ec3c5723e1205be8ced776f05b100e4737518c67c8325cf6100", + "sha256:233b5817932685d39a7896b1090353fc8efc1ef99c9c054e46c8002561252fb8", + "sha256:25f70b4aa53bd743729c7475d7ec41093a580528b100e9a8c5b5efe8899592fc", + "sha256:2b57a1e730af3156d13b7fdddfc23dea6487fceca29fc75c5a868beed29177ae", + "sha256:336adfc6f5cc4e037d52db31194f7581ff744b67382eb6021c868322e32eef41", + "sha256:3aa7f6a12e831ddfe78cdd4f8996af9cf334fd6346531b16cec61c3b3c0d8da0", + "sha256:3ed7c71a9dccfe838c2f0b6314ed0d9b22e77d268c67e015450a29036a81f60f", + "sha256:4c9956d27be0bb08fc5f30d9d0179a855436e655f046d288e2bcc11adfae893c", + "sha256:4d98a320595da7a7c5a18fc48cb633c2e73cda78f93cac2ef42d42bf609a33f9", + "sha256:4f94069eb16657d2c6faada4624c39464f65c05606af50bb7902e036e3219be3", + "sha256:5113334cf8cf0ac8cd45e1f8309a603291b614191c9add34d33075727a967709", + "sha256:51f90f73b4697bac9c9a78394c3acbbd331ccd3655c11be1a15ae6fe289a8c83", + "sha256:5d9f3a10e02d7371cd929b5d8f11e87d4bad890212ed3901f9b4d68767bee759", + "sha256:7ade88d0d778b1b222adebcc0927428f883db07017618a5e684fd03b83342bd9", + "sha256:7c5f84b5194c24dd573fa6472685b2a27cc5a17fe5f7b6fd40345378ca6812e3", + "sha256:7e447d172af52ad204d19982739aa2346245cc5ba6f579d16dac4bfec226d2e7", + "sha256:8ae9cda41fa114e28faf86cb137d751a17ffd0316d1c34ccf2235e8a84365c7f", + "sha256:8f3ceecd20d71067c7fd4c9e832d4e22584318983cabc013dbf3f70ea95de346", + "sha256:9fac43a7466eb73e64a9940ac9ed6369baa39b3bf221ae23493a9ec4d0022674", + "sha256:a70a8dcde91be523c35b2bf96196edc5730edb347e374c7de7cd20c43ed95397", + "sha256:adfdeab2da79ea2f76f87eb42a3ab1966a5313e5a69a0213a3cc06ef692b0e96", + "sha256:ba07e92756c97e3aca0912b5cbc4e5ad802f4557212788e72a72a47ff376950d", + "sha256:c07253088265c363d1ddf4b3cdb808d59a0468ecd017770ed716991620b8f77a", + "sha256:c9d8c8ec7efb887333cf71e328e39cffbf771d8f8f95d308ea4125bf5f90ba64", + "sha256:d00e6be486affb5781468457b21a6cbe848c33ef43f9ea4a73b4882e5f188a44", + "sha256:d429c2430c93b7903914e4db9a966c7f2b068dd2ebdd2fa9b9ce094c7d459f33" ], "index": "pypi", - "version": "==2.3.1" + "version": "==3.0.0" }, "watchfiles": { "hashes": [ From a65239f7f14067e792f67496a3fa885b45e6e3f6 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 11 Aug 2023 07:25:31 -0700 Subject: [PATCH 09/13] Correct spelling of Ukrainian --- src-ui/messages.xlf | 4 ++-- src-ui/src/app/services/settings.service.ts | 4 ++-- src/paperless/settings.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 28f4b06cb..865591166 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -5428,8 +5428,8 @@ 301 - - Ukranian + + Ukrainian src/app/services/settings.service.ts 307 diff --git a/src-ui/src/app/services/settings.service.ts b/src-ui/src/app/services/settings.service.ts index c1736c0e4..cf81ff033 100644 --- a/src-ui/src/app/services/settings.service.ts +++ b/src-ui/src/app/services/settings.service.ts @@ -304,8 +304,8 @@ export class SettingsService { }, { code: 'uk-ua', - name: $localize`Ukranian`, - englishName: 'Ukranian', + name: $localize`Ukrainian`, + englishName: 'Ukrainian', dateInputFormat: 'dd.mm.yyyy', }, { diff --git a/src/paperless/settings.py b/src/paperless/settings.py index 65a6cfd46..b33d7fb7d 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -586,7 +586,7 @@ LANGUAGES = [ ("sr-cs", _("Serbian")), ("sv-se", _("Swedish")), ("tr-tr", _("Turkish")), - ("uk-ua", _("Ukranian")), + ("uk-ua", _("Ukrainian")), ("zh-cn", _("Chinese Simplified")), ] From a1c9ab237fcb21377578f5374a9da1d91ce18367 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 11 Aug 2023 07:37:51 -0700 Subject: [PATCH 10/13] Fix light color filled primary button text legibility --- src-ui/src/theme.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src-ui/src/theme.scss b/src-ui/src/theme.scss index ddf635e41..d90afa6c1 100644 --- a/src-ui/src/theme.scss +++ b/src-ui/src/theme.scss @@ -87,6 +87,12 @@ $form-check-radio-checked-bg-image-dark: url("data:image/svg+xml, {{(document.storage_path$ | async)?.name}} -
+
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 407bb01c4..7b3d0a5bb 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 @@ -18,6 +18,7 @@ import { CustomDatePipe } from 'src/app/pipes/custom-date.pipe' import { DocumentTitlePipe } from 'src/app/pipes/document-title.pipe' import { SafeUrlPipe } from 'src/app/pipes/safeurl.pipe' import { DocumentCardLargeComponent } from './document-card-large.component' +import { IsNumberPipe } from 'src/app/pipes/is-number.pipe' const doc = { id: 10, @@ -48,6 +49,7 @@ describe('DocumentCardLargeComponent', () => { CustomDatePipe, IfPermissionsDirective, SafeUrlPipe, + IsNumberPipe, ], providers: [DatePipe], imports: [ 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 d1b8aff95..98d8e2770 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 @@ -65,7 +65,7 @@ {{document.created_date | customDate:'mediumDate'}}
-
+
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 67081cbd5..b4b5efe11 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 @@ -21,6 +21,7 @@ import { of } from 'rxjs' import { By } from '@angular/platform-browser' import { TagComponent } from '../../common/tag/tag.component' import { PaperlessTag } from 'src/app/data/paperless-tag' +import { IsNumberPipe } from 'src/app/pipes/is-number.pipe' const doc = { id: 10, @@ -62,6 +63,7 @@ describe('DocumentCardSmallComponent', () => { IfPermissionsDirective, SafeUrlPipe, TagComponent, + IsNumberPipe, ], providers: [DatePipe], imports: [ 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 6e6dd8f6c..525ac50b2 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 @@ -17,7 +17,6 @@ import { NgbDropdownModule, NgbModal, NgbModalRef, - NgbPagination, NgbPopoverModule, NgbTooltipModule, } from '@ng-bootstrap/ng-bootstrap' @@ -63,6 +62,7 @@ import { HttpErrorResponse } 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/paperless-uisettings' +import { IsNumberPipe } from 'src/app/pipes/is-number.pipe' const docs: PaperlessDocument[] = [ { @@ -126,6 +126,7 @@ describe('DocumentListComponent', () => { DocumentTitlePipe, UsernamePipe, SafeHtmlPipe, + IsNumberPipe, ], providers: [ FilterPipe, diff --git a/src-ui/src/app/pipes/is-number.pipe.spec.ts b/src-ui/src/app/pipes/is-number.pipe.spec.ts new file mode 100644 index 000000000..227ea5572 --- /dev/null +++ b/src-ui/src/app/pipes/is-number.pipe.spec.ts @@ -0,0 +1,13 @@ +import { IsNumberPipe } from './is-number.pipe' + +describe('IsNumberPipe', () => { + it('should detect numbers', () => { + const pipe = new IsNumberPipe() + expect(pipe.transform(0)).toBeTruthy() + expect(pipe.transform(123)).toBeTruthy() + expect(pipe.transform('123')).toBeFalsy() + expect(pipe.transform(null)).toBeFalsy() + expect(pipe.transform(undefined)).toBeFalsy() + expect(pipe.transform(NaN)).toBeFalsy() + }) +}) diff --git a/src-ui/src/app/pipes/is-number.pipe.ts b/src-ui/src/app/pipes/is-number.pipe.ts new file mode 100644 index 000000000..2e1014ade --- /dev/null +++ b/src-ui/src/app/pipes/is-number.pipe.ts @@ -0,0 +1,10 @@ +import { Pipe, PipeTransform } from '@angular/core' + +@Pipe({ + name: 'isNumber', +}) +export class IsNumberPipe implements PipeTransform { + transform(value: any): boolean { + return typeof value === 'number' && !isNaN(value) + } +} From 3e2e485f6660964374a0043e1991b011facb6b61 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 14 Aug 2023 21:43:25 -0700 Subject: [PATCH 12/13] Update playwright --- src-ui/package-lock.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src-ui/package-lock.json b/src-ui/package-lock.json index 9bb722c0b..136652e56 100644 --- a/src-ui/package-lock.json +++ b/src-ui/package-lock.json @@ -4535,13 +4535,13 @@ } }, "node_modules/@playwright/test": { - "version": "1.36.2", - "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.36.2.tgz", - "integrity": "sha512-2rVZeyPRjxfPH6J0oGJqE8YxiM1IBRyM8hyrXYK7eSiAqmbNhxwcLa7dZ7fy9Kj26V7FYia5fh9XJRq4Dqme+g==", + "version": "1.37.0", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.37.0.tgz", + "integrity": "sha512-181WBLk4SRUyH1Q96VZl7BP6HcK0b7lbdeKisn3N/vnjitk+9HbdlFz/L5fey05vxaAhldIDnzo8KUoy8S3mmQ==", "dev": true, "dependencies": { "@types/node": "*", - "playwright-core": "1.36.2" + "playwright-core": "1.37.0" }, "bin": { "playwright": "cli.js" @@ -14615,9 +14615,9 @@ } }, "node_modules/playwright-core": { - "version": "1.36.2", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.36.2.tgz", - "integrity": "sha512-sQYZt31dwkqxOrP7xy2ggDfEzUxM1lodjhsQ3NMMv5uGTRDsLxU0e4xf4wwMkF2gplIxf17QMBCodSFgm6bFVQ==", + "version": "1.37.0", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.37.0.tgz", + "integrity": "sha512-1c46jhTH/myQw6sesrcuHVtLoSNfJv8Pfy9t3rs6subY7kARv0HRw5PpyfPYPpPtQvBOmgbE6K+qgYUpj81LAA==", "dev": true, "bin": { "playwright-core": "cli.js" From 651407c88ec052643416a5518181829179043827 Mon Sep 17 00:00:00 2001 From: "Paperless-ngx Bot [bot]" <99855517+paperlessngx-bot@users.noreply.github.com> Date: Tue, 15 Aug 2023 08:32:03 -0700 Subject: [PATCH 13/13] New Crowdin updates (#3930) * New translations messages.xlf (Ukrainian) [ci skip] * New translations messages.xlf (Ukrainian) [ci skip] * New translations messages.xlf (Ukrainian) [ci skip] * New translations messages.xlf (Ukrainian) [ci skip] * New translations messages.xlf (Ukrainian) [ci skip] * New translations messages.xlf (Spanish) [ci skip] * New translations messages.xlf (Arabic) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (Dutch) [ci skip] * New translations messages.xlf (Slovenian) [ci skip] * New translations messages.xlf (Swedish) [ci skip] * New translations messages.xlf (Afrikaans) [ci skip] * New translations messages.xlf (Slovak) [ci skip] * New translations messages.xlf (Greek) [ci skip] * New translations messages.xlf (Romanian) [ci skip] * New translations messages.xlf (French) [ci skip] * New translations messages.xlf (Belarusian) [ci skip] * New translations messages.xlf (Czech) [ci skip] * New translations messages.xlf (Danish) [ci skip] * New translations messages.xlf (Finnish) [ci skip] * New translations messages.xlf (Hebrew) [ci skip] * New translations messages.xlf (Hungarian) [ci skip] * New translations messages.xlf (Italian) [ci skip] * New translations messages.xlf (Norwegian) [ci skip] * New translations messages.xlf (Polish) [ci skip] * New translations messages.xlf (Portuguese) [ci skip] * New translations messages.xlf (Russian) [ci skip] * New translations messages.xlf (Turkish) [ci skip] * New translations messages.xlf (Chinese Simplified) [ci skip] * New translations messages.xlf (Portuguese, Brazilian) [ci skip] * New translations messages.xlf (Indonesian) [ci skip] * New translations messages.xlf (Croatian) [ci skip] * New translations messages.xlf (Luxembourgish) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations messages.xlf (Ukrainian) [ci skip] * New translations django.po (Turkish) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (Ukrainian) [ci skip] * New translations messages.xlf (French) [ci skip] * New translations messages.xlf (French) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations messages.xlf (Greek) [ci skip] * New translations messages.xlf (Spanish) [ci skip] * New translations messages.xlf (Arabic) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (Dutch) [ci skip] * New translations messages.xlf (Slovenian) [ci skip] * New translations messages.xlf (Swedish) [ci skip] * New translations messages.xlf (Afrikaans) [ci skip] * New translations messages.xlf (Slovak) [ci skip] * New translations messages.xlf (Greek) [ci skip] * New translations messages.xlf (Romanian) [ci skip] * New translations messages.xlf (French) [ci skip] * New translations messages.xlf (Belarusian) [ci skip] * New translations messages.xlf (Czech) [ci skip] * New translations messages.xlf (Danish) [ci skip] * New translations messages.xlf (Finnish) [ci skip] * New translations messages.xlf (Hebrew) [ci skip] * New translations messages.xlf (Hungarian) [ci skip] * New translations messages.xlf (Italian) [ci skip] * New translations messages.xlf (Norwegian) [ci skip] * New translations messages.xlf (Polish) [ci skip] * New translations messages.xlf (Portuguese) [ci skip] * New translations messages.xlf (Russian) [ci skip] * New translations messages.xlf (Turkish) [ci skip] * New translations messages.xlf (Chinese Simplified) [ci skip] * New translations messages.xlf (Portuguese, Brazilian) [ci skip] * New translations messages.xlf (Indonesian) [ci skip] * New translations messages.xlf (Croatian) [ci skip] * New translations messages.xlf (Luxembourgish) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations messages.xlf (Ukrainian) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (Spanish) [ci skip] * New translations messages.xlf (Arabic) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (Dutch) [ci skip] * New translations messages.xlf (Slovenian) [ci skip] * New translations messages.xlf (Swedish) [ci skip] * New translations messages.xlf (Afrikaans) [ci skip] * New translations messages.xlf (Slovak) [ci skip] * New translations messages.xlf (Greek) [ci skip] * New translations messages.xlf (Romanian) [ci skip] * New translations messages.xlf (French) [ci skip] * New translations messages.xlf (Belarusian) [ci skip] * New translations messages.xlf (Czech) [ci skip] * New translations messages.xlf (Danish) [ci skip] * New translations messages.xlf (Finnish) [ci skip] * New translations messages.xlf (Hebrew) [ci skip] * New translations messages.xlf (Hungarian) [ci skip] * New translations messages.xlf (Italian) [ci skip] * New translations messages.xlf (Norwegian) [ci skip] * New translations messages.xlf (Polish) [ci skip] * New translations messages.xlf (Portuguese) [ci skip] * New translations messages.xlf (Russian) [ci skip] * New translations messages.xlf (Turkish) [ci skip] * New translations messages.xlf (Chinese Simplified) [ci skip] * New translations messages.xlf (Portuguese, Brazilian) [ci skip] * New translations messages.xlf (Indonesian) [ci skip] * New translations messages.xlf (Croatian) [ci skip] * New translations messages.xlf (Luxembourgish) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations messages.xlf (Ukrainian) [ci skip] * New translations messages.xlf (Ukrainian) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] --- src-ui/src/locale/messages.af_ZA.xlf | 104 ++++---- src-ui/src/locale/messages.ar_AR.xlf | 104 ++++---- src-ui/src/locale/messages.be_BY.xlf | 104 ++++---- src-ui/src/locale/messages.ca_ES.xlf | 104 ++++---- src-ui/src/locale/messages.cs_CZ.xlf | 104 ++++---- src-ui/src/locale/messages.da_DK.xlf | 104 ++++---- src-ui/src/locale/messages.de_DE.xlf | 106 +++++---- src-ui/src/locale/messages.el_GR.xlf | 106 +++++---- src-ui/src/locale/messages.es_ES.xlf | 104 ++++---- src-ui/src/locale/messages.fi_FI.xlf | 104 ++++---- src-ui/src/locale/messages.fr_FR.xlf | 108 +++++---- src-ui/src/locale/messages.he_IL.xlf | 104 ++++---- src-ui/src/locale/messages.hr_HR.xlf | 104 ++++---- src-ui/src/locale/messages.hu_HU.xlf | 104 ++++---- src-ui/src/locale/messages.id_ID.xlf | 104 ++++---- src-ui/src/locale/messages.it_IT.xlf | 104 ++++---- src-ui/src/locale/messages.lb_LU.xlf | 104 ++++---- src-ui/src/locale/messages.nl_NL.xlf | 104 ++++---- src-ui/src/locale/messages.no_NO.xlf | 104 ++++---- src-ui/src/locale/messages.pl_PL.xlf | 104 ++++---- src-ui/src/locale/messages.pt_BR.xlf | 104 ++++---- src-ui/src/locale/messages.pt_PT.xlf | 104 ++++---- src-ui/src/locale/messages.ro_RO.xlf | 104 ++++---- src-ui/src/locale/messages.ru_RU.xlf | 104 ++++---- src-ui/src/locale/messages.sk_SK.xlf | 104 ++++---- src-ui/src/locale/messages.sl_SI.xlf | 104 ++++---- src-ui/src/locale/messages.sr_CS.xlf | 172 ++++++++------ src-ui/src/locale/messages.sv_SE.xlf | 104 ++++---- src-ui/src/locale/messages.tr_TR.xlf | 104 ++++---- src-ui/src/locale/messages.uk_UA.xlf | 314 +++++++++++++------------ src-ui/src/locale/messages.zh_CN.xlf | 104 ++++---- src/locale/tr_TR/LC_MESSAGES/django.po | 10 +- 32 files changed, 2008 insertions(+), 1512 deletions(-) diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf index 0f55f049e..cba1a093b 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3100,7 +3100,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Fout by ophaal van metadata @@ -3108,7 +3108,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Fout by ophaal van voorstelle. @@ -3116,11 +3116,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Dokument is suksesvol bewaar. @@ -3128,11 +3128,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Fout by bewaar van dokument @@ -3140,7 +3140,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3152,7 +3152,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Wil u regtig dokument skrap"? @@ -3160,7 +3160,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Die lêers vir hierdie dokument word permanent geskrap. Dit kan nie ontdaan word nie. @@ -3168,7 +3168,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Skrap dokument @@ -3176,7 +3176,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Fout by skrap van dokument: @@ -3184,7 +3184,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3196,7 +3196,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Hierdie bewerking sal OCR permanent vir hierdie dokument heruitvoer. @@ -3204,7 +3204,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3236,7 +3236,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3264,7 +3264,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Heruitvoer van OCR sal in die agtergrond begin. Sluit en heropen of herlaai die dokument nadat die bewerking voltooi is om nuwe inhoud te sien. @@ -3272,7 +3272,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Fout by uitvoer van bewerking: @@ -3998,7 +3998,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Aansig “” suksesvol bewaar. @@ -4006,7 +4006,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Aansig “” suksesvol geskep. @@ -4306,7 +4306,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Wil u regtig die korrespondent “” skrap? @@ -5430,13 +5430,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 nie gevind nie + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5658,7 +5666,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Dokument bestaan reeds. @@ -5666,7 +5674,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Dokument met ASN bestaan reeds. @@ -5674,7 +5682,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Lêer nie gevind nie. @@ -5682,7 +5690,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Voorverbruikskrip bestaan nie. @@ -5691,7 +5699,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Fout tydens die uitvoer van die voorverbruikskrip. @@ -5700,7 +5708,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Naverbruikskrip bestaan nie. @@ -5709,7 +5717,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Fout tydens die uitvoer van die naverbruikskrip. @@ -5718,7 +5726,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Nuwe lêer ontvang. @@ -5726,7 +5734,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Lêertipe nie ondersteun nie. @@ -5734,7 +5742,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Dokument word verwerk… @@ -5742,7 +5750,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Kiekie word gegenereer… @@ -5750,7 +5758,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Datum word van dokument verkry… @@ -5758,7 +5766,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Dokument word bewaar… @@ -5766,7 +5774,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Klaar. @@ -6019,11 +6027,19 @@ Turks + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Vereenvoudigde Sjinees @@ -6031,7 +6047,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6039,7 +6055,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Eenmalige migrasie van instellings na die databasis is suksesvol voltooi! @@ -6047,7 +6063,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Kan nie instellings na die databasis migreer nie, probeer handmatig bewaar. @@ -6055,7 +6071,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 U kan die toer weer vanuit die instellingsblad begin. diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index f7e95d4c0..3ecf76245 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 خطأ في استرجاع البيانات الوصفية @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 خطأ في استرجاع الاقتراحات. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 تم حفظ المستند بنجاح. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 خطأ أثناء حفظ المستند @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 هل تريد حقاً حذف المستند " @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 ستحذف ملفات هذا المستند بشكل دائم. لا يمكن التراجع عن هذه العملية. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 حذف مستند @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 حدث خطأ بحذف المستند: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 هذه العملية ستعيد بشكل دائم OCR لهذا المستند. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 إعادة تشغيل OCR ستبدأ في الخلفية. إغلاق وإعادة فتح أو إعادة تحميل هذا المستند بعد اكتمال العملية لمشاهدة محتوى جديد. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 خطأ في تنفيذ العملية: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 عرض "" حفظ بنجاح. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 عرض "" أنشئ بنجاح. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 هل تريد حقاً حذف جهة التراسل" @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 غير متوفر + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 المستند موجود مسبقاً. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 المستند ورقم مسلسل الأرشيف موجودون مسبقاً. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 لم يعثر على الملف. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation البرنامَج النصي قبل-الاستهلاك غير موجود. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation حدث خطأ في أثناء تنفيذ البرنامَج النصي قبل-الاستهلاك. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation البرنامَج النصي بعد-الاستهلاك غير موجود. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation حدث خطأ في أثناء تنفيذ البرنامَج النصي بعد-الاستهلاك. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 استلم ملف جديد. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 نوع الملف غير مدعوم. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 معالجة الوثيقة... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 إنشاء مصغرات... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 استرداد التاريخ من المستند... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 حفظ المستند... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 انتهى. @@ -6017,11 +6025,19 @@ التركية + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 الصينية المبسطة @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 تم بنجاح ترحيل الإعدادات مرة واحدة إلى قاعدة البيانات! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 غير قادر على ترحيل الإعدادات إلى قاعدة البيانات، الرجاء محاولة الحفظ يدوياً. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 يمكنك إعادة تشغيل الجولة من صفحة الإعدادات. diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index ce8dd4ffb..20870c23f 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Error retrieving metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document saved successfully. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Error saving document @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Вы сапраўды хочаце выдаліць дакумент ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Файлы для гэтага дакумента будуць выдалены назаўсёды. Гэтую аперацыю нельга адмяніць. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Выдаліць дакумент @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Error deleting document: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Гэтая аперацыя назаўсёды паўторыць OCR для гэтага дакумента. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Памылка выканання аперацыі: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Прагляд "" паспяхова захаваны. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Прагляд "" створаны паспяхова. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Вы сапраўды хочаце выдаліць карэспандэнта ""? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Не знойдзена + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Дакумент ужо існуе. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Document with ASN already exists. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Файл не знойдзены. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Скрыпт перадапрацоўкі не існуе. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Памылка пры выкананні скрыпту перадапрацоўкі. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Скрыпт постапрацоўкі не існуе. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Памылка пры выкананні скрыпту постапрацоўкі. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Атрыманы новы файл. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Тып файла не падтрымліваецца. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Апрацоўка дакумента... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Стварэнне мініяцюры... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Атрыманне даты з дакумента... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Захаванне дакумента... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Завершана. @@ -6017,11 +6025,19 @@ Турэцкая + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Кітайская спрошчаная @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Паспяхова выканана аднаразовая міграцыя налад у базу! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Немагчыма перанесці налады ў базу дадзеных, паспрабуйце захаваць уручную. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index 6d271bdb2..01caa3b8d 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Error recuperant metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error recuperant suggerències. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document guardat correctament. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Error guardant document @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Realment vols esborrar el document ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Els fitxers d'aquest document se suprimiran permanentment. Aquesta operació no es pot desfer. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Esborra document @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Error esborrant document: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Aquesta operació tornarà a fer l'OCR per a aquest document. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 L'operació de refer OCR començarà en segon pla. Tanqueu i torneu a obrir o recarregueu aquest document un cop finalitzada l'operació per veure contingut nou. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Error executant operació: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Vista "" desada correctament. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Vista "" creada correctament. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Esborrar corresponsal ""? @@ -5428,13 +5428,21 @@ Ha fallat - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 No Trobat + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Document ja existeix. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Ja existeix un document amb aquest ASN. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Arxiu no trobat. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Script pre-consum no existent. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Error al executar script pre-consum. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Script post-consum no existeix. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Error al executar script post-consum. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Nou fitxer rebut. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Tipus de fitxer no suportat. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Processant document... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Generant miniatures... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Recuperant data del document... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Desant document... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Acabat. @@ -6017,11 +6025,19 @@ Turc + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Xinès Simplificat @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Completat correctament la migració de la configuració de la base de dades! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 No es pot migrar la configuració de la base de dades, prova manualment. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 Pots reiniciar el tour des de les opcions. diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index b6f7cac5a..f82c4d414 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Error retrieving metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document saved successfully. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Error saving document @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Opravdu chcete smazat dokument ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Soubory tohoto dokumentu budou trvale smazány. Tuto operaci nelze vrátit zpět. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Smazat dokument @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Error deleting document: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 This operation will permanently redo OCR for this document. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Error executing operation: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Zobrazení "" bylo úspěšně uloženo. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Zobrazení "" bylo úspěšně vytvořeno. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Opravdu chcete smazat korespondenta ""? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Nenalezeno + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Dokument již existuje. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Document with ASN already exists. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Soubor nenalezen. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Předkonzumní skript neexistuje. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Při provádění předkonzumního skriptu došlo k chybě. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Pokonzumní skript neexistuje. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Při provádění pokonzumního skriptu došlo k chybě. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Byl přijat nový soubor. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Typ souboru není podporován. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Zpracovávání dokumentu... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Generování náhledu... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Načítání data z dokumentu... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Ukládání dokumentu... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Dokončeno. @@ -6017,11 +6025,19 @@ Turkish + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chinese Simplified @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Successfully completed one-time migratration of settings to the database! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Unable to migrate settings to the database, please try saving manually. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index 719e7a839..e3076457a 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Error retrieving metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document saved successfully. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Error saving document @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Er du sikker på, at du vil slette dokument ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Filerne for dette dokument vil blive slettet permanent. Denne handling kan ikke fortrydes. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Slet dokument @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Error deleting document: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 This operation will permanently redo OCR for this document. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Error executing operation: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Visning "" er gemt. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Visning "" er oprettet. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Er du sikker på, at du vil slette korrespondenten ""? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Ikke fundet + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Dokumentet eksisterer allerede. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Document with ASN already exists. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Filen blev ikke fundet. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Forbehandlings-script eksisterer ikke. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Fejl under udførelse af forbehandling-script. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Efterbehandlings-script eksisterer ikke. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Fejl under udførelse af efterbehandling-script. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Modtog ny fil. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Filtype understøttes ikke. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Behandler dokument... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Genererer miniaturer... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Uddrager dato fra dokument... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Gemmer dokument... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Færdig. @@ -6017,11 +6025,19 @@ Turkish + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chinese Simplified @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Successfully completed one-time migratration of settings to the database! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Unable to migrate settings to the database, please try saving manually. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index 4716b6393..754ec8668 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Fehler beim Abrufen der Metadaten @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Fehler beim Abrufen der Vorschläge. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Dokument erfolgreich gespeichert. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Fehler beim Speichern des Dokuments @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Möchten Sie das Dokument "" wirklich löschen? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Die Dateien dieses Dokuments werden permanent gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Dokument löschen @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Fehler beim Löschen des Dokuments @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Diese Aktion wird die Texterkennung für das Dokument wiederholen. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 OCR-Vorgang wird im Hintergrund neu gestartet. Schließen oder laden Sie dieses Dokument nach Abschluss der Operation neu oder öffnen Sie es erneut, um neue Inhalte anzuzeigen. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Fehler beim Ausführen der Aktion: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Ansicht "" erfolgreich gespeichert. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Ansicht "" erfolgreich erstellt. @@ -4266,7 +4266,7 @@ src/app/components/document-notes/document-notes.component.ts 67 - Error saving note + Fehler beim Speichern der Notiz Error deleting note: @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Möchten Sie den Korrespondenten "" wirklich löschen? @@ -5428,13 +5428,21 @@ fehlgeschlagene - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Nicht gefunden + Nicht gefunden + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Zur Startseite Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Dokument existiert bereits. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Ein Dokument mit dieser ASN existiert bereits. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Datei nicht gefunden. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Pre-Consume-Skript existiert nicht. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Fehler beim Ausführen des Pre-Consume-Skripts. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Post-Consume-Skript existiert nicht. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Fehler beim Ausführen des Post-Consume-Skripts. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Neue Datei erhalten. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Dateityp wird nicht unterstützt. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Verarbeite Dokument... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Erzeuge Miniaturbild... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Ermittle Datum des Dokuments... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Speichere Dokument... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Abgeschlossen. @@ -6017,11 +6025,19 @@ Türkisch + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chinesisch (vereinfacht) @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Einmalige Migration der Einstellungen in die Datenbank erfolgreich abgeschlossen! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Einstellungen konnten nicht in die Datenbank migriert werden, bitte versuchen Sie es manuell. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 Sie können die Tour in den Einstellungen neu starten. diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index 35ddb89ec..ec0c23cf6 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Σφάλμα ανάκτησης μεταδεδομένων @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Σφάλμα στην ανάκτηση προτάσεων. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Το έγγραφο αποθηκεύτηκε επιτυχώς. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Σφάλμα αποθήκευσης του εγγράφου @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Θέλετε πραγματικά να διαγράψετε το έγγραφο ""; @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Τα αρχεία αυτού του εγγράφου θα διαγραφούν οριστικά. Αυτή η λειτουργία δεν μπορεί να αναιρεθεί. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Διαγραφή εγγράφου @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Σφάλμα διαγραφής εγγράφου: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Αυτή η λειτουργία θα ξανακάνει οριστικά OCR για αυτό το έγγραφο. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Η λειτουργία επανάληψης OCR θα ξεκινήσει στο παρασκήνιο. Κλείστε και ανοίξτε εκ νέου ή επαναφορτώστε αυτό το έγγραφο μετά την ολοκλήρωση της λειτουργίας για να δείτε νέο περιεχόμενο. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Σφάλμα εκτέλεσης λειτουργίας: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Η προβολή "" αποθηκεύτηκε επιτυχώς. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Η προβολή "" δημιουργήθηκε επιτυχώς. @@ -4266,7 +4266,7 @@ src/app/components/document-notes/document-notes.component.ts 67 - Error saving note + Σφάλμα αποθήκευσης σημείωσης Error deleting note: @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Θέλετε πραγματικά να διαγράψετε τον ανταποκριτή ""; @@ -5428,13 +5428,21 @@ απέτυχε - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Δε Βρέθηκε + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Το έγγραφο υπάρχει ήδη. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Το έγγραφο με ASN υπάρχει ήδη. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Το αρχείο δεν βρέθηκε. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Το σενάριο προ-κατανάλωσης δεν υπάρχει. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Σφάλμα κατά την εκτέλεση σεναρίου προ-κατανάλωσης. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Δεν υπάρχει σενάριο μετα-κατανάλωσης. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Σφάλμα κατά την εκτέλεση του σεναρίου μετα-κατανάλωσης. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Λήφθηκε νέο αρχείο. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Ο τύπος αρχείου δεν υποστηρίζεται. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Επεξεργασία εγγράφου... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Δημιουργός εικόνας προεπισκόπησης... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Ανάκτηση ημερομηνίας από το έγγραφο... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Αποθήκευση εγγράφου... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Ολοκληρώθηκε. @@ -6017,11 +6025,19 @@ Τούρκικα + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Κινέζικα Απλοποιημένα @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Ολοκληρώθηκε με επιτυχία η μετεγκατάσταση των ρυθμίσεων στη βάση δεδομένων! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Δεν είναι δυνατή η μετεγκατάσταση των ρυθμίσεων στη βάση δεδομένων, παρακαλώ δοκιμάστε χειροκίνητα. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 Μπορείτε να επανεκκινήσετε την περιήγηση από τη σελίδα ρυθμίσεων. diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index b8bc96fe2..388105102 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Error al recuperar los metadatos @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error al recuperar las sugerencias. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 El documento guardado correctamente. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Error al guardar el documento @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 ¿Estás seguro de querer borrar el documento ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Los archivos para este documento serán borrados permanentemente. Esta operación no se puede deshacer. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Borrar documento @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Error eliminando documento: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Esta operación rehará permanentemente el OCR de este documento. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 La operación de rehacer OCR comenzará en segundo plano. Cierra y vuelve a abrir o vuelve a cargar este documento después de que la operación se haya completado para ver el nuevo contenido. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Error al ejecutar la operación: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Ver "" guardado satisfactoriamente. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Ver "" creado satisfactoriamente. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 ¿Estás seguro de querer borrar el interlocutor ""? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 No encontrado + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 El documento ya existe. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Ya existe un documento con ASN. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Archivo no encontrado @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation No existe script pre-consumo. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Error al ejecutar el script pre-consumo. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation No existe script post-consumo. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Error al ejecutar el script post-consumo. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Nuevo archivo recibido. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Tipo de fichero no soportado. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Procesando documento... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Generando miniatura... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Obteniendo fecha del documento... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Guardando documento... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Completado. @@ -6017,11 +6025,19 @@ Turco + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chino simplificado @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 ¡Se completó con éxito la migración única de la configuración a la base de datos! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 No se puede migrar la configuración a la base de datos, por favor intente guardarla manualmente. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 Puede reiniciar la visita desde la página de configuración. diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index 13c02db40..84b3cc379 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Virhe haettaessa metatietoja @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Asiakirja tallennettu onnistuneesti. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Virhe tallennettaessa asiakirjaa @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Haluatko varmasti poistaa asiakirjan ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Tämän asiakirjan tiedostot poistetaan pysyvästi. Tätä toimintoa ei voi peruuttaa. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Poista asiakirja @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Virhe poistettaessa asiakirjaa: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Tämä toiminto suorittaa OCR:n uudelleen. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 OCR-toiminto alkaa taustalla. Sulje ja avaa uudelleen tämä asiakirja tai lataa se uudelleen, kun toiminto on suoritettu nähdäksesi uuden sisällön. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Virhe suoritettaessa toimintoa: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Näkymä "" tallennettu onnistuneesti. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Näkymä "" luotu onnistuneesti. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Haluatko varmasti poistaa kirjeenvaihtajan ""? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Ei löytynyt + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Asiakirja on jo olemassa. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Asiakirja ASN:llä on jo olemassa. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Tiedostoa ei löydy. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Esikulutusskriptiä ei ole olemassa. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Virhe suoritettaessa pre-consume skriptiä. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Kulutuksen jälkeistä skriptiä ei ole olemassa. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Virhe suoritettaessa post-consume skriptiä. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Uusi tiedosto vastaanotettu. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Tiedostotyyppiä ei tueta. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Asiakirjaa käsitellään... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Thumbnailia luodaan... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Haetaan päivämäärää asiakirjasta... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Asiakirjan tallennus käynnissä... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Valmis. @@ -6017,11 +6025,19 @@ Turkki + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Kiina (yksinkertaistettu) @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Kertaluontoinen asetusten migratointi tietokantaan suoritettu onnistuneesti! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Asetuksia ei saatu migratoitua tietokantaan. Yritä tallennusta manuaalisesti. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 155f07241..7fca0dc40 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Erreur lors de la récupération des métadonnées @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Erreur lors de la récupération des suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document enregistré avec succès. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Erreur lors de la sauvegarde du document @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Voulez-vous vraiment supprimer le document "" ? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Les fichiers liés à ce document seront supprimés définitivement. Cette action est irréversible. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Supprimer le document @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Erreur lors de la suppression du document : @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Cette opération écrasera la ROC pour ce document. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 La relance de la ROC va démarrer en arrière-plan. Fermez et réouvrez ou recharger ce document une fois l'opération terminée pour voir le nouveau contenu. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Erreur lors de l'exécution de l'opération : @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Vue "" enregistrée avec succès. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Vue "" créée avec succès. @@ -4260,13 +4260,13 @@ Supprimer une note - + Error saving note src/app/components/document-notes/document-notes.component.ts 67 - Error saving note + Erreur lors de la sauvegarde de la note Error deleting note: @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Voulez-vous vraiment supprimer le correspondant "" ? @@ -5428,13 +5428,21 @@ échec - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Non trouvé + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Le document existe déjà. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Un document avec un ASN identique existe déjà. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Fichier non trouvé. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Le script de pré-traitement n'existe pas. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Erreur lors de l'exécution du script de pré-traitement. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Le script de post-traitement n'existe pas. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Erreur lors de l'exécution du script de post-traitement. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Réception d'un nouveau fichier. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Type de fichier non pris en charge. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Traitement du document... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Génération de la vignette... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Extraction de la date du document... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Enregistrement du document... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Terminé. @@ -6017,11 +6025,19 @@ Turc + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chinois simplifié @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 La migration des paramètres vers la base de données a été effectuée avec succès ! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Impossible de migrer les paramètres vers la base de données, veuillez essayer d’enregistrer manuellement. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 Vous pouvez recommencer la visite depuis les paramètres. diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index fba6ec774..d27b99b55 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 שגיאה באחזור נתונים @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 שגיאה באחזור הצעות. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 מסמך נשמר בהצלחה. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 שגיאה בשמירת מסמך @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 בטוח שברצנך למחוק את המסמך ? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 הקבצים עבור מסמך זה יימחקו לצמיתות. לא ניתן לבטל פעולה זו. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 מחק מסמך @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 שגיאה במחיקת מסמך: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 פעולה זו תבצע סריקת OCR מחודשת של המסמך. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 ביצוע OCR מחדש תתחיל ברקע. סגור ופתח מחדש או רענן את המסמך לאחר שהפעולה תושלם לצפייה בתוכן החדש. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 ארעה שגיאה בביצוע פעולה: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 View "" saved successfully. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 View "" created successfully. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 בטוח שברצנך למחוק את המכותב ? @@ -5428,13 +5428,21 @@ נכשל - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 - לא נמצא + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 המסמך כבר קיים. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Document with ASN already exists. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 קובץ לא נמצא. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation סקריפט לפני-קליטה לא קיים. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation שגיאה בהרצת סקריפט לפני-קליטה. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation סקריפט לאחר-קליטה לא קיים. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation שגיאה בהרצת סקריפט לאחר-קליטה. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 התקבל קובץ חדש. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 סוג קובץ לא נתמך. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 מעבד מסמך... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 יוצר תמונה מוקטנת... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 אוסף תאריך מהמסמך... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 שומר מסמך... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 הושלם. @@ -6017,11 +6025,19 @@ טורקית + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 סינית מופשטת @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 הושלמה בהצלחה העברה חד פעמית של הגדרות למסד הנתונים! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 לא ניתן לבצע העברה של הגדרות למסד הנתונים, נסה לשמור באופן ידני. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index 3ae6b2b88..cef2c985a 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Error retrieving metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document saved successfully. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Error saving document @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Do you really want to delete document ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 The files for this document will be deleted permanently. This operation cannot be undone. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Delete document @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Error deleting document: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 This operation will permanently redo OCR for this document. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Error executing operation: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 View "" saved successfully. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 View "" created successfully. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Do you really want to delete the correspondent ""? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Not Found + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Document already exists. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Document with ASN already exists. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 File not found. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Pre-consume script does not exist. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Error while executing pre-consume script. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Post-consume script does not exist. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Error while executing post-consume script. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Received new file. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 File type not supported. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Processing document... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Generating thumbnail... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Retrieving date from document... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Saving document... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Finished. @@ -6017,11 +6025,19 @@ Turkish + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chinese Simplified @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Successfully completed one-time migratration of settings to the database! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Unable to migrate settings to the database, please try saving manually. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index 096e4209a..d42271044 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Error retrieving metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document saved successfully. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Error saving document @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Do you really want to delete document ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 The files for this document will be deleted permanently. This operation cannot be undone. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Delete document @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Error deleting document: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 This operation will permanently redo OCR for this document. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Error executing operation: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 View "" saved successfully. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 View "" created successfully. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Do you really want to delete the correspondent ""? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Not Found + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Document already exists. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Document with ASN already exists. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 File not found. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Pre-consume script does not exist. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Error while executing pre-consume script. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Post-consume script does not exist. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Error while executing post-consume script. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Received new file. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 File type not supported. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Processing document... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Generating thumbnail... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Retrieving date from document... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Saving document... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Finished. @@ -6017,11 +6025,19 @@ Turkish + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chinese Simplified @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Successfully completed one-time migratration of settings to the database! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Unable to migrate settings to the database, please try saving manually. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index 2153e2146..4351cb4e3 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Kesalahan saat mendapatkan metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document saved successfully. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Kesalahan saat menyimpan dokumen @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Apakah Anda yakin ingin menghapus dokumen ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 File untuk dokumen akan dihapus secara permanen. Operasi ini tidak dapat diurungkan. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Hapus dokumen @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Kesalahan saat menghapus dokumen: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 This operation will permanently redo OCR for this document. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Kesalahan menjalankan operasi: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 View "" saved successfully. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 View "" created successfully. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Do you really want to delete the correspondent ""? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Not Found + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Document already exists. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Document with ASN already exists. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 File not found. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Pre-consume script does not exist. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Error while executing pre-consume script. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Post-consume script does not exist. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Error while executing post-consume script. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Received new file. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 File type not supported. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Processing document... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Generating thumbnail... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Retrieving date from document... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Saving document... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Finished. @@ -6017,11 +6025,19 @@ Turkish + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chinese Simplified @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Successfully completed one-time migratration of settings to the database! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Unable to migrate settings to the database, please try saving manually. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index 09bd54396..8bd20bdbc 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Errore nel recupero dei metadati @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Errore durante il recupero dei suggerimenti. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Documento salvato con successo. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Errore nel salvare il documento @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Vuoi eliminare il documento ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 I file di questo documento saranno eliminati permanentemente. Questa operazione è irreversibile. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Elimina documento @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Errore durante l'eliminazione del documento: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Questa operazione effettuerà la rilettura OCR di questo documento. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 L'operazione di rilettura OCR inizierà in background. Chiudi e riapri o ricarica questo documento dopo che l'operazione è stata completata per vedere i nuovi contenuti. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Errore nell'esecuzione dell'operazione: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 La vista "" è stata salvata. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 La vista "" è stata creata. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Vuoi eliminare il corrispondente ""? @@ -5428,13 +5428,21 @@ fallito - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Non trovato + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Il documento esiste già. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Il documento con ASN esiste già. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 File non trovato. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Lo script di pre-consume (pre elaborazione) non esiste. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Errore durante l'esecuzione dello script di pre-consume (pre elaborazione). @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Lo script di post-consume (post elaborazione) non esiste. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Errore durante l'esecuzione dello script di post-consume (post elaborazione). @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Nuovo file ricevuto. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Tipo di file non supportato. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Elaborazione documento in corso... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Generazione anteprima in corso... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Recupero della data del documento in corso... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Salvataggio documento in corso... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Completato. @@ -6017,11 +6025,19 @@ Turco + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Cinese semplificato @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 La migrazione delle impostazioni al database è stata completata con successo! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Impossibile migrare le impostazioni nel database, prova a salvare manualmente. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 Puoi riavviare il tour dalla pagina delle impostazioni. diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index 547acbe3f..80bce7738 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Error retrieving metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document saved successfully. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Error saving document @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Wëllt Dir d'Dokument "" wierklech läschen? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 D'Fichiere fir dëst Dokument gi permanent geläscht. Dës Operatioun kann net réckgängeg gemaach ginn. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Dokument läschen @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Error deleting document: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 This operation will permanently redo OCR for this document. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Error executing operation: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Usiicht "" gouf erfollegräich gespäichert. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Vue "" gouf erfollegräich erstallt. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Soll de Korrespondent "" wierklech geläscht ginn? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Net fonnt + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Dokument existéiert schonn. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Document with ASN already exists. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Fichier net fonnt. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Skript fir de Virtraitement existéiert net. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Feeler beim ausféiere vum Skript fir d'Virbehandlung. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Skript fir d'Nobehandlung existéiert net. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Feeler beim ausféiere vum Skript fir d'Nobehandlung. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Neie Fichier emfaangen. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Fichierstyp net ënnerstëtzt. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Dokument gëtt veraarbecht... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Virschaubild gëtt generéiert... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Datum vum Dokument gëtt ermëttelt... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Dokument gëtt gespäichert... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Ofgeschloss. @@ -6017,11 +6025,19 @@ Tierkesch + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chinesesch (Vereinfacht) @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Successfully completed one-time migratration of settings to the database! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Unable to migrate settings to the database, please try saving manually. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index f49bd04d1..76ddf2dce 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Fout bij ophalen metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Fout bij ophalen suggesties. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document succesvol opgeslagen. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Fout bij opslaan document @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Wilt u het document echt verwijderen ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 De bestanden voor dit document worden definitief verwijderd. Deze bewerking kan niet ongedaan worden gemaakt. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Verwijder document @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Fout bij verwijderen document: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Met deze bewerking wordt OCR permanent opnieuw uitgevoerd voor dit document. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Opnieuw uitvoeren van OCR-bewerking begint op de achtergrond. Sluit en heropen of herlaad dit document nadat de bewerking is voltooid om nieuwe inhoud te zien. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Fout tijdens uitvoeren bewerking: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 View "" met succes opgeslagen. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 View "" met succes gemaakt. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Bent u zeker dat u correspondent "" wilt verwijderen? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Niet Gevonden + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Document bestaat al. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Document met ASN bestaat al. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Bestand niet gevonden. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Pre-verwerkingsscript bestaat niet. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Fout tijdens het uitvoeren van het pre-verwerkingsscript @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Post-verwerkingsscript bestaat niet. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Fout tijdens het uitvoeren van het post-verwerkingsscript @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Nieuw bestand ontvangen. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Bestandstype niet ondersteund. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Document wordt verwerkt... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Voorbeeldweergave wordt gemaakt... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Datum wordt gezocht in document... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Document wordt opgeslagen... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Klaar. @@ -6017,11 +6025,19 @@ Turks + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chinees (vereenvoudigd) @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Eenmalige migratie van instellingen naar de database is succesvol voltooid! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Kan instellingen niet migreren naar de database, probeer handmatig op te slaan. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 Je kan de rondleiding herstarten vanaf de instellingen pagina. diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index e1d7e53b5..9ff2319e5 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Feil ved henting av metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Feil ved henting av forslag. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Dokumentet ble lagret. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Feil ved lagring av dokument @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Ønsker du virkelig å slette dokumentet ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Filene til dokumentet vil bli slettet permanent. Denne operasjonen kan ikke angres. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Slett dokument @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Feil ved sletting av dokument: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Denne operasjonen vil permanent gjenta OCR for dette dokumentet. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Feil under kjøring av operasjon: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Visning "" ble lagret. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Visning "" ble opprettet. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Do you really want to delete the correspondent ""? @@ -5428,13 +5428,21 @@ feilet - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 ikke funnet + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Dokumentet finnes allerede. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Dokument med ASN finnes allerede. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Finner ikke filen. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Pre-consume script does not exist. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Error while executing pre-consume script. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Innholdsskript finnes ikke. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Feil under kjøring av skript for postinnhold. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Mottok ny fil. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Filtype støttes ikke. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Behandler dokument... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Genererer miniatyrbilde... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Henter dato fra dokument... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Lagrer dokument... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Fullført. @@ -6017,11 +6025,19 @@ Tyrkisk + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Kinesisk forenklet @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Engangs migrering av innstillinger ble fullført til databasen! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Kunne ikke overføre innstillinger til databasen, prøv å lagre manuelt. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 Du kan starte omvisningen på nytt fra innstillingssiden. diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index f25bcd981..2d551150f 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Błąd podczas pobierania metadanych @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Dokument zapisany pomyślnie. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Błąd podczas zapisywania dokumentu @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Czy na pewno chcesz usunąć dokument""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Pliki tego dokumentu zostaną trwale usunięte. Tej operacji nie można cofnąć. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Usuń dokument @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Błąd podczas usuwania dokumentu: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Ta operacja nieodwracalnie powtórzy OCR dla tego dokumentu. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Powtórny OCR rozpocznie się w tle. Zamknij i ponownie otwórz lub odśwież ten dokument po zakończeniu operacji, aby zobaczyć nową zawartość. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Błąd podczas wykonywania operacji: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Widok "" został zapisany. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Widok "" został utworzony pomyślnie. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Czy na pewno chcesz usunąć nadawcę "? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Nie znaleziono + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Dokument już istnieje. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Dokument z tym ASN już istnieje. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Nie znaleziono pliku. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Skrypt wstępnego przetwarzania nie istnieje. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Wystąpił błąd podczas wykonywania skryptu wstępnego przetwarzania. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Skrypt przetwarzania końcowego nie istnieje. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Wystąpił błąd podczas wykonywania skryptu końcowego przetwarzania. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Otrzymano nowy plik. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Ten typ pliku nie jest obsługiwany. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Przetwarzanie dokumentu... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Generowanie miniaturki... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Pobieranie daty z dokumentu... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Zapisywanie dokumentu... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Ukończono. @@ -6017,11 +6025,19 @@ Turecki + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chiński uproszczony @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Pomyślnie zakończona jednorazowa migracja ustawień do bazy danych! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Nie można przenieść ustawień do bazy danych, spróbuj zapisać ręcznie. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 Możesz ponownie uruchomić przegląd aplikacji ze strony ustawień. diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index 387789784..4e1b93392 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Erro ao recuperar metadados @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document saved successfully. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Erro ao salvar documento @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Você realmente deseja excluir o documento ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Os arquivos desse documento serão excluídos permanentemente. Essa operação não pode ser revertida. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Excluir documento @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Erro ao excluir documento: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Esta operação irá refazer o OCR permanentemente para este documento. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 A operação de refazer o OCR começará em segundo plano. Feche e reabra ou recarregue este documento após a operação ser concluída para ver o novo conteúdo. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Erro ao executar a operação: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Visualização "" salva com sucesso. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Visualização "" criada com sucesso. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Você realmente deseja excluir o correspondente ""? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Não Encontrado + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Documento já existente. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Documento com o mesmo NSA já existe. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Arquivo não encontrado. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Script pré-consumo não existe. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Erro ao executar script pré-consumo. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Script pós-consumo não existe. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Erro ao executar script pós-consumo. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Novo arquivo recebido. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Tipo de arquivo não suportado. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Processando documento... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Gerando imagem... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Buscando data do documento... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Salvando documento... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Encerrado. @@ -6017,11 +6025,19 @@ Turco + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chinês Simplificado @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 A migração de configurações para o banco de dados foi concluída com sucesso! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Não foi possível migrar as configurações para o banco de dados, por favor tente salvar manualmente. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 Você pode reiniciar o tour na página de configurações. diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index 5fd0e2c9e..5c33a1202 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Erro ao obter os metadados @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Erro ao obter sugestões. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Documento guardado com sucesso. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Erro ao gravar documento @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Tem a certeza que quer apagar o documento ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Os ficheiros deste documento serão excluídos permanentemente. Esta operação não pode ser revertida. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Apagar documento @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Erro ao apagar documento: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Esta operação irá refazer permanentemente o OCR para este documento. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 A repetição do OCR irá acontecer em segundo plano. Feche e reabra, ou recarregue este documento depois da operação estar terminada para visualizar o novo conteúdo. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Erro ao executar a operação: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Visualização "" guardado com sucesso. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Visualização "" criada com sucesso. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Tem a certeza que quer eliminar a correspondência ""? @@ -5428,13 +5428,21 @@ falhou - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Não encontrado + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Documento já existe. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Documento com ASN já existe. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Ficheiro não encontrado. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Script de pré-consumo não existe. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Erro ao executar script de pré-consumo. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Script de pós-consumo não existe. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Erro ao executar script de pós-consumo. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Recebido novo ficheiro. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Tipo de ficheiro não suportado. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 A processar documento... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 A gerar miniatura... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 A obter data do documento... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 A guardar documento... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Concluído. @@ -6017,11 +6025,19 @@ Turco + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chinês Simplificado @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Terminado com sucesso a migração única das definições na base de dados! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Incapaz de migrar as definições na base de dados, por favor, tente gravar manualmente. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 Pode reiniciar o tutorial através da página das Configurações. diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index db3e2785e..df7485131 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Error retrieving metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document saved successfully. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Error saving document @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Sunteţi sigur că doriţi să ştergeţi documentul ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Fișierele pentru acest document vor fi șterse permanent. Operațiunea este ireversibila. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Șterge document @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Error deleting document: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 This operation will permanently redo OCR for this document. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Error executing operation: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Vizualizarea "" a fost salvată. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Vizualizarea "" a fost creată. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Sunteți sigur că doriți să ștergeți corespondentul ""? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Pagina nu a fost gasită + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Documentul există deja. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Document with ASN already exists. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Fișierul nu a fost găsit. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Scriptul pre-consum nu există. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Eroare la execuția scriptului pre-consum. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Scriptul post-consum nu există. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Eroare la execuția scriptului post-consum. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Fișier nou primit. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Tip de fișier nesuportat. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Se procesează documentul... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Se generează miniatura... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Se extrage data din document... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Se salvează documentul... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Terminat. @@ -6017,11 +6025,19 @@ Turkish + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chinese Simplified @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Successfully completed one-time migratration of settings to the database! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Unable to migrate settings to the database, please try saving manually. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index 516147f89..c462731ab 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Ошибка при получении метаданных @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Документ успешно сохранён. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Ошибка при сохранении документа @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Вы действительно хотите удалить документ ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Файлы из этого документа будут удалены незамедлительно. Это операцию нельзя отменить. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Удалить документ @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Ошибка при удалении документа: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Это действие перезапишет результаты распознавания текста для этого документа. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Операция повторного распознавания начнется в фоновом режиме. Закройте и повторно откройте или перезагрузите этот документ после завершения операции, чтобы увидеть новое содержимое. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Ошибка выполнения операции: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Представление "" успешно сохранено. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Представление "" успешно создано. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Вы действительно хотите удалить этого корреспондента ""? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Не найдено + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Такой документ уже существует. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Документ с таким ASN уже существует. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Файл не найден. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Скрипт предобработки не существует. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Ошибка при выполнении скрипта предобработки. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Скрипт постобработки не существует. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Ошибка при выполнении скрипта постобработки. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Получен новый файл. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Этот тип файла не поддерживается. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Обработка документа... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Создание эскиза... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Получение даты из документа... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Сохранение документа... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Завершено. @@ -6017,11 +6025,19 @@ Турецкий + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Китайский упрощенный @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Одноразовая миграция настроек в базу данных завершена! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Не удается перенести настройки в базу данных, пожалуйста, попробуйте сохранить вручную. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 Вы можете перезапустить тур со страницы настроек. diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index 7c59bc17a..c660573ed 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Chyba pri získavaní metadát @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Chyba pri získavaní odporúčaní. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Dokument bol úspešne uložený. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Chyba pri ukladaní dokumentu @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Naozaj si želáte vymazať dokument ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Súbory tohto dokumentu budú trvalo odstránené. Túto akciu nie je možné vrátiť. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Zmazať dokument @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Chyba pri mazaní dokumentu: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Táto akcia vykoná opakované OCR dokumentu a natrvalo zmaže pôvodné. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Akcia opakovaného OCR sa spustí na pozadí. Zavrite a otvorte alebo znovu načítajte dokument po skončení akcia, ak chcete zobraziť nový obsah. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Chyba pri vykonávaní akcie: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Pohľad "" úspešne uložený. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Pohľad "" úspešne vytvorený. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Naozaj chcete vymazať korešpondenta""? @@ -5428,13 +5428,21 @@ neúspešné - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 nenájdené + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Dokument už existuje. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Dokument s ASN už existuje. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Súbor nenájdený. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Skript "pred spracovaním" neexistuje. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Chyba pri spúštani skriptu "pred spracovaním". @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Skript "po spracovaní" neexistuje. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Chyba pri spúštaní skriptu "po spracovaní". @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Prijatý nový súbor. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Typ súboru nie je podporovaný. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Spracovanie dokumentu... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Vytváranie náhľadu... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Získavanie dátumu z dokumentu... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Ukladanie dokumentu... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Dokončené. @@ -6017,11 +6025,19 @@ Turkish + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Chinese Simplified @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Migrácia nastavení do databázy úspešne ukončená! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Nie je možné migrovať nastavenia do databázy, skúste uložiť manuálne. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 Sprievodcu môžete znova spustiť z nastavení. diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index e034e69c7..ff6ec6abf 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Error retrieving metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document saved successfully. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Error saving document @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Ali res želite izbrisati dokument ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Datoteke za ta dokument bodo trajno izbrisane. Te operacije ni mogoče razveljaviti. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Izbriši dokument @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Error deleting document: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Ta izbira bo permanentno izvedla ponovni OCR na tem dokumentu. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Napaka pri izvajanju operacije: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Pogled »" je uspešno shranjen. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Pogled »" je bil uspešno ustvarjen. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Ali res želite izbrisati dopisnika ""? @@ -5428,13 +5428,21 @@ neuspešno - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 ni mogoče najti + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Dokument že obstaja. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Document with ASN already exists. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Datoteke ni mogoče najti. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Skripta pre-consume ne obstaja. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Napaka pri izvajanju skripte pre-consume. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Post-consume skripta ne obstaja. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Napaka pri izvajanju skripte post-consume. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Prejeta nova datoteka. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Vrsta datoteke ni podprta. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Obdelava dokumenta... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Generiranje sličice... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Pridobivanje datuma iz dokumenta... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Shranjevanje dokumenta... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Končano. @@ -6017,11 +6025,19 @@ Turščina + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Poenostavljena kitajščina @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Uspešno opravljena enkratna migracija nastavitev v bazo! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Nastavitev ni mogoče preseliti v bazo podatkov, poskusite jih shraniti ročno. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index 9170e21e1..04ab7cf73 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -885,7 +885,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 20 - now + sada After @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -2186,7 +2186,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 56 - Prikaz + Pregled Users: @@ -2278,7 +2278,7 @@ src/app/components/manage/settings/settings.component.html 393 - Izmeni + Uređivanje Edit permissions also grant viewing permissions @@ -2331,7 +2331,7 @@ src/app/components/common/input/tags/tags.component.html 39 - Filter documents with these Tags + Filtriraj dokumenta sa ovom oznakom Set Permissions @@ -2355,7 +2355,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 28 - My documents + Moja dokumenta Shared with me @@ -2363,7 +2363,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 38 - Shared with me + Deljeno samnom Unowned @@ -2371,7 +2371,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 48 - Unowned + Bez vlasnika Users @@ -2391,7 +2391,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 77 - Hide unowned + Sakri bez vlasnika Type @@ -2545,7 +2545,7 @@ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 19 - View Preview + Prikaži pregled Download @@ -3084,7 +3084,7 @@ src/app/components/document-detail/document-detail.component.html 197 - Save & close + Sačuvaj i zatvori An error occurred loading content: @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Greška pri preuzimanju metapodataka @@ -3106,19 +3106,19 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 - Error retrieving suggestions. + Greška pri preuzimanju predloga. Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Dokument je uspešno sačuvan. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Greška prilikom čuvanja dokumenta @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Da li stvarno želite da obrišite dokument ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Fajlovi za ovaj dokument će biti trajno obrisani. Ova operacija se ne može opozvati. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Obriši dokument @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Greška prilikom brisanja dokumenta: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 Ova će operacija trajno ponoviti OCR za ovaj dokument. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Ponovna OCR operacija će početi u pozadini. Zatvorite i ponovo otvorite ili ponovo učitajte ovaj dokument nakon što se operacija završi da biste videli novi sadržaj. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Greška pri izvršavanju operacije: @@ -3646,7 +3646,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 74 - Notes + Beleške Filter by document type @@ -3898,7 +3898,7 @@ src/app/components/document-list/document-list.component.html 152 - Sort by owner + Sortiraj po vlasniku Owner @@ -3910,7 +3910,7 @@ src/app/services/rest/document.service.ts 26 - Owner + Vlasnik Sort by notes @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Prikaz "" je uspešno sačuvan. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Prikaz "" je uspešno kreiran. @@ -4014,7 +4014,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 118,120 - Correspondent: + Korespodent: Without correspondent @@ -4030,7 +4030,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 128,130 - Document type: + Tip dokumenta: Without document type @@ -4046,7 +4046,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 138,140 - Storage path: + Putanja skladišta: Without storage path @@ -4054,7 +4054,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 142 - Without storage path + Bez putanje skladišta Tag: @@ -4062,7 +4062,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 146,147 - Tag: + Oznaka: Without any tag @@ -4094,7 +4094,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 161 - Owner: + Vlasnik: Owner not in: @@ -4102,7 +4102,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 164 - Owner not in: + Vlasnik nije: Without an owner @@ -4110,7 +4110,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 167 - Without an owner + Bez vlasnika Title & content @@ -4266,7 +4266,7 @@ src/app/components/document-notes/document-notes.component.ts 67 - Error saving note + Greška prilikom čuvanja beleške Error deleting note: @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Da li stvarno želite da obrišete ovog korespodenta ""? @@ -5018,7 +5018,7 @@ src/app/components/manage/settings/settings.component.ts 636 - Error while storing settings on server. + Greška prilikom čuvanja podešavanja na serveru. Password has been changed, you will be logged out momentarily. @@ -5042,7 +5042,7 @@ src/app/components/manage/settings/settings.component.ts 698 - Error saving user. + Greška prilikom čuvanja korisnika. Confirm delete user account @@ -5074,7 +5074,7 @@ src/app/components/manage/settings/settings.component.ts 727 - Error deleting user. + Greška prilikom brisanja korisnika. Saved group "". @@ -5090,7 +5090,7 @@ src/app/components/manage/settings/settings.component.ts 758 - Error saving group. + Greška prilikom čuvanja grupe. Confirm delete user group @@ -5122,7 +5122,7 @@ src/app/components/manage/settings/settings.component.ts 787 - Error deleting group. + Greška prilikom brisanja grupe. Saved account "". @@ -5138,7 +5138,7 @@ src/app/components/manage/settings/settings.component.ts 825 - Error saving account. + Greška prilikom čuvanja naloga. Confirm delete mail account @@ -5170,7 +5170,7 @@ src/app/components/manage/settings/settings.component.ts 855 - Error deleting mail account. + Greška prilikom brisanja mejl naloga. Saved rule "". @@ -5186,7 +5186,7 @@ src/app/components/manage/settings/settings.component.ts 888 - Error saving rule. + Greška prilikom čuvanja pravila. Confirm delete mail rule @@ -5218,7 +5218,7 @@ src/app/components/manage/settings/settings.component.ts 918 - Error deleting mail rule. + Greška prilikom brisanja pravila. storage path @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Nije pronađeno + Nije pronađeno + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Idi na kontrolnu tablu Auto: Learn matching automatically @@ -5634,7 +5642,7 @@ src/app/pipes/username.pipe.ts 33 - Shared + Deljeno Yes @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Dokument već postoji. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Dokument sa ovim ASN već postoji. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Fajl nije pronađen. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Pre-consume skripta ne postoji. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Greška prilikom izvršavanja pre-consume skripte. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Post-consume skripta ne postoji. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Greška prilikom izvršavanja post-consume skripte. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Primljen novi fajl. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Tip fajla nije podržan. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Obrađivanje dokumenta... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Generisanje sličice... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Preuzimanje datuma iz dokumenta... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Čuvanje dokumenta... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Završeno. @@ -5983,7 +5991,7 @@ src/app/services/settings.service.ts 277 - Slovak + Slovački Slovenian @@ -6017,11 +6025,19 @@ Turski + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrajinski + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Kineski pojednostavljen @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Uspešno završena jednokratna migracija podešavanja u bazu podataka! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Nije moguće preneti podešavanja u bazu podataka, pokušajte da ih sačuvate ručno. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index 0955cfc42..873c132f9 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Error retrieving metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document saved successfully. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Error saving document @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Vill du verkligen ta bort dokumentet ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Filerna för detta dokument kommer att raderas permanent. Den här åtgärden kan inte ångras. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Ta bort dokument @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Error deleting document: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 This operation will permanently redo OCR for this document. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Error executing operation: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Vy "" sparades. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Vy "" skapades. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Vill du verkligen ta bort korrespondenten ""? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Hittades inte + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Dokumentet finns redan. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Document with ASN already exists. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Filen hittades inte. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Pre-consume skript finns inte. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Fel vid körning av pre-consume skript. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Post-consume skript finns inte. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Fel vid körning av post-consume skript. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Tog emot ny fil. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Filtypen stöds inte. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Bearbetar dokument... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Miniatyrer genereras... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Hämtar datum från dokument... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Sparar dokument... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Slutförd. @@ -6017,11 +6025,19 @@ Turkiska + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Kinesiska (förenklad) @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Successfully completed one-time migratration of settings to the database! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Unable to migrate settings to the database, please try saving manually. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index d7156d38d..feb5dd37d 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Error retrieving metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document saved successfully. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Error saving document @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 "" olan belgeyi gerçekten silmek istiyormusunuz? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Bu belgeye ait dosyalar kalıcı olarak siliniecektir. Bu işlem geri alınamaz. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Belgeyi sil @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Error deleting document: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 This operation will permanently redo OCR for this document. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Error executing operation: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 "" adlı görünüm başarı ile kayıt edildi. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 adlı görünüm başarı ile oluşturuldu. @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 "" muhabirini gerçekten silmek istiyor musunuz? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 Sayfa Bulunamadı + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Belge zaten var. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Document with ASN already exists. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Dosya bulunamadı. @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Tüketim öncesi komut dosyası yok. @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation Tüketim öncesi komut dosyasını işlerken hata oluştu. @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Tüketim sonrası komut dosyası yok. @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation Tüketim sonrası komut dosyasını işlerken hata oluştu. @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Yeni dosya alındı. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Dosya türü desteklenmiyor. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Belge işleniyor... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Küçük resimler oluşturuluyor... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Belgeden tarih alınıyor... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Belge kayıt ediliyor... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Tamamlandı. @@ -6017,11 +6025,19 @@ Türkçe + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Basitleştirilmiş Çince @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Successfully completed one-time migratration of settings to the database! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Unable to migrate settings to the database, please try saving manually. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 You can restart the tour from the settings page. diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf index 49912cef8..a7e12d1c0 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -388,7 +388,7 @@ src/app/app.component.ts 153 - Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms. + Перетягніть сюди документи, щоб почати відвантаження, або покладіть їх в CONSUMPTION_DIR. Ви також можете перетягувати документи будь-де на усіх інших сторінках цього вебдодатку. Як тільки ви це зробите, Paperless-ngx автоматично почне тренування алгоритмів машинного навчання. The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. @@ -436,7 +436,7 @@ src/app/app.component.ts 192 - Перевірте налаштування для різних налаштувань вебдодатку, перемикайте налаштування для збережених переглядів або встановіть перевірку електронної пошти. + Перевірте цю сторінку для різних налаштувань вебдодатку. Тут також можна налаштувати збережені представлення та перевірку електронної пошти. Thank you! 🙏 @@ -468,7 +468,7 @@ src/app/app.component.ts 273 - Ініціалізація завантаження... + Ініціалізація відвантаження... Paperless-ngx @@ -765,7 +765,7 @@ src/app/components/app-frame/app-frame.component.html 213 - is available. + є доступним для оновлення. Click to view. @@ -1045,7 +1045,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 13 - Відповідний алгоритм + Алгоритм зіставлення Matching pattern @@ -1065,7 +1065,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 14 - Відповідний шаблон + Шаблон зіставлення Case insensitive @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -1437,7 +1437,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 41 - Під'єднати поштову скриньку + Додати поштову скриньку Edit mail account @@ -1445,7 +1445,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 45 - Редагувати обліковий запис пошти + Редагувати поштову скриньку Successfully connected to the mail server @@ -1537,7 +1537,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 19 - Paperless will only process mails that match all of the filters specified below. + Paperless-ngx оброблятиме лише ті листи, які відповідають УСІМ фільтрам нижче. Filter from @@ -1601,7 +1601,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 27 - Action is only performed when documents are consumed from the mail. Mails without attachments remain entirely untouched. + Дія виконується лише тоді, коли документи отримуються з пошти. Листи без вкладень не обробляються взагалі. Action parameter @@ -1617,7 +1617,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 29 - Призначити заголовок з + Призначити назву з Assign document type @@ -1805,7 +1805,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 76 - Використовувати тему як заголовок + Використовувати тему як назву Use attachment filename as title @@ -1813,7 +1813,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 80 - Використовувати назву файлу як заголовок + Використовувати назву файлу як назву документа Do not assign a correspondent @@ -1853,7 +1853,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 141 - Create new mail rule + Створити нове правило пошти Edit mail rule @@ -1861,7 +1861,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 145 - Edit mail rule + Редагувати правило пошти Path @@ -1941,7 +1941,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 12 - Inbox tags are automatically assigned to all consumed documents. + Вхідні теги автоматично призначаються усім обробленим документам. Create new tag @@ -2005,7 +2005,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 23 - (Grants all permissions and can view objects) + (Надає всі права доступу та може переглядати об'єкти) Groups @@ -2186,7 +2186,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 56 - View + Переглянути Users: @@ -2286,7 +2286,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 64 - Edit permissions also grant viewing permissions + Право на редагування також надає право на перегляд Add item @@ -2537,7 +2537,7 @@ src/app/services/rest/document.service.ts 20 - Заголовок + Назва View Preview @@ -2545,7 +2545,7 @@ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 19 - View Preview + Попередній перегляд представлення Download @@ -2667,7 +2667,7 @@ 25 This is shown as a summary line when there are more than 5 document in the processing pipeline. - {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + {VAR_PLURAL, plural, =1 {Ще один документ} other {Ще документів}} Processing: @@ -2683,7 +2683,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 42 - Помилка: + Невдачі: Added: @@ -2792,7 +2792,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 89 - Redo OCR + Повторити OCR More like this @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Помилка отримання метаданих @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Помилка при отриманні пропозицій. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Документ успішно збережено. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Помилка при збереженні документа @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 Ви дійсно хочете видалити документ ""? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 Файли для цього документа будуть видалені назавжди. Цю операцію неможливо скасувати. @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 Видалити документ @@ -3174,35 +3174,35 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 - Помилка при видаленні документу: + Помилка при видаленні документа: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts 499 - Redo OCR confirm + Підтвердьте повторення OCR This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 - This operation will permanently redo OCR for this document. + Ця операція перезапише результат OCR для цього документа. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,15 +3262,15 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + Повторна операція OCR розпочнеться у фоновому режимі. Для того, щоб побачити оновлений вміст перевідкрийте документ або перезавантажте сторінку з цим документом після того, як операція завершиться. Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Помилка при виконанні операції: @@ -3606,7 +3606,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - This operation will permanently redo OCR for selected document(s). + Ця операція перезапише результат OCR для вибраних документів. Filter by correspondent @@ -3646,7 +3646,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 74 - Примітки + Нотатки Filter by document type @@ -3714,7 +3714,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 116 - Score: + Релевантність: Toggle tag filter @@ -3730,7 +3730,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 32 - Toggle correspondent filter + Перемкнути фільтр кореспондента Toggle document type filter @@ -3738,7 +3738,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 39 - Toggle document type filter + Перемкнути фільтр типу документа Toggle storage path filter @@ -3746,7 +3746,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 46 - Toggle storage path filter + Перемкнути фільтр шляху зберігання Select none @@ -3814,7 +3814,7 @@ src/app/components/document-list/document-list.component.html 97 - {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + {VAR_PLURAL, plural, =1 {Вибрано з 1 документа} other {Вибрано з документів}} {VAR_PLURAL, plural, =1 {One document} other { documents}} @@ -3822,7 +3822,7 @@ src/app/components/document-list/document-list.component.html 99 - {VAR_PLURAL, plural, =1 {One document} other { documents}} + {VAR_PLURAL, plural, =1 {Один документ} other { документів}} (filtered) @@ -3882,7 +3882,7 @@ src/app/components/document-list/document-list.component.html 138 - Sort by correspondent + Впорядкувати за кореспондентом Sort by title @@ -3890,7 +3890,7 @@ src/app/components/document-list/document-list.component.html 145 - Sort by title + Впорядкувати за назвою Sort by owner @@ -3898,7 +3898,7 @@ src/app/components/document-list/document-list.component.html 152 - Sort by owner + Впорядкувати за власником Owner @@ -3918,7 +3918,7 @@ src/app/components/document-list/document-list.component.html 159 - Sort by notes + Впорядкувати за нотатками Notes @@ -3942,7 +3942,7 @@ src/app/components/document-list/document-list.component.html 166 - Сортувати за типом документа + Впорядкувати за типом документа Sort by storage path @@ -3950,7 +3950,7 @@ src/app/components/document-list/document-list.component.html 173 - Сортувати за шляхом зберігання + Впорядкувати за шляхом зберігання Sort by created date @@ -3958,7 +3958,7 @@ src/app/components/document-list/document-list.component.html 180 - Сортувати за датою створення + Впорядкувати за датою створення Sort by added date @@ -3966,7 +3966,7 @@ src/app/components/document-list/document-list.component.html 187 - Сортувати за датою додавання + Впорядкувати за датою додавання Added @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 Представлення "" успішно збережено. @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 Представлення "" успішно створено. @@ -4078,7 +4078,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 155 - Title: + Назва: ASN: @@ -4102,7 +4102,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 164 - Owner not in: + Власник не в: Without an owner @@ -4118,7 +4118,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 204 - Title & content + Назва та вміст Advanced search @@ -4134,7 +4134,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 215 - More like + Більше схожих equals @@ -4142,7 +4142,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 234 - equals + дорівнює is empty @@ -4150,7 +4150,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 238 - is empty + не заповнено is not empty @@ -4158,7 +4158,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 242 - is not empty + заповнено greater than @@ -4166,7 +4166,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 246 - greater than + більше ніж less than @@ -4174,7 +4174,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 250 - less than + менше ніж Save current view @@ -4182,7 +4182,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 - Save current view + Зберегти поточне представлення Show in sidebar @@ -4214,7 +4214,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 12 - Filter rules error occurred while saving this view + Виявлено помилку фільтрів час збереження цього представлення The error returned was @@ -4222,7 +4222,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 13 - The error returned was + Отримано помилку Enter note @@ -4266,7 +4266,7 @@ src/app/components/document-notes/document-notes.component.ts 67 - Error saving note + Помилка при збереженні нотатки Error deleting note: @@ -4274,7 +4274,7 @@ src/app/components/document-notes/document-notes.component.ts 85 - Помилка при видаленні примітки: + Помилка при видаленні нотатки: correspondent @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 Ви дійсно хочете видалити кореспондента ""? @@ -4330,7 +4330,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 44 - Ви дійсно хочете видалити тип документу ""? + Ви дійсно хочете видалити тип документа ""? Create @@ -4390,7 +4390,7 @@ src/app/components/manage/management-list/management-list.component.html 20 - Відповідність + Зіставлення Document count @@ -4410,7 +4410,7 @@ src/app/components/manage/management-list/management-list.component.html 21 - Document count + Кількість документів Filter Documents @@ -4450,7 +4450,7 @@ src/app/components/manage/management-list/management-list.component.html 73 - {VAR_PLURAL, plural, =1 {One } other { total }} + {VAR_PLURAL, plural, =1 {Один } other { всього }} Automatic @@ -4474,7 +4474,7 @@ src/app/data/matching-model.ts 45 - None + Немає Successfully created . @@ -4714,7 +4714,7 @@ src/app/components/manage/settings/settings.component.html 135 - Оновити перевірку + Перевірка оновлень 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. @@ -4722,7 +4722,7 @@ src/app/components/manage/settings/settings.component.html 139,142 - 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. @@ -4730,7 +4730,7 @@ src/app/components/manage/settings/settings.component.html 144,146 - No tracking data is collected by the app in any way. + Програма жодним чином не відстежує дані. Enable update checking @@ -4746,7 +4746,7 @@ src/app/components/manage/settings/settings.component.html 146 - Note that for users of third-party containers e.g. linuxserver.io this notification may be 'ahead' of the current third-party release. + Зауважте, що для користувачів сторонніх контейнерів, таких як linuxserver.io, це сповіщення може бути передчасним і не відповідати поточному сторонньому релізу. Bulk editing @@ -4810,7 +4810,7 @@ src/app/components/manage/settings/settings.component.html 178 - Показувати сповіщення, коли нові документи виявлені + Показувати сповіщення, коли виявлено нові документи Show notifications when document processing completes successfully @@ -4818,7 +4818,7 @@ src/app/components/manage/settings/settings.component.html 179 - Show notifications when document processing completes successfully + Показувати сповіщення після успішної обробки документа Show notifications when document processing fails @@ -4826,7 +4826,7 @@ src/app/components/manage/settings/settings.component.html 180 - Show notifications when document processing fails + Показувати сповіщення, коли не вдається обробити документ Suppress notifications on dashboard @@ -4858,7 +4858,7 @@ src/app/components/manage/settings/settings.component.html 209,210 -  Appears on +  Показувати на No saved views defined. @@ -4882,7 +4882,7 @@ src/app/components/manage/settings/settings.component.html 245 - Mail accounts + Поштові скриньки Add Account @@ -4906,7 +4906,7 @@ src/app/components/manage/settings/settings.component.html 276 - No mail accounts defined. + Немає поштових скриньок. Mail rules @@ -4930,7 +4930,7 @@ src/app/components/manage/settings/settings.component.html 313 - No mail rules defined. + Немає правил пошти. Users & Groups @@ -4986,7 +4986,7 @@ src/app/components/manage/settings/settings.component.ts 589 - Settings were saved successfully. Reload is required to apply some changes. + Налаштування успішно збережені. Оновіть сторінку для застосування змін. Reload now @@ -5034,7 +5034,7 @@ src/app/components/manage/settings/settings.component.ts 686 - Saved user "". + Користувача "" збережено. Error saving user. @@ -5082,7 +5082,7 @@ src/app/components/manage/settings/settings.component.ts 748 - Saved group "". + Групу "" збережено. Error saving group. @@ -5130,7 +5130,7 @@ src/app/components/manage/settings/settings.component.ts 813 - Saved account "". + Поштову скриньку "" збережено. Error saving account. @@ -5138,7 +5138,7 @@ src/app/components/manage/settings/settings.component.ts 825 - Error saving account. + Помилка збереження облікового запису. Confirm delete mail account @@ -5146,7 +5146,7 @@ src/app/components/manage/settings/settings.component.ts 836 - Confirm delete mail account + Підтвердьте видалення поштової скриньки This operation will permanently delete this mail account. @@ -5154,7 +5154,7 @@ src/app/components/manage/settings/settings.component.ts 837 - This operation will permanently delete this mail account. + Ця операція остаточно видалить цю поштову скриньку. Deleted mail account @@ -5162,7 +5162,7 @@ src/app/components/manage/settings/settings.component.ts 846 - Deleted mail account + Видалено поштову скриньку Error deleting mail account. @@ -5170,7 +5170,7 @@ src/app/components/manage/settings/settings.component.ts 855 - Error deleting mail account. + Помилка видалення поштової скриньки. Saved rule "". @@ -5178,7 +5178,7 @@ src/app/components/manage/settings/settings.component.ts 876 - Saved rule "". + Збережено правило "". Error saving rule. @@ -5194,7 +5194,7 @@ src/app/components/manage/settings/settings.component.ts 899 - Confirm delete mail rule + Підтвердьте видалення правила пошти This operation will permanently delete this mail rule. @@ -5202,7 +5202,7 @@ src/app/components/manage/settings/settings.component.ts 900 - This operation will permanently delete this mail rule. + Ця операція остаточно видалить це правило пошти. Deleted mail rule @@ -5210,7 +5210,7 @@ src/app/components/manage/settings/settings.component.ts 909 - Deleted mail rule + Правило пошти видалено Error deleting mail rule. @@ -5218,7 +5218,7 @@ src/app/components/manage/settings/settings.component.ts 918 - Error deleting mail rule. + Помилка видалення правила пошти. storage path @@ -5274,7 +5274,7 @@ src/app/components/manage/tasks/tasks.component.html 6 - Очистити виділення + Зняти виділення Refresh @@ -5326,7 +5326,7 @@ src/app/components/manage/tasks/tasks.component.html 103 - {VAR_PLURAL, plural, =1 {One task} other { total tasks}} + {VAR_PLURAL, plural, =1 {Одне завдання} other { всього завдань}} Failed @@ -5394,7 +5394,7 @@ src/app/components/manage/tasks/tasks.component.ts 63 - tasks? + завдання? queued @@ -5410,7 +5410,7 @@ src/app/components/manage/tasks/tasks.component.ts 133 - started + запущено completed @@ -5418,7 +5418,7 @@ src/app/components/manage/tasks/tasks.component.ts 135 - completed + завершено failed @@ -5426,15 +5426,23 @@ src/app/components/manage/tasks/tasks.component.ts 137 - failed + невдачі - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 - Не знайдено + Не знайдено + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Перейти на головну Auto: Learn matching automatically @@ -5442,7 +5450,7 @@ src/app/data/matching-model.ts 16 - Auto: Learn matching automatically + Авто: Вивчати зіставлення автоматично Any word @@ -5522,7 +5530,7 @@ src/app/data/matching-model.ts 41 - Fuzzy: Document contains a word similar to this word + Нечіткий пошук: документ містить слово подібне до цього слова None: Disable matching @@ -5530,7 +5538,7 @@ src/app/data/matching-model.ts 46 - None: Disable matching + Немає: вимкнути зіставлення Warning: You have unsaved changes to your document(s). @@ -5594,7 +5602,7 @@ src/app/guards/dirty-saved-view.guard.ts 31 - You have unsaved changes to the saved view + У вас є незбережені зміни у цьому представленні Are you sure you want to close this saved view? @@ -5602,7 +5610,7 @@ src/app/guards/dirty-saved-view.guard.ts 35 - Are you sure you want to close this saved view? + Ви впевнені, що хочете закрити це представлення? Save and close @@ -5618,7 +5626,7 @@ src/app/guards/permissions.guard.ts 34 - You don't have permissions to do that + У вас недостатньо прав доступу для цієї операції (no title) @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 Документ вже існує. @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 Документ з АСН вже існує. @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 Файл не знайдено. @@ -5680,43 +5688,43 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Pre-consume script does not exist. + Pre-consume скрипт не існує. Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Error while executing pre-consume script. + Помилка виконання pre-consume скрипту. Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Post-consume script does not exist. + Post-consume скрипт не існує. Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Error while executing post-consume script. + Помилка виконання post-consume скрипту. Received new file. src/app/services/consumer-status.service.ts - 23 + 24 Отримано новий файл. @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 Тип файлу не підтримується. @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 Обробка документа... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 Генерація мініатюри... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 Отримання дати з документа... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 Збереження документа... @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 Завершено. @@ -5823,7 +5831,7 @@ 33 Score is a value returned by the full text search engine and specifies how well a result matches the given query - Search score + Точність результату English (US) @@ -6017,11 +6025,19 @@ Турецька + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Українська + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 Китайська спрощена @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 Успішно завершено одноразову міграцію параметрів до бази даних! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 Не вдається перенести налаштування в базу даних, спробуйте зберегти вручну. @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 Ви можете пройти знайомство ще раз зі сторінки налаштувань. diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index 09d026f9c..26d2ca314 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -1367,7 +1367,7 @@ src/app/components/dashboard/dashboard.component.html - 27 + 10 src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html @@ -3098,7 +3098,7 @@ Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 395 + 397 Error retrieving metadata @@ -3106,7 +3106,7 @@ Error retrieving suggestions. src/app/components/document-detail/document-detail.component.ts - 417 + 419 Error retrieving suggestions. @@ -3114,11 +3114,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 529 + 533 src/app/components/document-detail/document-detail.component.ts - 537 + 541 Document saved successfully. @@ -3126,11 +3126,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 542 + 546 src/app/components/document-detail/document-detail.component.ts - 587 + 591 Error saving document @@ -3138,7 +3138,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 616 + 620 src/app/components/manage/management-list/management-list.component.ts @@ -3150,7 +3150,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 617 + 621 您真的想要删除文档 “” 吗? @@ -3158,7 +3158,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 618 + 622 此文档的文件将被永久删除。此操作无法撤消。 @@ -3166,7 +3166,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 620 + 624 删除文档 @@ -3174,7 +3174,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 640,642 + 644,646 Error deleting document: @@ -3182,7 +3182,7 @@ Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 663 + 667 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3194,7 +3194,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 664 + 668 This operation will permanently redo OCR for this document. @@ -3202,7 +3202,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 665 + 669 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3234,7 +3234,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 667 + 671 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3262,7 +3262,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 675 + 679 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3270,7 +3270,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 686,688 + 690,692 Error executing operation: @@ -3996,7 +3996,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 205 + 207 视图保存成功。 @@ -4004,7 +4004,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 246 + 248 视图:创建成功。 @@ -4304,7 +4304,7 @@ Do you really want to delete the correspondent ""? src/app/components/manage/correspondent-list/correspondent-list.component.ts - 55 + 67 您真的想要删除联系人" "吗? @@ -5428,13 +5428,21 @@ failed - - 404 Not Found + + Not Found src/app/components/not-found/not-found.component.html - 7 + 6 - 404 页面未找到 + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 12 + + Go to Dashboard Auto: Learn matching automatically @@ -5656,7 +5664,7 @@ Document already exists. src/app/services/consumer-status.service.ts - 16 + 17 文档已存在。 @@ -5664,7 +5672,7 @@ Document with ASN already exists. src/app/services/consumer-status.service.ts - 17 + 18 具有该ASN的文档已存在 @@ -5672,7 +5680,7 @@ File not found. src/app/services/consumer-status.service.ts - 18 + 19 找不到文件。 @@ -5680,7 +5688,7 @@ Pre-consume script does not exist. src/app/services/consumer-status.service.ts - 19 + 20 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation 预处理脚本不存在。 @@ -5689,7 +5697,7 @@ Error while executing pre-consume script. src/app/services/consumer-status.service.ts - 20 + 21 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation 执行前置命令时出错。 @@ -5698,7 +5706,7 @@ Post-consume script does not exist. src/app/services/consumer-status.service.ts - 21 + 22 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation 后处理脚本不存在。 @@ -5707,7 +5715,7 @@ Error while executing post-consume script. src/app/services/consumer-status.service.ts - 22 + 23 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation 执行后处理脚本时出错。 @@ -5716,7 +5724,7 @@ Received new file. src/app/services/consumer-status.service.ts - 23 + 24 收到新文件。 @@ -5724,7 +5732,7 @@ File type not supported. src/app/services/consumer-status.service.ts - 24 + 25 不支持的文件类型。 @@ -5732,7 +5740,7 @@ Processing document... src/app/services/consumer-status.service.ts - 25 + 26 正在处理文档... @@ -5740,7 +5748,7 @@ Generating thumbnail... src/app/services/consumer-status.service.ts - 26 + 27 正在生成缩略图... @@ -5748,7 +5756,7 @@ Retrieving date from document... src/app/services/consumer-status.service.ts - 27 + 28 正在从文档中获取日期... @@ -5756,7 +5764,7 @@ Saving document... src/app/services/consumer-status.service.ts - 28 + 29 正在保存文档… @@ -5764,7 +5772,7 @@ Finished. src/app/services/consumer-status.service.ts - 29 + 30 已完成。 @@ -6017,11 +6025,19 @@ 土耳其语 + + Ukrainian + + src/app/services/settings.service.ts + 307 + + Ukrainian + Chinese Simplified src/app/services/settings.service.ts - 307 + 313 简体中文 @@ -6029,7 +6045,7 @@ ISO 8601 src/app/services/settings.service.ts - 324 + 330 ISO 8601 @@ -6037,7 +6053,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 435 + 441 成功完成设置一次性迁移到数据库! @@ -6045,7 +6061,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 436 + 442 无法将设置迁移到数据库,请尝试手动保存。 @@ -6053,7 +6069,7 @@ You can restart the tour from the settings page. src/app/services/settings.service.ts - 510 + 516 您可以从设置页面重新开始导览。 diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po index 004f431e4..d9e638486 100644 --- a/src/locale/tr_TR/LC_MESSAGES/django.po +++ b/src/locale/tr_TR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-03-03 19:15+0000\n" -"PO-Revision-Date: 2023-03-03 20:41\n" +"PO-Revision-Date: 2023-08-07 01:43\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -23,7 +23,7 @@ msgstr "Belgeler" #: documents/models.py:36 msgid "None" -msgstr "" +msgstr "Hiçbiri" #: documents/models.py:37 msgid "Any word" @@ -68,7 +68,7 @@ msgstr "duyarsızdır" #: documents/models.py:71 msgid "owner" -msgstr "" +msgstr "sahibi" #: documents/models.py:81 documents/models.py:136 msgid "correspondent" @@ -116,7 +116,7 @@ msgstr "depolama dizini" #: documents/models.py:118 msgid "storage paths" -msgstr "" +msgstr "depolama dizinleri" #: documents/models.py:126 msgid "Unencrypted" @@ -192,7 +192,7 @@ msgstr "Depolamadaki geçerli arşiv dosya adı" #: documents/models.py:239 msgid "original filename" -msgstr "" +msgstr "orjinal dosya adı" #: documents/models.py:245 msgid "The original name of the file when it was uploaded"