From 989d2cf2f03d2e6bc4109be84f984e6e83152550 Mon Sep 17 00:00:00 2001 From: Timo Bejan Date: Mon, 16 Nov 2020 18:40:30 +0200 Subject: [PATCH] messages for annotation actions --- .../src/app/screens/file/service/manual-annotation.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/red-ui/src/app/screens/file/service/manual-annotation.service.ts b/apps/red-ui/src/app/screens/file/service/manual-annotation.service.ts index 8722ab666..1ced9018b 100644 --- a/apps/red-ui/src/app/screens/file/service/manual-annotation.service.ts +++ b/apps/red-ui/src/app/screens/file/service/manual-annotation.service.ts @@ -209,6 +209,6 @@ export class ManualAnnotationService { modifyDictionary?: boolean, error: boolean = false ) { - return 'annotation-actions.message.' + mode + '.' + (modifyDictionary ? 'dictionary.' : 'manual-redaction.') + mode + (error ? '.error' : '.success'); + return 'annotation-actions.message.' + (modifyDictionary ? 'dictionary.' : 'manual-redaction.') + mode + (error ? '.error' : '.success'); } }