RED-7634 - Hide "Skipped" button not working as expected
This commit is contained in:
parent
25b456ae8e
commit
85ce0ae315
@ -219,5 +219,11 @@
|
|||||||
*ngIf="filter.id === 'skipped'"
|
*ngIf="filter.id === 'skipped'"
|
||||||
[icon]="(skippedService.hideSkipped$ | async) ? 'red:visibility-off' : 'red:visibility'"
|
[icon]="(skippedService.hideSkipped$ | async) ? 'red:visibility-off' : 'red:visibility'"
|
||||||
[type]="circleButtonTypes.dark"
|
[type]="circleButtonTypes.dark"
|
||||||
|
[tooltip]="
|
||||||
|
((skippedService.hideSkipped$ | async)
|
||||||
|
? 'file-preview.tabs.annotations.show-skipped'
|
||||||
|
: 'file-preview.tabs.annotations.hide-skipped'
|
||||||
|
) | translate
|
||||||
|
"
|
||||||
></iqser-circle-button>
|
></iqser-circle-button>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
|||||||
@ -223,7 +223,10 @@ export class FilePreviewScreenComponent
|
|||||||
.filter(a => !bool(a.getCustomData('changeLogRemoved')) && !this._annotationManager.isHidden(a.Id))
|
.filter(a => !bool(a.getCustomData('changeLogRemoved')) && !this._annotationManager.isHidden(a.Id))
|
||||||
.filter(a => !ocrAnnotationIds.includes(a.Id));
|
.filter(a => !ocrAnnotationIds.includes(a.Id));
|
||||||
const nonStandardEntries = annotations.filter(
|
const nonStandardEntries = annotations.filter(
|
||||||
a => bool(a.getCustomData('changeLogRemoved')) || this._annotationManager.isHidden(a.Id),
|
a =>
|
||||||
|
bool(a.getCustomData('changeLogRemoved')) ||
|
||||||
|
this._annotationManager.isHidden(a.Id) ||
|
||||||
|
(this._skippedService.hideSkipped && bool(a.getCustomData('skipped'))),
|
||||||
);
|
);
|
||||||
this._readableRedactionsService.setAnnotationsColor(standardEntries, 'annotationColor');
|
this._readableRedactionsService.setAnnotationsColor(standardEntries, 'annotationColor');
|
||||||
this._readableRedactionsService.setAnnotationsOpacity(standardEntries, true);
|
this._readableRedactionsService.setAnnotationsOpacity(standardEntries, true);
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { Injectable } from '@angular/core';
|
import { Injectable } from '@angular/core';
|
||||||
import { BehaviorSubject, Observable } from 'rxjs';
|
import { BehaviorSubject, Observable } from 'rxjs';
|
||||||
import { skip, tap } from 'rxjs/operators';
|
import { tap } from 'rxjs/operators';
|
||||||
import { bool, shareDistinctLast } from '@iqser/common-ui';
|
import { bool, shareDistinctLast } from '@iqser/common-ui';
|
||||||
import { REDAnnotationManager } from '../../pdf-viewer/services/annotation-manager.service';
|
import { REDAnnotationManager } from '../../pdf-viewer/services/annotation-manager.service';
|
||||||
|
|
||||||
@ -13,7 +13,6 @@ export class SkippedService {
|
|||||||
this.hideSkipped$ = this.#hideSkipped$.pipe(
|
this.hideSkipped$ = this.#hideSkipped$.pipe(
|
||||||
tap(hideSkipped => this._handleIgnoreAnnotationsDrawing(hideSkipped)),
|
tap(hideSkipped => this._handleIgnoreAnnotationsDrawing(hideSkipped)),
|
||||||
shareDistinctLast(),
|
shareDistinctLast(),
|
||||||
skip(1),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1217,6 +1217,17 @@
|
|||||||
"title": "Hoppla! Etwas ist schief gelaufen..."
|
"title": "Hoppla! Etwas ist schief gelaufen..."
|
||||||
},
|
},
|
||||||
"exact-date": "{day} {month} {year} um {hour}:{minute} Uhr",
|
"exact-date": "{day} {month} {year} um {hour}:{minute} Uhr",
|
||||||
|
"false-positive-dialog": {
|
||||||
|
"actions": {
|
||||||
|
"cancel": "",
|
||||||
|
"save": ""
|
||||||
|
},
|
||||||
|
"content": {
|
||||||
|
"body-text": "",
|
||||||
|
"comment": ""
|
||||||
|
},
|
||||||
|
"header": ""
|
||||||
|
},
|
||||||
"file": "Datei",
|
"file": "Datei",
|
||||||
"file-attribute-encoding-types": {
|
"file-attribute-encoding-types": {
|
||||||
"ascii": "",
|
"ascii": "",
|
||||||
@ -1229,9 +1240,6 @@
|
|||||||
"text": "Freier Text"
|
"text": "Freier Text"
|
||||||
},
|
},
|
||||||
"file-attribute": {
|
"file-attribute": {
|
||||||
"actions": {
|
|
||||||
"edit": ""
|
|
||||||
},
|
|
||||||
"update": {
|
"update": {
|
||||||
"error": "",
|
"error": "",
|
||||||
"success": ""
|
"success": ""
|
||||||
@ -1375,6 +1383,7 @@
|
|||||||
"standard-tooltip": "In der Standard-Ansicht des Workloads werden alle Hinweise, Schwärzungen, Empfehlungen und Vorschläge angezeigt. In dieser Ansicht ist die Bearbeitung möglich.",
|
"standard-tooltip": "In der Standard-Ansicht des Workloads werden alle Hinweise, Schwärzungen, Empfehlungen und Vorschläge angezeigt. In dieser Ansicht ist die Bearbeitung möglich.",
|
||||||
"tabs": {
|
"tabs": {
|
||||||
"annotations": {
|
"annotations": {
|
||||||
|
"hide-skipped": "",
|
||||||
"jump-to-next": "Springe zu Nächster",
|
"jump-to-next": "Springe zu Nächster",
|
||||||
"jump-to-previous": "Springe zu Vorheriger",
|
"jump-to-previous": "Springe zu Vorheriger",
|
||||||
"label": "Arbeitsvorrat",
|
"label": "Arbeitsvorrat",
|
||||||
@ -1384,6 +1393,7 @@
|
|||||||
"select": "Auswählen",
|
"select": "Auswählen",
|
||||||
"select-all": "Alle",
|
"select-all": "Alle",
|
||||||
"select-none": "Keine",
|
"select-none": "Keine",
|
||||||
|
"show-skipped": "",
|
||||||
"the-filters": "",
|
"the-filters": "",
|
||||||
"wrong-filters": ""
|
"wrong-filters": ""
|
||||||
},
|
},
|
||||||
@ -1633,16 +1643,18 @@
|
|||||||
"table-header": "{length} {length, plural, one{Begründung} other{Begründung}}"
|
"table-header": "{length} {length, plural, one{Begründung} other{Begründung}}"
|
||||||
},
|
},
|
||||||
"license-info-screen": {
|
"license-info-screen": {
|
||||||
"backend-version": "Backend-Version der Anwendung",
|
"analysis-capacity-usage": {
|
||||||
"chart": {
|
"analyzed-cumulative": "",
|
||||||
"cumulative": "Seiten insgesamt",
|
"analyzed-per-month": "",
|
||||||
"legend": "",
|
"licensed": "",
|
||||||
"pages-per-month": "Seiten pro Monat",
|
"section-title": "",
|
||||||
"total-pages": "Gesamtzahl der Seiten"
|
"total-analyzed-data": "",
|
||||||
|
"used-in-period": "",
|
||||||
|
"used-in-total": ""
|
||||||
},
|
},
|
||||||
|
"backend-version": "Backend-Version der Anwendung",
|
||||||
"copyright-claim-text": "Copyright © 2020 - {currentYear} knecon AG (powered by IQSER)",
|
"copyright-claim-text": "Copyright © 2020 - {currentYear} knecon AG (powered by IQSER)",
|
||||||
"copyright-claim-title": "Copyright",
|
"copyright-claim-title": "Copyright",
|
||||||
"current-analyzed": "In aktuellem Lizenzzeitraum analysierte Seiten",
|
|
||||||
"custom-app-title": "Name der Anwendung",
|
"custom-app-title": "Name der Anwendung",
|
||||||
"email-report": "E-Mail-Bericht",
|
"email-report": "E-Mail-Bericht",
|
||||||
"email": {
|
"email": {
|
||||||
@ -1654,20 +1666,40 @@
|
|||||||
},
|
},
|
||||||
"end-user-license-text": "Die Nutzung dieses Produkts unterliegt den Bedingungen der Endbenutzer-Lizenzvereinbarung für den RedactManager, sofern darin nichts anderweitig festgelegt.",
|
"end-user-license-text": "Die Nutzung dieses Produkts unterliegt den Bedingungen der Endbenutzer-Lizenzvereinbarung für den RedactManager, sofern darin nichts anderweitig festgelegt.",
|
||||||
"end-user-license-title": "Endbenutzer-Lizenzvereinbarung",
|
"end-user-license-title": "Endbenutzer-Lizenzvereinbarung",
|
||||||
"license-title": "",
|
"licensing-details": {
|
||||||
"licensed-page-count": "Anzahl der lizenzierten Seiten",
|
"license-title": "",
|
||||||
"licensed-to": "Lizenziert für",
|
"licensed-analysis-capacity": "",
|
||||||
"licensing-details": "Lizenzdetails",
|
"licensed-page-count": "",
|
||||||
"licensing-period": "Laufzeit der Lizenz",
|
"licensed-retention-capacity": "",
|
||||||
"ocr-analyzed-pages": "Mit OCR konvertierte Seiten",
|
"licensed-to": "",
|
||||||
|
"licensing-period": "",
|
||||||
|
"section-title": ""
|
||||||
|
},
|
||||||
|
"page-usage": {
|
||||||
|
"cumulative-pages": "",
|
||||||
|
"current-analyzed-pages": "",
|
||||||
|
"ocr-analyzed-pages": "",
|
||||||
|
"pages-per-month": "",
|
||||||
|
"section-title": "",
|
||||||
|
"total-analyzed": "",
|
||||||
|
"total-ocr-analyzed": "",
|
||||||
|
"total-pages": "",
|
||||||
|
"unlicensed-analyzed": ""
|
||||||
|
},
|
||||||
|
"retention-capacity-usage": {
|
||||||
|
"active-documents": "",
|
||||||
|
"archived-documents": "",
|
||||||
|
"exceeded-capacity": "",
|
||||||
|
"section-title": "",
|
||||||
|
"storage-capacity": "",
|
||||||
|
"trash-documents": "",
|
||||||
|
"unused": "",
|
||||||
|
"used-capacity": ""
|
||||||
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"active": "Aktiv",
|
"active": "Aktiv",
|
||||||
"inactive": ""
|
"inactive": ""
|
||||||
},
|
}
|
||||||
"total-analyzed": "Seit {date} insgesamt analysierte Seiten",
|
|
||||||
"total-ocr-analyzed": "",
|
|
||||||
"unlicensed-analyzed": "Über Lizenz hinaus analysierte Seiten",
|
|
||||||
"usage-details": "Nutzungsdetails"
|
|
||||||
},
|
},
|
||||||
"license-information": "Lizenzinformationen",
|
"license-information": "Lizenzinformationen",
|
||||||
"load-all-annotations-success": "",
|
"load-all-annotations-success": "",
|
||||||
@ -1709,6 +1741,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"minutes": "",
|
"minutes": "",
|
||||||
|
"no-active-license": "",
|
||||||
"notification": {
|
"notification": {
|
||||||
"assign-approver": "Sie wurden dem Dokument <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> im Dossier <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}<b> als Genehmiger zugewiesen!",
|
"assign-approver": "Sie wurden dem Dokument <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> im Dossier <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}<b> als Genehmiger zugewiesen!",
|
||||||
"assign-reviewer": "Sie wurden dem Dokument <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> im Dossier <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}<b> als Reviewer zugewiesen!",
|
"assign-reviewer": "Sie wurden dem Dokument <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> im Dossier <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}<b> als Reviewer zugewiesen!",
|
||||||
@ -1998,17 +2031,6 @@
|
|||||||
"annotations": "",
|
"annotations": "",
|
||||||
"title": ""
|
"title": ""
|
||||||
},
|
},
|
||||||
"false-positive-dialog": {
|
|
||||||
"actions": {
|
|
||||||
"cancel": "",
|
|
||||||
"save": ""
|
|
||||||
},
|
|
||||||
"content": {
|
|
||||||
"comment": "",
|
|
||||||
"body-text": ""
|
|
||||||
},
|
|
||||||
"header": ""
|
|
||||||
},
|
|
||||||
"rules-screen": {
|
"rules-screen": {
|
||||||
"error": {
|
"error": {
|
||||||
"generic": "Es ist ein Fehler aufgetreten ... Die Regeln konnten nicht aktualisiert werden!"
|
"generic": "Es ist ein Fehler aufgetreten ... Die Regeln konnten nicht aktualisiert werden!"
|
||||||
@ -2284,12 +2306,5 @@
|
|||||||
"select": "Wählen"
|
"select": "Wählen"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"yesterday": "Gestern",
|
"yesterday": "Gestern"
|
||||||
"generic-errors": {
|
|
||||||
"400": "",
|
|
||||||
"403": "",
|
|
||||||
"404": "",
|
|
||||||
"409": "",
|
|
||||||
"500": ""
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1217,6 +1217,17 @@
|
|||||||
"title": "Oops! Something went wrong..."
|
"title": "Oops! Something went wrong..."
|
||||||
},
|
},
|
||||||
"exact-date": "{day} {month} {year} at {hour}:{minute}",
|
"exact-date": "{day} {month} {year} at {hour}:{minute}",
|
||||||
|
"false-positive-dialog": {
|
||||||
|
"actions": {
|
||||||
|
"cancel": "Cancel",
|
||||||
|
"save": "Yes, proceed"
|
||||||
|
},
|
||||||
|
"content": {
|
||||||
|
"body-text": "''{value}'' is a false positive in this context: {context}",
|
||||||
|
"comment": "Comment"
|
||||||
|
},
|
||||||
|
"header": "False Positive"
|
||||||
|
},
|
||||||
"file": "File",
|
"file": "File",
|
||||||
"file-attribute-encoding-types": {
|
"file-attribute-encoding-types": {
|
||||||
"ascii": "ASCII",
|
"ascii": "ASCII",
|
||||||
@ -1229,9 +1240,6 @@
|
|||||||
"text": "Free Text"
|
"text": "Free Text"
|
||||||
},
|
},
|
||||||
"file-attribute": {
|
"file-attribute": {
|
||||||
"actions": {
|
|
||||||
"edit": "Edit"
|
|
||||||
},
|
|
||||||
"update": {
|
"update": {
|
||||||
"error": "Failed to update file attribute value!",
|
"error": "Failed to update file attribute value!",
|
||||||
"success": "File attribute value has been updated successfully!"
|
"success": "File attribute value has been updated successfully!"
|
||||||
@ -1375,6 +1383,7 @@
|
|||||||
"standard-tooltip": "Standard Workload view shows all hints, redactions, recommendations & suggestions. This view allows editing.",
|
"standard-tooltip": "Standard Workload view shows all hints, redactions, recommendations & suggestions. This view allows editing.",
|
||||||
"tabs": {
|
"tabs": {
|
||||||
"annotations": {
|
"annotations": {
|
||||||
|
"hide-skipped": "Hide skipped in document",
|
||||||
"jump-to-next": "Jump to Next",
|
"jump-to-next": "Jump to Next",
|
||||||
"jump-to-previous": "Jump to Previous",
|
"jump-to-previous": "Jump to Previous",
|
||||||
"label": "Workload",
|
"label": "Workload",
|
||||||
@ -1384,6 +1393,7 @@
|
|||||||
"select": "Select",
|
"select": "Select",
|
||||||
"select-all": "All",
|
"select-all": "All",
|
||||||
"select-none": "None",
|
"select-none": "None",
|
||||||
|
"show-skipped": "Show skipped in document",
|
||||||
"the-filters": "the filters",
|
"the-filters": "the filters",
|
||||||
"wrong-filters": "The selected filter combination is not possible. Please adjust or"
|
"wrong-filters": "The selected filter combination is not possible. Please adjust or"
|
||||||
},
|
},
|
||||||
@ -1662,8 +1672,8 @@
|
|||||||
"licensed-page-count": "Licensed Pages",
|
"licensed-page-count": "Licensed Pages",
|
||||||
"licensed-retention-capacity": "Licensed Retention Capacity",
|
"licensed-retention-capacity": "Licensed Retention Capacity",
|
||||||
"licensed-to": "Licensed to",
|
"licensed-to": "Licensed to",
|
||||||
"section-title": "Licensing Details",
|
"licensing-period": "Licensing Period",
|
||||||
"licensing-period": "Licensing Period"
|
"section-title": "Licensing Details"
|
||||||
},
|
},
|
||||||
"page-usage": {
|
"page-usage": {
|
||||||
"cumulative-pages": "Cumulative Pages",
|
"cumulative-pages": "Cumulative Pages",
|
||||||
@ -1731,6 +1741,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"minutes": "minutes",
|
"minutes": "minutes",
|
||||||
|
"no-active-license": "",
|
||||||
"notification": {
|
"notification": {
|
||||||
"assign-approver": "You have been assigned as approver for <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> in dossier: <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}</b>!",
|
"assign-approver": "You have been assigned as approver for <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> in dossier: <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}</b>!",
|
||||||
"assign-reviewer": "You have been assigned as reviewer for <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> in dossier: <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}</b>!",
|
"assign-reviewer": "You have been assigned as reviewer for <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> in dossier: <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}</b>!",
|
||||||
@ -2020,17 +2031,6 @@
|
|||||||
"annotations": "",
|
"annotations": "",
|
||||||
"title": "Structured Component Management"
|
"title": "Structured Component Management"
|
||||||
},
|
},
|
||||||
"false-positive-dialog": {
|
|
||||||
"actions": {
|
|
||||||
"cancel": "Cancel",
|
|
||||||
"save": "Yes, proceed"
|
|
||||||
},
|
|
||||||
"content": {
|
|
||||||
"comment": "Comment",
|
|
||||||
"body-text": "''{value}'' is a false positive in this context: {context}"
|
|
||||||
},
|
|
||||||
"header": "False Positive"
|
|
||||||
},
|
|
||||||
"rules-screen": {
|
"rules-screen": {
|
||||||
"error": {
|
"error": {
|
||||||
"generic": "Something went wrong... Rules update failed!"
|
"generic": "Something went wrong... Rules update failed!"
|
||||||
@ -2306,12 +2306,5 @@
|
|||||||
"select": "Select"
|
"select": "Select"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"yesterday": "Yesterday",
|
"yesterday": "Yesterday"
|
||||||
"generic-errors": {
|
|
||||||
"400": "The sent request is not valid.",
|
|
||||||
"403": "Access to the requested resource is not allowed.",
|
|
||||||
"404": "The requested resource could not be found.",
|
|
||||||
"409": "The request is incompatible with the current state.",
|
|
||||||
"500": "The server encountered an unexpected condition that prevented it from fulfilling the request."
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1217,6 +1217,17 @@
|
|||||||
"title": "Hoppla! Etwas ist schief gelaufen..."
|
"title": "Hoppla! Etwas ist schief gelaufen..."
|
||||||
},
|
},
|
||||||
"exact-date": "{day} {month} {year} um {hour}:{minute} Uhr",
|
"exact-date": "{day} {month} {year} um {hour}:{minute} Uhr",
|
||||||
|
"false-positive-dialog": {
|
||||||
|
"actions": {
|
||||||
|
"cancel": "",
|
||||||
|
"save": ""
|
||||||
|
},
|
||||||
|
"content": {
|
||||||
|
"body-text": "",
|
||||||
|
"comment": ""
|
||||||
|
},
|
||||||
|
"header": ""
|
||||||
|
},
|
||||||
"file": "Datei",
|
"file": "Datei",
|
||||||
"file-attribute-encoding-types": {
|
"file-attribute-encoding-types": {
|
||||||
"ascii": "",
|
"ascii": "",
|
||||||
@ -1229,9 +1240,6 @@
|
|||||||
"text": "Freier Text"
|
"text": "Freier Text"
|
||||||
},
|
},
|
||||||
"file-attribute": {
|
"file-attribute": {
|
||||||
"actions": {
|
|
||||||
"edit": ""
|
|
||||||
},
|
|
||||||
"update": {
|
"update": {
|
||||||
"error": "",
|
"error": "",
|
||||||
"success": ""
|
"success": ""
|
||||||
@ -1375,6 +1383,7 @@
|
|||||||
"standard-tooltip": "In der Standard-Ansicht des Workloads werden alle Hinweise, Schwärzungen, Empfehlungen und Vorschläge angezeigt. In dieser Ansicht ist die Bearbeitung möglich.",
|
"standard-tooltip": "In der Standard-Ansicht des Workloads werden alle Hinweise, Schwärzungen, Empfehlungen und Vorschläge angezeigt. In dieser Ansicht ist die Bearbeitung möglich.",
|
||||||
"tabs": {
|
"tabs": {
|
||||||
"annotations": {
|
"annotations": {
|
||||||
|
"hide-skipped": "",
|
||||||
"jump-to-next": "Springe zu Nächster",
|
"jump-to-next": "Springe zu Nächster",
|
||||||
"jump-to-previous": "Springe zu Vorheriger",
|
"jump-to-previous": "Springe zu Vorheriger",
|
||||||
"label": "Arbeitsvorrat",
|
"label": "Arbeitsvorrat",
|
||||||
@ -1384,6 +1393,7 @@
|
|||||||
"select": "Auswählen",
|
"select": "Auswählen",
|
||||||
"select-all": "Alle",
|
"select-all": "Alle",
|
||||||
"select-none": "Keine",
|
"select-none": "Keine",
|
||||||
|
"show-skipped": "",
|
||||||
"the-filters": "",
|
"the-filters": "",
|
||||||
"wrong-filters": ""
|
"wrong-filters": ""
|
||||||
},
|
},
|
||||||
@ -1633,16 +1643,18 @@
|
|||||||
"table-header": "{length} {length, plural, one{Begründung} other{Begründung}}"
|
"table-header": "{length} {length, plural, one{Begründung} other{Begründung}}"
|
||||||
},
|
},
|
||||||
"license-info-screen": {
|
"license-info-screen": {
|
||||||
"backend-version": "Backend-Version der Anwendung",
|
"analysis-capacity-usage": {
|
||||||
"chart": {
|
"analyzed-cumulative": "",
|
||||||
"cumulative": "Seiten insgesamt",
|
"analyzed-per-month": "",
|
||||||
"legend": "",
|
"licensed": "",
|
||||||
"pages-per-month": "Seiten pro Monat",
|
"section-title": "",
|
||||||
"total-pages": "Gesamtzahl der Seiten"
|
"total-analyzed-data": "",
|
||||||
|
"used-in-period": "",
|
||||||
|
"used-in-total": ""
|
||||||
},
|
},
|
||||||
|
"backend-version": "Backend-Version der Anwendung",
|
||||||
"copyright-claim-text": "Copyright © 2020 - {currentYear} knecon AG (powered by IQSER)",
|
"copyright-claim-text": "Copyright © 2020 - {currentYear} knecon AG (powered by IQSER)",
|
||||||
"copyright-claim-title": "Copyright",
|
"copyright-claim-title": "Copyright",
|
||||||
"current-analyzed": "In aktuellem Lizenzzeitraum analysierte Seiten",
|
|
||||||
"custom-app-title": "Name der Anwendung",
|
"custom-app-title": "Name der Anwendung",
|
||||||
"email-report": "E-Mail-Bericht",
|
"email-report": "E-Mail-Bericht",
|
||||||
"email": {
|
"email": {
|
||||||
@ -1654,20 +1666,40 @@
|
|||||||
},
|
},
|
||||||
"end-user-license-text": "Die Nutzung dieses Produkts unterliegt den Bedingungen der Endbenutzer-Lizenzvereinbarung für den RedactManager, sofern darin nichts anderweitig festgelegt.",
|
"end-user-license-text": "Die Nutzung dieses Produkts unterliegt den Bedingungen der Endbenutzer-Lizenzvereinbarung für den RedactManager, sofern darin nichts anderweitig festgelegt.",
|
||||||
"end-user-license-title": "Endbenutzer-Lizenzvereinbarung",
|
"end-user-license-title": "Endbenutzer-Lizenzvereinbarung",
|
||||||
"license-title": "",
|
"licensing-details": {
|
||||||
"licensed-page-count": "Anzahl der lizenzierten Seiten",
|
"license-title": "",
|
||||||
"licensed-to": "Lizenziert für",
|
"licensed-analysis-capacity": "",
|
||||||
"licensing-details": "Lizenzdetails",
|
"licensed-page-count": "",
|
||||||
"licensing-period": "Laufzeit der Lizenz",
|
"licensed-retention-capacity": "",
|
||||||
"ocr-analyzed-pages": "Mit OCR konvertierte Seiten",
|
"licensed-to": "",
|
||||||
|
"licensing-period": "",
|
||||||
|
"section-title": ""
|
||||||
|
},
|
||||||
|
"page-usage": {
|
||||||
|
"cumulative-pages": "",
|
||||||
|
"current-analyzed-pages": "",
|
||||||
|
"ocr-analyzed-pages": "",
|
||||||
|
"pages-per-month": "",
|
||||||
|
"section-title": "",
|
||||||
|
"total-analyzed": "",
|
||||||
|
"total-ocr-analyzed": "",
|
||||||
|
"total-pages": "",
|
||||||
|
"unlicensed-analyzed": ""
|
||||||
|
},
|
||||||
|
"retention-capacity-usage": {
|
||||||
|
"active-documents": "",
|
||||||
|
"archived-documents": "",
|
||||||
|
"exceeded-capacity": "",
|
||||||
|
"section-title": "",
|
||||||
|
"storage-capacity": "",
|
||||||
|
"trash-documents": "",
|
||||||
|
"unused": "",
|
||||||
|
"used-capacity": ""
|
||||||
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"active": "Aktiv",
|
"active": "Aktiv",
|
||||||
"inactive": ""
|
"inactive": ""
|
||||||
},
|
}
|
||||||
"total-analyzed": "Seit {date} insgesamt analysierte Seiten",
|
|
||||||
"total-ocr-analyzed": "",
|
|
||||||
"unlicensed-analyzed": "Über Lizenz hinaus analysierte Seiten",
|
|
||||||
"usage-details": "Nutzungsdetails"
|
|
||||||
},
|
},
|
||||||
"license-information": "Lizenzinformationen",
|
"license-information": "Lizenzinformationen",
|
||||||
"load-all-annotations-success": "",
|
"load-all-annotations-success": "",
|
||||||
@ -1709,6 +1741,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"minutes": "",
|
"minutes": "",
|
||||||
|
"no-active-license": "",
|
||||||
"notification": {
|
"notification": {
|
||||||
"assign-approver": "Sie wurden dem Dokument <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> im Dossier <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}<b> als Genehmiger zugewiesen!",
|
"assign-approver": "Sie wurden dem Dokument <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> im Dossier <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}<b> als Genehmiger zugewiesen!",
|
||||||
"assign-reviewer": "Sie wurden dem Dokument <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> im Dossier <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}<b> als Reviewer zugewiesen!",
|
"assign-reviewer": "Sie wurden dem Dokument <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> im Dossier <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}<b> als Reviewer zugewiesen!",
|
||||||
@ -2273,12 +2306,5 @@
|
|||||||
"select": "Wählen"
|
"select": "Wählen"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"yesterday": "Gestern",
|
"yesterday": "Gestern"
|
||||||
"generic-errors": {
|
|
||||||
"400": "",
|
|
||||||
"403": "",
|
|
||||||
"404": "",
|
|
||||||
"409": "",
|
|
||||||
"500": ""
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1217,6 +1217,17 @@
|
|||||||
"title": "Oops! Something went wrong..."
|
"title": "Oops! Something went wrong..."
|
||||||
},
|
},
|
||||||
"exact-date": "{day} {month} {year} at {hour}:{minute}",
|
"exact-date": "{day} {month} {year} at {hour}:{minute}",
|
||||||
|
"false-positive-dialog": {
|
||||||
|
"actions": {
|
||||||
|
"cancel": "",
|
||||||
|
"save": ""
|
||||||
|
},
|
||||||
|
"content": {
|
||||||
|
"body-text": "",
|
||||||
|
"comment": ""
|
||||||
|
},
|
||||||
|
"header": ""
|
||||||
|
},
|
||||||
"file": "File",
|
"file": "File",
|
||||||
"file-attribute-encoding-types": {
|
"file-attribute-encoding-types": {
|
||||||
"ascii": "ASCII",
|
"ascii": "ASCII",
|
||||||
@ -1229,9 +1240,6 @@
|
|||||||
"text": "Free Text"
|
"text": "Free Text"
|
||||||
},
|
},
|
||||||
"file-attribute": {
|
"file-attribute": {
|
||||||
"actions": {
|
|
||||||
"edit": "Edit"
|
|
||||||
},
|
|
||||||
"update": {
|
"update": {
|
||||||
"error": "Failed to update file attribute value!",
|
"error": "Failed to update file attribute value!",
|
||||||
"success": "File attribute value has been updated successfully!"
|
"success": "File attribute value has been updated successfully!"
|
||||||
@ -1375,6 +1383,7 @@
|
|||||||
"standard-tooltip": "Standard Workload view shows all hints, components, recommendations & suggestions. This view allows editing.",
|
"standard-tooltip": "Standard Workload view shows all hints, components, recommendations & suggestions. This view allows editing.",
|
||||||
"tabs": {
|
"tabs": {
|
||||||
"annotations": {
|
"annotations": {
|
||||||
|
"hide-skipped": "",
|
||||||
"jump-to-next": "Jump to Next",
|
"jump-to-next": "Jump to Next",
|
||||||
"jump-to-previous": "Jump to Previous",
|
"jump-to-previous": "Jump to Previous",
|
||||||
"label": "Workload",
|
"label": "Workload",
|
||||||
@ -1384,6 +1393,7 @@
|
|||||||
"select": "Select",
|
"select": "Select",
|
||||||
"select-all": "All",
|
"select-all": "All",
|
||||||
"select-none": "None",
|
"select-none": "None",
|
||||||
|
"show-skipped": "",
|
||||||
"the-filters": "the filters",
|
"the-filters": "the filters",
|
||||||
"wrong-filters": "The selected filter combination is not possible. Please adjust or"
|
"wrong-filters": "The selected filter combination is not possible. Please adjust or"
|
||||||
},
|
},
|
||||||
@ -1662,8 +1672,8 @@
|
|||||||
"licensed-page-count": "Licensed Pages",
|
"licensed-page-count": "Licensed Pages",
|
||||||
"licensed-retention-capacity": "Licensed Retention Capacity",
|
"licensed-retention-capacity": "Licensed Retention Capacity",
|
||||||
"licensed-to": "Licensed to",
|
"licensed-to": "Licensed to",
|
||||||
"section-title": "Licensing Details",
|
"licensing-period": "Licensing Period",
|
||||||
"licensing-period": "Licensing Period"
|
"section-title": "Licensing Details"
|
||||||
},
|
},
|
||||||
"page-usage": {
|
"page-usage": {
|
||||||
"cumulative-pages": "Cumulative Pages",
|
"cumulative-pages": "Cumulative Pages",
|
||||||
@ -1731,6 +1741,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"minutes": "minutes",
|
"minutes": "minutes",
|
||||||
|
"no-active-license": "",
|
||||||
"notification": {
|
"notification": {
|
||||||
"assign-approver": "You have been assigned as approver for <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> in dossier: <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}</b>!",
|
"assign-approver": "You have been assigned as approver for <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> in dossier: <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}</b>!",
|
||||||
"assign-reviewer": "You have been assigned as reviewer for <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> in dossier: <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}</b>!",
|
"assign-reviewer": "You have been assigned as reviewer for <b>{fileHref, select, null{{fileName}} other{<a href=\"{fileHref}\" target=\"_blank\">{fileName}</a>}}</b> in dossier: <b>{dossierHref, select, null{{dossierName}} other{<a href=\"{dossierHref}\" target=\"_blank\">{dossierName}</a>}}</b>!",
|
||||||
@ -2295,12 +2306,5 @@
|
|||||||
"select": "Select"
|
"select": "Select"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"yesterday": "Yesterday",
|
"yesterday": "Yesterday"
|
||||||
"generic-errors": {
|
|
||||||
"400": "The sent request is not valid.",
|
|
||||||
"403": "Access to the requested resource is not allowed.",
|
|
||||||
"404": "The requested resource could not be found.",
|
|
||||||
"409": "The request is incompatible with the current state.",
|
|
||||||
"500": "The server encountered an unexpected condition that prevented it from fulfilling the request."
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user