Renames properties on 2nd tab of DMP wizard. (Issue #124)
This commit is contained in:
parent
237ae94f10
commit
fb824c70e9
|
@ -20,11 +20,13 @@
|
|||
<mat-form-field class="col-md-12">
|
||||
<textarea matInput class="description-area" placeholder="{{'QUICKWIZARD.CREATE-ADD.CREATE.QUICKWIZARD_CREATE.SECOND-STEP.FIELDS.DESCRIPTION' | translate}}"
|
||||
formControlName="description"></textarea>
|
||||
<mat-hint>{{'QUICKWIZARD.CREATE-ADD.CREATE.QUICKWIZARD_CREATE.SECOND-STEP.FIELDS.DESCRIPTION-HINT' | translate}}</mat-hint>
|
||||
</mat-form-field>
|
||||
<mat-form-field class="col-12">
|
||||
<mat-form-field class="col-12 mt-3">
|
||||
<app-single-auto-complete [required]='true' [formControl]="formGroup.get('datasetProfile')" placeholder="{{'QUICKWIZARD.CREATE-ADD.CREATE.QUICKWIZARD_CREATE.SECOND-STEP.FIELDS.PROFILE' | translate}}"
|
||||
[configuration]="profilesAutoCompleteConfiguration" [disabled]="datasetIsEmpty()">
|
||||
</app-single-auto-complete>
|
||||
<mat-hint>{{'QUICKWIZARD.CREATE-ADD.CREATE.QUICKWIZARD_CREATE.SECOND-STEP.FIELDS.PROFILE-HINT' | translate}}</mat-hint>
|
||||
<mat-error *ngIf="formGroup.get('datasetProfile').hasError('backendError')">
|
||||
{{formGroup.get('datasetProfile').getError('backendError').message}}</mat-error>
|
||||
<mat-error *ngIf="formGroup.get('datasetProfile').hasError('required')">
|
||||
|
|
|
@ -887,13 +887,15 @@
|
|||
}
|
||||
},
|
||||
"SECOND-STEP": {
|
||||
"TITLE": "Description",
|
||||
"TITLE": "DMP Profile",
|
||||
"NEW-TITLE": "",
|
||||
"DMP-NAME": "DMP For Project : ",
|
||||
"FIELDS": {
|
||||
"NAME": "Title of the DMP",
|
||||
"DESCRIPTION": "Provide an optional description for the DMP context and purpose",
|
||||
"PROFILE": "Dataset Description Template"
|
||||
"DESCRIPTION": "Summary",
|
||||
"DESCRIPTION-HINT": "Briefly describe the context and purpose of the DMP",
|
||||
"PROFILE": "Dataset Description Template",
|
||||
"PROFILE-HINT": "Select a template to describe your dataset(s)"
|
||||
}
|
||||
},
|
||||
"THIRD-STEP": {
|
||||
|
|
Loading…
Reference in New Issue