From b12d1b4a4470a5b09fc922213ff1a370da49ff71 Mon Sep 17 00:00:00 2001 From: MichalKinas <113341662+MichalKinas@users.noreply.github.com> Date: Wed, 19 Oct 2022 11:52:02 +0200 Subject: [PATCH] [ACS-3600] Add missing label translations (#7890) --- demo-shell/resources/i18n/en.json | 9 ++++++++- .../aspect-list-sample/aspect-list-sample.component.html | 4 ++-- .../breadcrumb-demo/breadcrumb-demo.component.html | 6 +++--- .../card-view-textitem/card-view-textitem.component.html | 2 +- lib/process-services/src/lib/i18n/en.json | 3 ++- .../components/process-instance-tasks.component.html | 2 +- 6 files changed, 17 insertions(+), 9 deletions(-) diff --git a/demo-shell/resources/i18n/en.json b/demo-shell/resources/i18n/en.json index 0bad0ed130..3190877ca6 100644 --- a/demo-shell/resources/i18n/en.json +++ b/demo-shell/resources/i18n/en.json @@ -358,5 +358,12 @@ "ACTION_TYPE": "Action Type" } }, - "DEFAULT_SEARCH": "Default" + "BREADCRUMB_DEMO": { + "NEW_FOLDER_LABEL": "Create a new folder button", + "EDIT_NODE_LABEL": "Edit node button", + "DELETE_NODE_LABEL": "Delete node icon button" + }, + "DEFAULT_SEARCH": "Default", + "OPEN_DIALOG": "Open dialog", + "SHOW_LIST_LABEL": "Click to show the list" } diff --git a/demo-shell/src/app/components/aspect-list-sample/aspect-list-sample.component.html b/demo-shell/src/app/components/aspect-list-sample/aspect-list-sample.component.html index d247df3dbf..d96ae61426 100644 --- a/demo-shell/src/app/components/aspect-list-sample/aspect-list-sample.component.html +++ b/demo-shell/src/app/components/aspect-list-sample/aspect-list-sample.component.html @@ -6,13 +6,13 @@ Node Id For Aspects -
-
diff --git a/demo-shell/src/app/components/breadcrumb-demo/breadcrumb-demo.component.html b/demo-shell/src/app/components/breadcrumb-demo/breadcrumb-demo.component.html index b03dd16d4d..d0aa712bb8 100644 --- a/demo-shell/src/app/components/breadcrumb-demo/breadcrumb-demo.component.html +++ b/demo-shell/src/app/components/breadcrumb-demo/breadcrumb-demo.component.html @@ -64,13 +64,13 @@
- - -
diff --git a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.html b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.html index 42b9bce4d4..5cfea8ae04 100644 --- a/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.html +++ b/lib/core/src/lib/card-view/components/card-view-textitem/card-view-textitem.component.html @@ -35,7 +35,7 @@ class="adf-property-clear-value" *ngIf="isEditable" mat-icon-button - aria-label="Clear" + [attr.aria-label]="'CORE.METADATA.ACTIONS.CLEAR' | translate" (click)="clearValue()"> cancel diff --git a/lib/process-services/src/lib/i18n/en.json b/lib/process-services/src/lib/i18n/en.json index bb80dc5353..3e229554d4 100644 --- a/lib/process-services/src/lib/i18n/en.json +++ b/lib/process-services/src/lib/i18n/en.json @@ -218,7 +218,8 @@ "START_FORM": "Start Form", "TASKS_ACTIVE": "Active Tasks", "TASKS_COMPLETED": "Completed Tasks", - "TASK_SUBTITLE": "Assigned to {{user}}, created {{created}}" + "TASK_SUBTITLE": "Assigned to {{user}}, created {{created}}", + "REFRESH": "Refresh" }, "BUTTON": { "CANCEL": "Cancel Process", diff --git a/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.html b/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.html index 1a7c151044..2fec2fb6bf 100644 --- a/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.html +++ b/lib/process-services/src/lib/process-list/components/process-instance-tasks.component.html @@ -1,6 +1,6 @@