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)
})
})
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
}
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/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)
+ }
+}
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..2b587fbfd 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'])
+ // fallback if backend didnt restrict message
+ 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-ui/src/app/services/settings.service.ts b/src-ui/src/app/services/settings.service.ts
index dcb64210a..cf81ff033 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`Ukrainian`,
+ englishName: 'Ukrainian',
+ dateInputFormat: 'dd.mm.yyyy',
+ },
{
code: 'zh-cn',
name: $localize`Chinese Simplified`,
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/',
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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3100,7 +3100,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Fout by ophaal van metadata
@@ -3108,7 +3108,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Fout by ophaal van voorstelle.
@@ -3116,11 +3116,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Dokument is suksesvol bewaar.
@@ -3128,11 +3128,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Fout by bewaar van dokument
@@ -3140,7 +3140,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Wil 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
+ 622Die lêers vir hierdie dokument word permanent geskrap. Dit kan nie ontdaan word nie.
@@ -3168,7 +3168,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Skrap dokument
@@ -3176,7 +3176,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Fout by skrap van dokument:
@@ -3184,7 +3184,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Hierdie 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3236,7 +3236,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Heruitvoer 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,692Fout by uitvoer van bewerking:
@@ -3998,7 +3998,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Aansig “” suksesvol bewaar.
@@ -4006,7 +4006,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Aansig “” 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
+ 67Wil u regtig die korrespondent “” skrap?
@@ -5430,13 +5430,21 @@
failed
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5658,7 +5666,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Dokument bestaan reeds.
@@ -5666,7 +5674,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Dokument met ASN bestaan reeds.
@@ -5674,7 +5682,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Lêer nie gevind nie.
@@ -5682,7 +5690,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationVoorverbruikskrip bestaan nie.
@@ -5691,7 +5699,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationFout tydens die uitvoer van die voorverbruikskrip.
@@ -5700,7 +5708,7 @@
Post-consume script does not exist.src/app/services/consumer-status.service.ts
- 21
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationNaverbruikskrip bestaan nie.
@@ -5709,7 +5717,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationFout tydens die uitvoer van die naverbruikskrip.
@@ -5718,7 +5726,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Nuwe lêer ontvang.
@@ -5726,7 +5734,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Lêertipe nie ondersteun nie.
@@ -5734,7 +5742,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Dokument word verwerk…
@@ -5742,7 +5750,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Kiekie word gegenereer…
@@ -5750,7 +5758,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Datum word van dokument verkry…
@@ -5758,7 +5766,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Dokument word bewaar…
@@ -5766,7 +5774,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Klaar.
@@ -6019,11 +6027,19 @@
Turks
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Vereenvoudigde Sjinees
@@ -6031,7 +6047,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6039,7 +6055,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Eenmalige 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
+ 442Kan 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
+ 516U 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/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
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541تم حفظ المستند بنجاح.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591خطأ أثناء حفظ المستند
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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 documentsrc/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 confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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 Foundsrc/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 DashboardAuto: 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
+ 20Pre-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
+ 21Pre-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
+ 22Post-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
+ 23Post-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 Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313الصينية المبسطة
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Error retrieving metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document saved successfully.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Error saving document
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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 documentsrc/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,646Error deleting document:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Redo 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 Foundsrc/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 DashboardAuto: 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
+ 18Document 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
+ 20Pre-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
+ 21Pre-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
+ 22Post-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
+ 23Post-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 Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Кітайская спрошчаная
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 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
+ 516You 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Error recuperant metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error recuperant suggerències.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document guardat correctament.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Error guardant document
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Realment 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
+ 622Els fitxers d'aquest document se suprimiran permanentment. Aquesta operació no es pot desfer.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Esborra document
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Error esborrant document:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Aquesta 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679L'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,692Error executant operació:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Vista "" desada correctament.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Vista "" 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
+ 67Esborrar corresponsal ""?
@@ -5428,13 +5428,21 @@
Ha fallat
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Document ja existeix.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Ja existeix un document amb aquest ASN.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Arxiu no trobat.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationScript pre-consum no existent.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationError al executar script pre-consum.
@@ -5698,7 +5706,7 @@
Post-consume script does not exist.src/app/services/consumer-status.service.ts
- 21
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationScript post-consum no existeix.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationError al executar script post-consum.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Nou fitxer rebut.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Tipus de fitxer no suportat.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Processant document...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Generant miniatures...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Recuperant data del document...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Desant document...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Acabat.
@@ -6017,11 +6025,19 @@
Turc
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Xinès Simplificat
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Completat 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
+ 442No 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
+ 516Pots 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Error retrieving metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document saved successfully.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Error saving document
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Opravdu 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
+ 622Soubory tohoto dokumentu budou trvale smazány. Tuto operaci nelze vrátit zpět.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Smazat dokument
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Error deleting document:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668This 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Redo 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,692Error executing operation:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Zobrazení "" bylo úspěšně uloženo.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Zobrazení "" 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
+ 67Opravdu chcete smazat korespondenta ""?
@@ -5428,13 +5428,21 @@
failed
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Dokument již existuje.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Document with ASN already exists.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Soubor nenalezen.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationPředkonzumní skript neexistuje.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationPř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
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationPokonzumní skript neexistuje.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationPř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
+ 24Byl přijat nový soubor.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Typ souboru není podporován.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Zpracovávání dokumentu...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Generování náhledu...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Načítání data z dokumentu...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Ukládání dokumentu...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Dokončeno.
@@ -6017,11 +6025,19 @@
Turkish
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chinese Simplified
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Successfully 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
+ 442Unable 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
+ 516You 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Error retrieving metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document saved successfully.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Error saving document
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Er 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
+ 622Filerne for dette dokument vil blive slettet permanent. Denne handling kan ikke fortrydes.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Slet dokument
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Error deleting document:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668This 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Redo 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,692Error executing operation:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Visning "" er gemt.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Visning "" 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
+ 67Er du sikker på, at du vil slette korrespondenten ""?
@@ -5428,13 +5428,21 @@
failed
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Dokumentet eksisterer allerede.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Document with ASN already exists.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Filen blev ikke fundet.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationForbehandlings-script eksisterer ikke.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationFejl under udførelse af forbehandling-script.
@@ -5698,7 +5706,7 @@
Post-consume script does not exist.src/app/services/consumer-status.service.ts
- 21
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationEfterbehandlings-script eksisterer ikke.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationFejl under udførelse af efterbehandling-script.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Modtog ny fil.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Filtype understøttes ikke.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Behandler dokument...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Genererer miniaturer...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Uddrager dato fra dokument...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Gemmer dokument...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Færdig.
@@ -6017,11 +6025,19 @@
Turkish
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chinese Simplified
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Successfully 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
+ 442Unable 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
+ 516You 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Fehler beim Abrufen der Metadaten
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Fehler beim Abrufen der Vorschläge.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Dokument erfolgreich gespeichert.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Fehler beim Speichern des Dokuments
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Mö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
+ 622Die Dateien dieses Dokuments werden permanent gelöscht. Diese Aktion kann nicht rückgängig gemacht werden.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Dokument löschen
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Fehler beim Löschen des Dokuments
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Diese 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679OCR-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,692Fehler beim Ausführen der Aktion:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Ansicht "" erfolgreich gespeichert.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Ansicht "" erfolgreich erstellt.
@@ -4266,7 +4266,7 @@
src/app/components/document-notes/document-notes.component.ts67
- Error saving note
+ Fehler beim Speichern der NotizError 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
+ 67Möchten Sie den Korrespondenten "" wirklich löschen?
@@ -5428,13 +5428,21 @@
fehlgeschlagene
-
- 404 Not Found
+
+ Not Foundsrc/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 StartseiteAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Dokument existiert bereits.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Ein Dokument mit dieser ASN existiert bereits.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Datei nicht gefunden.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationPre-Consume-Skript existiert nicht.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationFehler 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
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationPost-Consume-Skript existiert nicht.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationFehler beim Ausführen des Post-Consume-Skripts.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Neue Datei erhalten.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Dateityp wird nicht unterstützt.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Verarbeite Dokument...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Erzeuge Miniaturbild...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Ermittle Datum des Dokuments...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Speichere Dokument...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Abgeschlossen.
@@ -6017,11 +6025,19 @@
Türkisch
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chinesisch (vereinfacht)
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Einmalige 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
+ 442Einstellungen 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
+ 516Sie 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/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
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Το έγγραφο αποθηκεύτηκε επιτυχώς.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Σφάλμα αποθήκευσης του εγγράφου
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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 documentsrc/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 confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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.ts67
- 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 Foundsrc/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 DashboardAuto: 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
+ 20Pre-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
+ 21Pre-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
+ 22Post-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
+ 23Post-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 Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Κινέζικα Απλοποιημένα
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Error al recuperar los metadatos
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error al recuperar las sugerencias.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541El documento guardado correctamente.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Error al guardar el documento
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 622Los archivos para este documento serán borrados permanentemente. Esta operación no se puede deshacer.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Borrar documento
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Error eliminando documento:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Esta 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679La 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,692Error al ejecutar la operación:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Ver "" guardado satisfactoriamente.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Ver "" 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 Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17El documento ya existe.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Ya existe un documento con ASN.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Archivo no encontrado
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationNo existe script pre-consumo.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationError al ejecutar el script pre-consumo.
@@ -5698,7 +5706,7 @@
Post-consume script does not exist.src/app/services/consumer-status.service.ts
- 21
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationNo existe script post-consumo.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationError al ejecutar el script post-consumo.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Nuevo archivo recibido.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Tipo de fichero no soportado.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Procesando documento...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Generando miniatura...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Obteniendo fecha del documento...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Guardando documento...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Completado.
@@ -6017,11 +6025,19 @@
Turco
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chino simplificado
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 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
+ 442No 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
+ 516Puede 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Virhe haettaessa metatietoja
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Asiakirja tallennettu onnistuneesti.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Virhe tallennettaessa asiakirjaa
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Haluatko 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
+ 622Tämän asiakirjan tiedostot poistetaan pysyvästi. Tätä toimintoa ei voi peruuttaa.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Poista asiakirja
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Virhe poistettaessa asiakirjaa:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Tä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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679OCR-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,692Virhe suoritettaessa toimintoa:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Näkymä "" tallennettu onnistuneesti.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Nä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
+ 67Haluatko varmasti poistaa kirjeenvaihtajan ""?
@@ -5428,13 +5428,21 @@
failed
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Asiakirja on jo olemassa.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Asiakirja ASN:llä on jo olemassa.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Tiedostoa ei löydy.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationEsikulutusskriptiä ei ole olemassa.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationVirhe suoritettaessa pre-consume skriptiä.
@@ -5698,7 +5706,7 @@
Post-consume script does not exist.src/app/services/consumer-status.service.ts
- 21
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationKulutuksen jälkeistä skriptiä ei ole olemassa.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationVirhe suoritettaessa post-consume skriptiä.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Uusi tiedosto vastaanotettu.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Tiedostotyyppiä ei tueta.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Asiakirjaa käsitellään...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Thumbnailia luodaan...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Haetaan päivämäärää asiakirjasta...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Asiakirjan tallennus käynnissä...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Valmis.
@@ -6017,11 +6025,19 @@
Turkki
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Kiina (yksinkertaistettu)
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Kertaluontoinen 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
+ 442Asetuksia 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
+ 516You 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Erreur 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
+ 419Erreur 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
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document enregistré avec succès.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Erreur lors de la sauvegarde du document
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Voulez-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
+ 622Les fichiers liés à ce document seront supprimés définitivement. Cette action est irréversible.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Supprimer le document
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Erreur lors de la suppression du document :
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Cette 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679La 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,692Erreur 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
+ 207Vue "" enregistrée avec succès.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Vue "" créée avec succès.
@@ -4260,13 +4260,13 @@
Supprimer une note
-
+ Error saving notesrc/app/components/document-notes/document-notes.component.ts67
- Error saving note
+ Erreur lors de la sauvegarde de la noteError 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
+ 67Voulez-vous vraiment supprimer le correspondant "" ?
@@ -5428,13 +5428,21 @@
échec
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Le document existe déjà.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Un document avec un ASN identique existe déjà.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Fichier non trouvé.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationLe 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
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationErreur 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
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationLe 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
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationErreur 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
+ 24Réception d'un nouveau fichier.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Type de fichier non pris en charge.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Traitement du document...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Génération de la vignette...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Extraction de la date du document...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Enregistrement du document...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Terminé.
@@ -6017,11 +6025,19 @@
Turc
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chinois simplifié
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441La 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
+ 442Impossible 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
+ 516Vous 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/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
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541מסמך נשמר בהצלחה.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591שגיאה בשמירת מסמך
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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 documentsrc/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 confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 207View "" saved successfully.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248View "" 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 Foundsrc/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 DashboardAuto: 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
+ 18Document 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
+ 20Pre-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
+ 21Pre-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
+ 22Post-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
+ 23Post-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 Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313סינית מופשטת
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 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
+ 516You 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Error retrieving metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document saved successfully.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Error saving document
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Do 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
+ 622The files for this document will be deleted permanently. This operation cannot be undone.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Delete document
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Error deleting document:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668This 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Redo 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,692Error executing operation:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207View "" saved successfully.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248View "" 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
+ 67Do you really want to delete the correspondent ""?
@@ -5428,13 +5428,21 @@
failed
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Document already exists.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Document with ASN already exists.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19File not found.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationPre-consume script does not exist.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationError while executing pre-consume script.
@@ -5698,7 +5706,7 @@
Post-consume script does not exist.src/app/services/consumer-status.service.ts
- 21
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationPost-consume script does not exist.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationError while executing post-consume script.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Received new file.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25File type not supported.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Processing document...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Generating thumbnail...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Retrieving date from document...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Saving document...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Finished.
@@ -6017,11 +6025,19 @@
Turkish
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chinese Simplified
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Successfully 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
+ 442Unable 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
+ 516You 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Error retrieving metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document saved successfully.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Error saving document
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Do 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
+ 622The files for this document will be deleted permanently. This operation cannot be undone.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Delete document
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Error deleting document:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668This 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Redo 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,692Error executing operation:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207View "" saved successfully.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248View "" 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
+ 67Do you really want to delete the correspondent ""?
@@ -5428,13 +5428,21 @@
failed
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Document already exists.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Document with ASN already exists.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19File not found.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationPre-consume script does not exist.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationError while executing pre-consume script.
@@ -5698,7 +5706,7 @@
Post-consume script does not exist.src/app/services/consumer-status.service.ts
- 21
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationPost-consume script does not exist.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationError while executing post-consume script.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Received new file.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25File type not supported.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Processing document...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Generating thumbnail...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Retrieving date from document...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Saving document...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Finished.
@@ -6017,11 +6025,19 @@
Turkish
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chinese Simplified
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Successfully 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
+ 442Unable 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
+ 516You 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Kesalahan saat mendapatkan metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document saved successfully.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Kesalahan saat menyimpan dokumen
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Apakah 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
+ 622File untuk dokumen akan dihapus secara permanen. Operasi ini tidak dapat diurungkan.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Hapus dokumen
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Kesalahan saat menghapus dokumen:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668This 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Redo 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,692Kesalahan menjalankan operasi:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207View "" saved successfully.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248View "" 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
+ 67Do you really want to delete the correspondent ""?
@@ -5428,13 +5428,21 @@
failed
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Document already exists.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Document with ASN already exists.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19File not found.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationPre-consume script does not exist.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationError while executing pre-consume script.
@@ -5698,7 +5706,7 @@
Post-consume script does not exist.src/app/services/consumer-status.service.ts
- 21
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationPost-consume script does not exist.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationError while executing post-consume script.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Received new file.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25File type not supported.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Processing document...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Generating thumbnail...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Retrieving date from document...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Saving document...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Finished.
@@ -6017,11 +6025,19 @@
Turkish
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chinese Simplified
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Successfully 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
+ 442Unable 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
+ 516You 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Errore nel recupero dei metadati
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Errore durante il recupero dei suggerimenti.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Documento salvato con successo.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Errore nel salvare il documento
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Vuoi 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
+ 622I file di questo documento saranno eliminati permanentemente. Questa operazione è irreversibile.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Elimina documento
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Errore durante l'eliminazione del documento:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Questa 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679L'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,692Errore nell'esecuzione dell'operazione:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207La vista "" è stata salvata.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248La 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
+ 67Vuoi eliminare il corrispondente ""?
@@ -5428,13 +5428,21 @@
fallito
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Il documento esiste già.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Il documento con ASN esiste già.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19File non trovato.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationLo 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
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationErrore 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
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationLo 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
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationErrore 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
+ 24Nuovo file ricevuto.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Tipo di file non supportato.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Elaborazione documento in corso...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Generazione anteprima in corso...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Recupero della data del documento in corso...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Salvataggio documento in corso...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Completato.
@@ -6017,11 +6025,19 @@
Turco
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Cinese semplificato
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441La 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
+ 442Impossibile 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
+ 516Puoi 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Error retrieving metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document saved successfully.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Error saving document
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Wë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
+ 622D'Fichiere fir dëst Dokument gi permanent geläscht. Dës Operatioun kann net réckgängeg gemaach ginn.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Dokument läschen
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Error deleting document:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668This 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Redo 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,692Error executing operation:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Usiicht "" gouf erfollegräich gespäichert.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Vue "" 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
+ 67Soll de Korrespondent "" wierklech geläscht ginn?
@@ -5428,13 +5428,21 @@
failed
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Dokument existéiert schonn.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Document with ASN already exists.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Fichier net fonnt.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationSkript fir de Virtraitement existéiert net.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationFeeler 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
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationSkript fir d'Nobehandlung existéiert net.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationFeeler beim ausféiere vum Skript fir d'Nobehandlung.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Neie Fichier emfaangen.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Fichierstyp net ënnerstëtzt.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Dokument gëtt veraarbecht...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Virschaubild gëtt generéiert...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Datum vum Dokument gëtt ermëttelt...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Dokument gëtt gespäichert...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Ofgeschloss.
@@ -6017,11 +6025,19 @@
Tierkesch
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chinesesch (Vereinfacht)
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Successfully 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
+ 442Unable 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
+ 516You 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Fout bij ophalen metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Fout bij ophalen suggesties.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document succesvol opgeslagen.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Fout bij opslaan document
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Wilt 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
+ 622De bestanden voor dit document worden definitief verwijderd. Deze bewerking kan niet ongedaan worden gemaakt.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Verwijder document
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Fout bij verwijderen document:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Met 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Opnieuw 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,692Fout tijdens uitvoeren bewerking:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207View "" met succes opgeslagen.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248View "" 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
+ 67Bent u zeker dat u correspondent "" wilt verwijderen?
@@ -5428,13 +5428,21 @@
failed
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Document bestaat al.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Document met ASN bestaat al.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Bestand niet gevonden.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationPre-verwerkingsscript bestaat niet.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationFout 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
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationPost-verwerkingsscript bestaat niet.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationFout tijdens het uitvoeren van het post-verwerkingsscript
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Nieuw bestand ontvangen.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Bestandstype niet ondersteund.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Document wordt verwerkt...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Voorbeeldweergave wordt gemaakt...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Datum wordt gezocht in document...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Document wordt opgeslagen...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Klaar.
@@ -6017,11 +6025,19 @@
Turks
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chinees (vereenvoudigd)
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Eenmalige 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
+ 442Kan 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
+ 516Je 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Feil ved henting av metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Feil ved henting av forslag.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Dokumentet ble lagret.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Feil ved lagring av dokument
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 622Filene til dokumentet vil bli slettet permanent. Denne operasjonen kan ikke angres.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Slett dokument
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Feil ved sletting av dokument:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Denne 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Redo 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,692Feil under kjøring av operasjon:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Visning "" ble lagret.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Visning "" 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
+ 67Do you really want to delete the correspondent ""?
@@ -5428,13 +5428,21 @@
feilet
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Dokumentet finnes allerede.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Dokument med ASN finnes allerede.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Finner ikke filen.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationPre-consume script does not exist.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationError while executing pre-consume script.
@@ -5698,7 +5706,7 @@
Post-consume script does not exist.src/app/services/consumer-status.service.ts
- 21
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationInnholdsskript finnes ikke.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationFeil under kjøring av skript for postinnhold.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Mottok ny fil.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Filtype støttes ikke.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Behandler dokument...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Genererer miniatyrbilde...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Henter dato fra dokument...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Lagrer dokument...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Fullført.
@@ -6017,11 +6025,19 @@
Tyrkisk
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Kinesisk forenklet
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Engangs 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
+ 442Kunne 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
+ 516Du 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Błąd podczas pobierania metadanych
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Dokument zapisany pomyślnie.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Błąd podczas zapisywania dokumentu
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Czy 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
+ 622Pliki tego dokumentu zostaną trwale usunięte. Tej operacji nie można cofnąć.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Usuń dokument
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Błąd podczas usuwania dokumentu:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Ta 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Powtó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,692Błąd podczas wykonywania operacji:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Widok "" został zapisany.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Widok "" 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
+ 67Czy na pewno chcesz usunąć nadawcę "?
@@ -5428,13 +5428,21 @@
failed
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Dokument już istnieje.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Dokument z tym ASN już istnieje.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Nie znaleziono pliku.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationSkrypt wstępnego przetwarzania nie istnieje.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationWystą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
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationSkrypt przetwarzania końcowego nie istnieje.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationWystąpił błąd podczas wykonywania skryptu końcowego przetwarzania.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Otrzymano nowy plik.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Ten typ pliku nie jest obsługiwany.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Przetwarzanie dokumentu...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Generowanie miniaturki...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Pobieranie daty z dokumentu...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Zapisywanie dokumentu...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Ukończono.
@@ -6017,11 +6025,19 @@
Turecki
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chiński uproszczony
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Pomyś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
+ 442Nie 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
+ 516Moż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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Erro ao recuperar metadados
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document saved successfully.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Erro ao salvar documento
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Você 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
+ 622Os arquivos desse documento serão excluídos permanentemente. Essa operação não pode ser revertida.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Excluir documento
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Erro ao excluir documento:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Esta 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679A 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,692Erro ao executar a operação:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Visualização "" salva com sucesso.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Visualizaçã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
+ 67Você realmente deseja excluir o correspondente ""?
@@ -5428,13 +5428,21 @@
failed
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Documento já existente.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Documento com o mesmo NSA já existe.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Arquivo não encontrado.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationScript pré-consumo não existe.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationErro ao executar script pré-consumo.
@@ -5698,7 +5706,7 @@
Post-consume script does not exist.src/app/services/consumer-status.service.ts
- 21
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationScript pós-consumo não existe.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationErro ao executar script pós-consumo.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Novo arquivo recebido.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Tipo de arquivo não suportado.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Processando documento...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Gerando imagem...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Buscando data do documento...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Salvando documento...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Encerrado.
@@ -6017,11 +6025,19 @@
Turco
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chinês Simplificado
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441A 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
+ 442Nã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
+ 516Você 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Erro ao obter os metadados
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Erro ao obter sugestões.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Documento guardado com sucesso.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Erro ao gravar documento
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Tem 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
+ 622Os ficheiros deste documento serão excluídos permanentemente. Esta operação não pode ser revertida.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Apagar documento
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Erro ao apagar documento:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Esta 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679A 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,692Erro ao executar a operação:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Visualização "" guardado com sucesso.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Visualizaçã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
+ 67Tem a certeza que quer eliminar a correspondência ""?
@@ -5428,13 +5428,21 @@
falhou
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Documento já existe.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Documento com ASN já existe.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Ficheiro não encontrado.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationScript de pré-consumo não existe.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationErro ao executar script de pré-consumo.
@@ -5698,7 +5706,7 @@
Post-consume script does not exist.src/app/services/consumer-status.service.ts
- 21
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationScript 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
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationErro ao executar script de pós-consumo.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Recebido novo ficheiro.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Tipo de ficheiro não suportado.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26A processar documento...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27A gerar miniatura...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28A obter data do documento...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29A guardar documento...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Concluído.
@@ -6017,11 +6025,19 @@
Turco
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chinês Simplificado
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Terminado 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
+ 442Incapaz 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
+ 516Pode 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Error retrieving metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document saved successfully.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Error saving document
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Sunteţ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
+ 622Fișierele pentru acest document vor fi șterse permanent. Operațiunea este ireversibila.
@@ -3166,7 +3166,7 @@
Delete documentsrc/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,646Error deleting document:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668This 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Redo 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,692Error executing operation:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Vizualizarea "" a fost salvată.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Vizualizarea "" 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
+ 67Sunteți sigur că doriți să ștergeți corespondentul ""?
@@ -5428,13 +5428,21 @@
failed
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Documentul există deja.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Document with ASN already exists.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Fișierul nu a fost găsit.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationScriptul pre-consum nu există.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationEroare la execuția scriptului pre-consum.
@@ -5698,7 +5706,7 @@
Post-consume script does not exist.src/app/services/consumer-status.service.ts
- 21
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationScriptul post-consum nu există.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationEroare la execuția scriptului post-consum.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Fișier nou primit.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Tip de fișier nesuportat.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Se procesează documentul...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Se generează miniatura...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Se extrage data din document...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Se salvează documentul...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Terminat.
@@ -6017,11 +6025,19 @@
Turkish
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chinese Simplified
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Successfully 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
+ 442Unable 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
+ 516You 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/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
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Документ успешно сохранён.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Ошибка при сохранении документа
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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 documentsrc/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 confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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 Foundsrc/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 DashboardAuto: 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
+ 20Pre-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
+ 21Pre-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
+ 22Post-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
+ 23Post-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 Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Китайский упрощенный
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Chyba pri získavaní metadát
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Chyba pri získavaní odporúčaní.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Dokument bol úspešne uložený.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Chyba pri ukladaní dokumentu
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Naozaj 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
+ 622Súbory tohto dokumentu budú trvalo odstránené. Túto akciu nie je možné vrátiť.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Zmazať dokument
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Chyba pri mazaní dokumentu:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Tá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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Akcia 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,692Chyba pri vykonávaní akcie:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Pohľad "" úspešne uložený.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Pohľ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
+ 67Naozaj chcete vymazať korešpondenta""?
@@ -5428,13 +5428,21 @@
neúspešné
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Dokument už existuje.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Dokument s ASN už existuje.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Súbor nenájdený.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationSkript "pred spracovaním" neexistuje.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationChyba 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
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationSkript "po spracovaní" neexistuje.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationChyba pri spúštaní skriptu "po spracovaní".
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Prijatý nový súbor.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Typ súboru nie je podporovaný.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Spracovanie dokumentu...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Vytváranie náhľadu...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Získavanie dátumu z dokumentu...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Ukladanie dokumentu...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Dokončené.
@@ -6017,11 +6025,19 @@
Turkish
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Chinese Simplified
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Migrá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
+ 442Nie 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
+ 516Sprievodcu 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Error retrieving metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document saved successfully.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Error saving document
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Ali 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
+ 622Datoteke za ta dokument bodo trajno izbrisane. Te operacije ni mogoče razveljaviti.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Izbriši dokument
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Error deleting document:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Ta 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Redo 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,692Napaka pri izvajanju operacije:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Pogled »" je uspešno shranjen.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Pogled »" 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
+ 67Ali res želite izbrisati dopisnika ""?
@@ -5428,13 +5428,21 @@
neuspešno
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Dokument že obstaja.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Document with ASN already exists.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Datoteke ni mogoče najti.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationSkripta pre-consume ne obstaja.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationNapaka pri izvajanju skripte pre-consume.
@@ -5698,7 +5706,7 @@
Post-consume script does not exist.src/app/services/consumer-status.service.ts
- 21
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationPost-consume skripta ne obstaja.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationNapaka pri izvajanju skripte post-consume.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Prejeta nova datoteka.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Vrsta datoteke ni podprta.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Obdelava dokumenta...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Generiranje sličice...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Pridobivanje datuma iz dokumenta...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Shranjevanje dokumenta...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Končano.
@@ -6017,11 +6025,19 @@
Turščina
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Poenostavljena kitajščina
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Uspeš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
+ 442Nastavitev 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
+ 516You 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.html20
- now
+ sadaAfter
@@ -1367,7 +1367,7 @@
src/app/components/dashboard/dashboard.component.html
- 27
+ 10src/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.html56
- Prikaz
+ PregledUsers:
@@ -2278,7 +2278,7 @@
src/app/components/manage/settings/settings.component.html393
- Izmeni
+ UređivanjeEdit permissions also grant viewing permissions
@@ -2331,7 +2331,7 @@
src/app/components/common/input/tags/tags.component.html39
- Filter documents with these Tags
+ Filtriraj dokumenta sa ovom oznakomSet Permissions
@@ -2355,7 +2355,7 @@
src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html28
- My documents
+ Moja dokumentaShared with me
@@ -2363,7 +2363,7 @@
src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html38
- Shared with me
+ Deljeno samnomUnowned
@@ -2371,7 +2371,7 @@
src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html48
- Unowned
+ Bez vlasnikaUsers
@@ -2391,7 +2391,7 @@
src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html77
- Hide unowned
+ Sakri bez vlasnikaType
@@ -2545,7 +2545,7 @@
src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html19
- View Preview
+ Prikaži pregledDownload
@@ -3084,7 +3084,7 @@
src/app/components/document-detail/document-detail.component.html197
- Save & close
+ Sačuvaj i zatvoriAn error occurred loading content:
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Greš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
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Dokument je uspešno sačuvan.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Greška prilikom čuvanja dokumenta
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Da 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
+ 622Fajlovi za ovaj dokument će biti trajno obrisani. Ova operacija se ne može opozvati.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Obriši dokument
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Greška prilikom brisanja dokumenta:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668Ova ć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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Ponovna 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,692Greška pri izvršavanju operacije:
@@ -3646,7 +3646,7 @@
src/app/components/document-list/document-card-large/document-card-large.component.html74
- Notes
+ BeleškeFilter by document type
@@ -3898,7 +3898,7 @@
src/app/components/document-list/document-list.component.html152
- Sort by owner
+ Sortiraj po vlasnikuOwner
@@ -3910,7 +3910,7 @@
src/app/services/rest/document.service.ts26
- Owner
+ VlasnikSort by notes
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Prikaz "" je uspešno sačuvan.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Prikaz "" je uspešno kreiran.
@@ -4014,7 +4014,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts118,120
- Correspondent:
+ Korespodent: Without correspondent
@@ -4030,7 +4030,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts128,130
- Document type:
+ Tip dokumenta: Without document type
@@ -4046,7 +4046,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts138,140
- Storage path:
+ Putanja skladišta: Without storage path
@@ -4054,7 +4054,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts142
- Without storage path
+ Bez putanje skladištaTag:
@@ -4062,7 +4062,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts146,147
- Tag:
+ Oznaka: Without any tag
@@ -4094,7 +4094,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts161
- Owner:
+ Vlasnik: Owner not in:
@@ -4102,7 +4102,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts164
- Owner not in:
+ Vlasnik nije: Without an owner
@@ -4110,7 +4110,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts167
- Without an owner
+ Bez vlasnikaTitle & content
@@ -4266,7 +4266,7 @@
src/app/components/document-notes/document-notes.component.ts67
- Error saving note
+ Greška prilikom čuvanja beleškeError 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
+ 67Da li stvarno želite da obrišete ovog korespodenta ""?
@@ -5018,7 +5018,7 @@
src/app/components/manage/settings/settings.component.ts636
- 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.ts698
- Error saving user.
+ Greška prilikom čuvanja korisnika.Confirm delete user account
@@ -5074,7 +5074,7 @@
src/app/components/manage/settings/settings.component.ts727
- Error deleting user.
+ Greška prilikom brisanja korisnika.Saved group "".
@@ -5090,7 +5090,7 @@
src/app/components/manage/settings/settings.component.ts758
- Error saving group.
+ Greška prilikom čuvanja grupe.Confirm delete user group
@@ -5122,7 +5122,7 @@
src/app/components/manage/settings/settings.component.ts787
- Error deleting group.
+ Greška prilikom brisanja grupe.Saved account "".
@@ -5138,7 +5138,7 @@
src/app/components/manage/settings/settings.component.ts825
- Error saving account.
+ Greška prilikom čuvanja naloga.Confirm delete mail account
@@ -5170,7 +5170,7 @@
src/app/components/manage/settings/settings.component.ts855
- Error deleting mail account.
+ Greška prilikom brisanja mejl naloga.Saved rule "".
@@ -5186,7 +5186,7 @@
src/app/components/manage/settings/settings.component.ts888
- Error saving rule.
+ Greška prilikom čuvanja pravila.Confirm delete mail rule
@@ -5218,7 +5218,7 @@
src/app/components/manage/settings/settings.component.ts918
- Error deleting mail rule.
+ Greška prilikom brisanja pravila.storage path
@@ -5428,13 +5428,21 @@
failed
-
- 404 Not Found
+
+ Not Foundsrc/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 tabluAuto: Learn matching automatically
@@ -5634,7 +5642,7 @@
src/app/pipes/username.pipe.ts33
- Shared
+ DeljenoYes
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Dokument već postoji.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Dokument sa ovim ASN već postoji.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Fajl nije pronađen.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationPre-consume skripta ne postoji.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationGreš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
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationPost-consume skripta ne postoji.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationGreška prilikom izvršavanja post-consume skripte.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Primljen novi fajl.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Tip fajla nije podržan.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Obrađivanje dokumenta...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Generisanje sličice...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Preuzimanje 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
+ 30Završeno.
@@ -5983,7 +5991,7 @@
src/app/services/settings.service.ts277
- Slovak
+ SlovačkiSlovenian
@@ -6017,11 +6025,19 @@
Turski
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrajinski
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Kineski pojednostavljen
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Uspeš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
+ 442Nije 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
+ 516You 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Error retrieving metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document saved successfully.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Error saving document
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 621Vill 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
+ 622Filerna för detta dokument kommer att raderas permanent. Den här åtgärden kan inte ångras.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Ta bort dokument
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Error deleting document:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668This 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Redo 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,692Error executing operation:
@@ -3996,7 +3996,7 @@
View "" saved successfully.src/app/components/document-list/document-list.component.ts
- 205
+ 207Vy "" sparades.
@@ -4004,7 +4004,7 @@
View "" created successfully.src/app/components/document-list/document-list.component.ts
- 246
+ 248Vy "" skapades.
@@ -4304,7 +4304,7 @@
Do you really want to delete the correspondent ""?src/app/components/manage/correspondent-list/correspondent-list.component.ts
- 55
+ 67Vill du verkligen ta bort korrespondenten ""?
@@ -5428,13 +5428,21 @@
failed
-
- 404 Not Found
+
+ Not Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Dokumentet finns redan.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Document with ASN already exists.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Filen hittades inte.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationPre-consume skript finns inte.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationFel 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
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationPost-consume skript finns inte.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationFel vid körning av post-consume skript.
@@ -5716,7 +5724,7 @@
Received new file.src/app/services/consumer-status.service.ts
- 23
+ 24Tog emot ny fil.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Filtypen stöds inte.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Bearbetar dokument...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Miniatyrer genereras...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Hämtar datum från dokument...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Sparar dokument...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Slutförd.
@@ -6017,11 +6025,19 @@
Turkiska
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Kinesiska (förenklad)
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Successfully 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
+ 442Unable 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
+ 516You 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Error retrieving metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document saved successfully.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Error saving document
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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
+ 622Bu belgeye ait dosyalar kalıcı olarak siliniecektir. Bu işlem geri alınamaz.
@@ -3166,7 +3166,7 @@
Delete documentsrc/app/components/document-detail/document-detail.component.ts
- 620
+ 624Belgeyi sil
@@ -3174,7 +3174,7 @@
Error deleting document: src/app/components/document-detail/document-detail.component.ts
- 640,642
+ 644,646Error deleting document:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668This 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Redo 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,692Error 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 Foundsrc/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 DashboardAuto: Learn matching automatically
@@ -5656,7 +5664,7 @@
Document already exists.src/app/services/consumer-status.service.ts
- 16
+ 17Belge zaten var.
@@ -5664,7 +5672,7 @@
Document with ASN already exists.src/app/services/consumer-status.service.ts
- 17
+ 18Document with ASN already exists.
@@ -5672,7 +5680,7 @@
File not found.src/app/services/consumer-status.service.ts
- 18
+ 19Dosya bulunamadı.
@@ -5680,7 +5688,7 @@
Pre-consume script does not exist.src/app/services/consumer-status.service.ts
- 19
+ 20Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationTüketim öncesi komut dosyası yok.
@@ -5689,7 +5697,7 @@
Error while executing pre-consume script.src/app/services/consumer-status.service.ts
- 20
+ 21Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translationTü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
+ 22Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationTüketim sonrası komut dosyası yok.
@@ -5707,7 +5715,7 @@
Error while executing post-consume script.src/app/services/consumer-status.service.ts
- 22
+ 23Post-Consume is a term that appears like that in the documentation as well and does not need a specific translationTü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
+ 24Yeni dosya alındı.
@@ -5724,7 +5732,7 @@
File type not supported.src/app/services/consumer-status.service.ts
- 24
+ 25Dosya türü desteklenmiyor.
@@ -5732,7 +5740,7 @@
Processing document...src/app/services/consumer-status.service.ts
- 25
+ 26Belge işleniyor...
@@ -5740,7 +5748,7 @@
Generating thumbnail...src/app/services/consumer-status.service.ts
- 26
+ 27Küçük resimler oluşturuluyor...
@@ -5748,7 +5756,7 @@
Retrieving date from document...src/app/services/consumer-status.service.ts
- 27
+ 28Belgeden tarih alınıyor...
@@ -5756,7 +5764,7 @@
Saving document...src/app/services/consumer-status.service.ts
- 28
+ 29Belge kayıt ediliyor...
@@ -5764,7 +5772,7 @@
Finished.src/app/services/consumer-status.service.ts
- 29
+ 30Tamamlandı.
@@ -6017,11 +6025,19 @@
Türkçe
+
+ Ukrainian
+
+ src/app/services/settings.service.ts
+ 307
+
+ Ukrainian
+ Chinese Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Basitleştirilmiş Çince
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 8601
@@ -6037,7 +6053,7 @@
Successfully completed one-time migratration of settings to the database!src/app/services/settings.service.ts
- 435
+ 441Successfully 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
+ 442Unable 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
+ 516You 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.ts153
- 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.ts192
- Перевірте налаштування для різних налаштувань вебдодатку, перемикайте налаштування для збережених переглядів або встановіть перевірку електронної пошти.
+ Перевірте цю сторінку для різних налаштувань вебдодатку. Тут також можна налаштувати збережені представлення та перевірку електронної пошти.Thank you! 🙏
@@ -468,7 +468,7 @@
src/app/app.component.ts273
- Ініціалізація завантаження...
+ Ініціалізація відвантаження...Paperless-ngx
@@ -765,7 +765,7 @@
src/app/components/app-frame/app-frame.component.html213
- is available.
+ є доступним для оновлення.Click to view.
@@ -1045,7 +1045,7 @@
src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html13
- Відповідний алгоритм
+ Алгоритм зіставленняMatching pattern
@@ -1065,7 +1065,7 @@
src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html14
- Відповідний шаблон
+ Шаблон зіставленняCase insensitive
@@ -1367,7 +1367,7 @@
src/app/components/dashboard/dashboard.component.html
- 27
+ 10src/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.ts41
- Під'єднати поштову скриньку
+ Додати поштову скринькуEdit mail account
@@ -1445,7 +1445,7 @@
src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts45
- Редагувати обліковий запис пошти
+ Редагувати поштову скриньку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.html19
- 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.html27
- 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.html29
- Призначити заголовок з
+ Призначити назву зAssign document type
@@ -1805,7 +1805,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts76
- Використовувати тему як заголовок
+ Використовувати тему як назвуUse attachment filename as title
@@ -1813,7 +1813,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts80
- Використовувати назву файлу як заголовок
+ Використовувати назву файлу як назву документаDo not assign a correspondent
@@ -1853,7 +1853,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts141
- 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.ts145
- Edit mail rule
+ Редагувати правило поштиPath
@@ -1941,7 +1941,7 @@
src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html12
- 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.html23
- (Grants all permissions and can view objects)
+ (Надає всі права доступу та може переглядати об'єкти)Groups
@@ -2186,7 +2186,7 @@
src/app/components/document-list/document-card-large/document-card-large.component.html56
- View
+ ПереглянутиUsers:
@@ -2286,7 +2286,7 @@
src/app/components/common/input/permissions/permissions-form/permissions-form.component.html64
- Edit permissions also grant viewing permissions
+ Право на редагування також надає право на переглядAdd item
@@ -2537,7 +2537,7 @@
src/app/services/rest/document.service.ts20
- Заголовок
+ НазваView Preview
@@ -2545,7 +2545,7 @@
src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html19
- View Preview
+ Попередній перегляд представленняDownload
@@ -2667,7 +2667,7 @@
25This 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.ts42
- Помилка:
+ Невдачі: Added:
@@ -2792,7 +2792,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html89
- Redo OCR
+ Повторити OCRMore like this
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/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
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Документ успішно збережено.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Помилка при збереженні документа
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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 documentsrc/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 confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/app/components/document-list/bulk-editor/bulk-editor.component.ts499
- Redo OCR confirm
+ Підтвердьте повторення OCRThis 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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.ts500
- 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.html74
- Примітки
+ НотаткиFilter by document type
@@ -3714,7 +3714,7 @@
src/app/components/document-list/document-card-large/document-card-large.component.html116
- Score:
+ Релевантність:Toggle tag filter
@@ -3730,7 +3730,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html32
- Toggle correspondent filter
+ Перемкнути фільтр кореспондентаToggle document type filter
@@ -3738,7 +3738,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html39
- Toggle document type filter
+ Перемкнути фільтр типу документаToggle storage path filter
@@ -3746,7 +3746,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html46
- Toggle storage path filter
+ Перемкнути фільтр шляху зберіганняSelect none
@@ -3814,7 +3814,7 @@
src/app/components/document-list/document-list.component.html97
- {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.html99
- {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.html138
- Sort by correspondent
+ Впорядкувати за кореспондентомSort by title
@@ -3890,7 +3890,7 @@
src/app/components/document-list/document-list.component.html145
- Sort by title
+ Впорядкувати за назвоюSort by owner
@@ -3898,7 +3898,7 @@
src/app/components/document-list/document-list.component.html152
- Sort by owner
+ Впорядкувати за власникомOwner
@@ -3918,7 +3918,7 @@
src/app/components/document-list/document-list.component.html159
- Sort by notes
+ Впорядкувати за нотаткамиNotes
@@ -3942,7 +3942,7 @@
src/app/components/document-list/document-list.component.html166
- Сортувати за типом документа
+ Впорядкувати за типом документаSort by storage path
@@ -3950,7 +3950,7 @@
src/app/components/document-list/document-list.component.html173
- Сортувати за шляхом зберігання
+ Впорядкувати за шляхом зберіганняSort by created date
@@ -3958,7 +3958,7 @@
src/app/components/document-list/document-list.component.html180
- Сортувати за датою створення
+ Впорядкувати за датою створенняSort by added date
@@ -3966,7 +3966,7 @@
src/app/components/document-list/document-list.component.html187
- Сортувати за датою додавання
+ Впорядкувати за датою додавання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.ts155
- Title:
+ Назва: ASN:
@@ -4102,7 +4102,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts164
- Owner not in:
+ Власник не в: Without an owner
@@ -4118,7 +4118,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts204
- Title & content
+ Назва та вмістAdvanced search
@@ -4134,7 +4134,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts215
- More like
+ Більше схожихequals
@@ -4142,7 +4142,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts234
- equals
+ дорівнюєis empty
@@ -4150,7 +4150,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts238
- is empty
+ не заповненоis not empty
@@ -4158,7 +4158,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts242
- is not empty
+ заповненоgreater than
@@ -4166,7 +4166,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts246
- greater than
+ більше ніжless than
@@ -4174,7 +4174,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.ts250
- less than
+ менше ніжSave current view
@@ -4182,7 +4182,7 @@
src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html3
- Save current view
+ Зберегти поточне представленняShow in sidebar
@@ -4214,7 +4214,7 @@
src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html12
- 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.html13
- The error returned was
+ Отримано помилкуEnter note
@@ -4266,7 +4266,7 @@
src/app/components/document-notes/document-notes.component.ts67
- Error saving note
+ Помилка при збереженні нотаткиError deleting note:
@@ -4274,7 +4274,7 @@
src/app/components/document-notes/document-notes.component.ts85
- Помилка при видаленні примітки:
+ Помилка при видаленні нотатки: 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.ts44
- Ви дійсно хочете видалити тип документу ""?
+ Ви дійсно хочете видалити тип документа ""?Create
@@ -4390,7 +4390,7 @@
src/app/components/manage/management-list/management-list.component.html20
- Відповідність
+ ЗіставленняDocument count
@@ -4410,7 +4410,7 @@
src/app/components/manage/management-list/management-list.component.html21
- Document count
+ Кількість документівFilter Documents
@@ -4450,7 +4450,7 @@
src/app/components/manage/management-list/management-list.component.html73
- {VAR_PLURAL, plural, =1 {One } other { total }}
+ {VAR_PLURAL, plural, =1 {Один } other { всього }}Automatic
@@ -4474,7 +4474,7 @@
src/app/data/matching-model.ts45
- None
+ НемаєSuccessfully created .
@@ -4714,7 +4714,7 @@
src/app/components/manage/settings/settings.component.html135
- Оновити перевірку
+ Перевірка оновлень 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.html139,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.html144,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.html146
- 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.html178
- Показувати сповіщення, коли нові документи виявлені
+ Показувати сповіщення, коли виявлено нові документиShow notifications when document processing completes successfully
@@ -4818,7 +4818,7 @@
src/app/components/manage/settings/settings.component.html179
- Show notifications when document processing completes successfully
+ Показувати сповіщення після успішної обробки документаShow notifications when document processing fails
@@ -4826,7 +4826,7 @@
src/app/components/manage/settings/settings.component.html180
- Show notifications when document processing fails
+ Показувати сповіщення, коли не вдається обробити документSuppress notifications on dashboard
@@ -4858,7 +4858,7 @@
src/app/components/manage/settings/settings.component.html209,210
- Appears on
+ Показувати наNo saved views defined.
@@ -4882,7 +4882,7 @@
src/app/components/manage/settings/settings.component.html245
- Mail accounts
+ Поштові скринькиAdd Account
@@ -4906,7 +4906,7 @@
src/app/components/manage/settings/settings.component.html276
- No mail accounts defined.
+ Немає поштових скриньок.Mail rules
@@ -4930,7 +4930,7 @@
src/app/components/manage/settings/settings.component.html313
- No mail rules defined.
+ Немає правил пошти.Users & Groups
@@ -4986,7 +4986,7 @@
src/app/components/manage/settings/settings.component.ts589
- Settings were saved successfully. Reload is required to apply some changes.
+ Налаштування успішно збережені. Оновіть сторінку для застосування змін.Reload now
@@ -5034,7 +5034,7 @@
src/app/components/manage/settings/settings.component.ts686
- Saved user "".
+ Користувача "" збережено.Error saving user.
@@ -5082,7 +5082,7 @@
src/app/components/manage/settings/settings.component.ts748
- Saved group "".
+ Групу "" збережено.Error saving group.
@@ -5130,7 +5130,7 @@
src/app/components/manage/settings/settings.component.ts813
- Saved account "".
+ Поштову скриньку "" збережено.Error saving account.
@@ -5138,7 +5138,7 @@
src/app/components/manage/settings/settings.component.ts825
- Error saving account.
+ Помилка збереження облікового запису.Confirm delete mail account
@@ -5146,7 +5146,7 @@
src/app/components/manage/settings/settings.component.ts836
- Confirm delete mail account
+ Підтвердьте видалення поштової скринькиThis operation will permanently delete this mail account.
@@ -5154,7 +5154,7 @@
src/app/components/manage/settings/settings.component.ts837
- This operation will permanently delete this mail account.
+ Ця операція остаточно видалить цю поштову скриньку.Deleted mail account
@@ -5162,7 +5162,7 @@
src/app/components/manage/settings/settings.component.ts846
- Deleted mail account
+ Видалено поштову скринькуError deleting mail account.
@@ -5170,7 +5170,7 @@
src/app/components/manage/settings/settings.component.ts855
- Error deleting mail account.
+ Помилка видалення поштової скриньки.Saved rule "".
@@ -5178,7 +5178,7 @@
src/app/components/manage/settings/settings.component.ts876
- Saved rule "".
+ Збережено правило "".Error saving rule.
@@ -5194,7 +5194,7 @@
src/app/components/manage/settings/settings.component.ts899
- Confirm delete mail rule
+ Підтвердьте видалення правила поштиThis operation will permanently delete this mail rule.
@@ -5202,7 +5202,7 @@
src/app/components/manage/settings/settings.component.ts900
- This operation will permanently delete this mail rule.
+ Ця операція остаточно видалить це правило пошти.Deleted mail rule
@@ -5210,7 +5210,7 @@
src/app/components/manage/settings/settings.component.ts909
- Deleted mail rule
+ Правило пошти видаленоError deleting mail rule.
@@ -5218,7 +5218,7 @@
src/app/components/manage/settings/settings.component.ts918
- Error deleting mail rule.
+ Помилка видалення правила пошти.storage path
@@ -5274,7 +5274,7 @@
src/app/components/manage/tasks/tasks.component.html6
- Очистити виділення
+ Зняти виділенняRefresh
@@ -5326,7 +5326,7 @@
src/app/components/manage/tasks/tasks.component.html103
- {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.ts63
- tasks?
+ завдання?queued
@@ -5410,7 +5410,7 @@
src/app/components/manage/tasks/tasks.component.ts133
- started
+ запущеноcompleted
@@ -5418,7 +5418,7 @@
src/app/components/manage/tasks/tasks.component.ts135
- completed
+ завершеноfailed
@@ -5426,15 +5426,23 @@
src/app/components/manage/tasks/tasks.component.ts137
- failed
+ невдачі
-
- 404 Not Found
+
+ Not Foundsrc/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.ts16
- Auto: Learn matching automatically
+ Авто: Вивчати зіставлення автоматичноAny word
@@ -5522,7 +5530,7 @@
src/app/data/matching-model.ts41
- Fuzzy: Document contains a word similar to this word
+ Нечіткий пошук: документ містить слово подібне до цього словаNone: Disable matching
@@ -5530,7 +5538,7 @@
src/app/data/matching-model.ts46
- None: Disable matching
+ Немає: вимкнути зіставленняWarning: You have unsaved changes to your document(s).
@@ -5594,7 +5602,7 @@
src/app/guards/dirty-saved-view.guard.ts31
- 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.ts35
- Are you sure you want to close this saved view?
+ Ви впевнені, що хочете закрити це представлення?Save and close
@@ -5618,7 +5626,7 @@
src/app/guards/permissions.guard.ts34
- 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
+ 20Pre-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
+ 21Pre-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
+ 22Post-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
+ 23Post-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 @@
33Score 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 Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313Китайська спрощена
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 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
+ 10src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html
@@ -3098,7 +3098,7 @@
Error retrieving metadatasrc/app/components/document-detail/document-detail.component.ts
- 395
+ 397Error retrieving metadata
@@ -3106,7 +3106,7 @@
Error retrieving suggestions.src/app/components/document-detail/document-detail.component.ts
- 417
+ 419Error retrieving suggestions.
@@ -3114,11 +3114,11 @@
Document saved successfully.src/app/components/document-detail/document-detail.component.ts
- 529
+ 533src/app/components/document-detail/document-detail.component.ts
- 537
+ 541Document saved successfully.
@@ -3126,11 +3126,11 @@
Error saving documentsrc/app/components/document-detail/document-detail.component.ts
- 542
+ 546src/app/components/document-detail/document-detail.component.ts
- 587
+ 591Error saving document
@@ -3138,7 +3138,7 @@
Confirm deletesrc/app/components/document-detail/document-detail.component.ts
- 616
+ 620src/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 documentsrc/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,646Error deleting document:
@@ -3182,7 +3182,7 @@
Redo OCR confirmsrc/app/components/document-detail/document-detail.component.ts
- 663
+ 667src/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
+ 668This 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
+ 669src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -3234,7 +3234,7 @@
Proceedsrc/app/components/document-detail/document-detail.component.ts
- 667
+ 671src/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
+ 679Redo 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,692Error 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 Foundsrc/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 DashboardAuto: 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
+ 20Pre-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
+ 21Pre-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
+ 22Post-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
+ 23Post-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 Simplifiedsrc/app/services/settings.service.ts
- 307
+ 313简体中文
@@ -6029,7 +6045,7 @@
ISO 8601src/app/services/settings.service.ts
- 324
+ 330ISO 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/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,