diff --git a/dmp-frontend/src/app/ui/dashboard/dashboard.component.html b/dmp-frontend/src/app/ui/dashboard/dashboard.component.html index ac52140c2..2eef6acd7 100644 --- a/dmp-frontend/src/app/ui/dashboard/dashboard.component.html +++ b/dmp-frontend/src/app/ui/dashboard/dashboard.component.html @@ -9,12 +9,12 @@
+ subtitle="{{'QUICKWIZARD.CREATE-ADD.CREATE.SUBTITLE' | translate}}" routerLink="/quick-wizard" icon="play_circle_outline">
diff --git a/dmp-frontend/src/app/ui/dashboard/recent-edited-activity/recent-edited-activity.component.ts b/dmp-frontend/src/app/ui/dashboard/recent-edited-activity/recent-edited-activity.component.ts index 4ab4f3299..cfcd50234 100644 --- a/dmp-frontend/src/app/ui/dashboard/recent-edited-activity/recent-edited-activity.component.ts +++ b/dmp-frontend/src/app/ui/dashboard/recent-edited-activity/recent-edited-activity.component.ts @@ -138,7 +138,9 @@ export class RecentEditedActivityComponent extends BaseComponent implements OnIn } } - navigateToUrl() { } + navigateToUrl() { + this.router.navigate(["plans/"]); + } roleDisplay(value: any) { const principal: Principal = this.authentication.current(); diff --git a/dmp-frontend/src/app/ui/dmp/editor/dmp-editor.component.ts b/dmp-frontend/src/app/ui/dmp/editor/dmp-editor.component.ts index 94001296b..6d4999860 100644 --- a/dmp-frontend/src/app/ui/dmp/editor/dmp-editor.component.ts +++ b/dmp-frontend/src/app/ui/dmp/editor/dmp-editor.component.ts @@ -291,7 +291,7 @@ export class DmpEditorComponent extends BaseComponent implements OnInit, IBreadC maxWidth: '300px', data: { message: this.language.instant('GENERAL.CONFIRMATION-DIALOG.DELETE-ITEM'), - confirmButton: this.language.instant('GENERAL.CONFIRMATION-DIALOG.ACTIONS.CONFIRM'), + confirmButton: this.language.instant('GENERAL.CONFIRMATION-DIALOG.ACTIONS.DELETE'), cancelButton: this.language.instant('GENERAL.CONFIRMATION-DIALOG.ACTIONS.CANCEL') } }); diff --git a/dmp-frontend/src/assets/i18n/en.json b/dmp-frontend/src/assets/i18n/en.json index 031a50753..e3ba614f8 100644 --- a/dmp-frontend/src/assets/i18n/en.json +++ b/dmp-frontend/src/assets/i18n/en.json @@ -848,7 +848,8 @@ "QUICKWIZARD": { "CREATE-ADD": { "CREATE": { - "TITLE": "Start new DMP", + "TITLE": "New DMP", + "SUBTITLE": "Follow the steps of the wizard", "QUICKWIZARD_CREATE": { "TITLE": "DMP Wizard", "ACTIONS": { @@ -891,7 +892,8 @@ } }, "ADD": { - "TITLE": "Describe Dataset" + "TITLE": "Add Dataset", + "SUBTITLE": "A DMP can have more than one datasets. Describe new or modify existing datasets here" } }, "SAVE-DIALOG": {