From bca77b390e5a0e1fd8279687fcc97c0a0656c10a Mon Sep 17 00:00:00 2001 From: siva kumar Date: Wed, 21 Feb 2018 14:57:21 +0530 Subject: [PATCH] [ADF-2260] Action menu translation is missing when right clicking on a file/folder. (#2971) * Fixed missing translation support. * Added a action-menu key in en.json --- demo-shell/src/app/components/files/files.component.html | 2 +- lib/content-services/i18n/en.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/demo-shell/src/app/components/files/files.component.html b/demo-shell/src/app/components/files/files.component.html index a8aa7ec3c5..3526931db5 100644 --- a/demo-shell/src/app/components/files/files.component.html +++ b/demo-shell/src/app/components/files/files.component.html @@ -240,7 +240,7 @@ *ngIf="authenticationService.isBpmLoggedIn()" icon="play_arrow" target="document" - title="DOCUMENT_LIST.ACTIONS.DOCUMENT.PROCESS_ACTION" + title="{{'DOCUMENT_LIST.ACTIONS.DOCUMENT.PROCESS_ACTION' | translate}}" (execute)="startProcesAction($event)"> diff --git a/lib/content-services/i18n/en.json b/lib/content-services/i18n/en.json index 765358c125..78b5b3df66 100644 --- a/lib/content-services/i18n/en.json +++ b/lib/content-services/i18n/en.json @@ -164,7 +164,8 @@ "DOWNLOAD": "Download", "DELETE": "Delete", "MOVE": "Move", - "COPY": "Copy" + "COPY": "Copy", + "PROCESS_ACTION": "Start Process" } } }