#7665: Save and Previous buttons updated on the Dataset Template (Admin).
1. dmp-editor.component.html & dmp-clone.component.html & dataset-wizard.component.html: On next button, moved chevron_right icon to the right side of the text. 2. dataset-profile-editor.component.scss: a. Removed margin-top from .dataset-profile-editor. b. Updated position and styling of .scroll-on-top. c. Added .floating-btn and .progress-min-height. 3. dataset-profile-editor.component.ts: a. Set showScrollOnTopButton default value to true and comment intersection stepperNavigationObserver (because title is sticky now and always visible). b. In method "onSubmit()" added parameter close:boolean=false, to check if the router will navigate to "/dataset-profiles" or not (button "save and continue" added). 4. dataset-profile-editor.component.html: a. Renamed "Back" button to "Close" and use DATASET-WIZARD.ACTIONS.CLOSE. b. Moved "Close", "Save"/"Update" and "Finalize" buttons aligned with title on the top right. c. Made title with aligned buttons sticky to top with stepper. d. Moved buttons "Previous"/"Next" on the down right of viewport (floating buttons). e. Moved scroll button and update it. f. Updated alignment of main content when there is no sidebar on the left. 5. i18n/: In language files added "DATASET-WIZARD.ACTIONS.CLOSE" and updated "USER-PROFILE.MERGING-EMAILS-DIALOG.TITLE" (#7662).
This commit is contained in:
parent
943f84384c
commit
a5061759b8
|
@ -7,122 +7,98 @@
|
||||||
|
|
||||||
|
|
||||||
<!-- Total steps: {{stepper.steps.length}} -->
|
<!-- Total steps: {{stepper.steps.length}} -->
|
||||||
|
<div id="header-outer-wrapper">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 d-flex" id="title-column">
|
||||||
|
|
||||||
<div class="row">
|
<div style="padding-left: 2em;">
|
||||||
<div class="col-12 d-flex" id="title-column">
|
<h3 *ngIf="isNew && !isClone && !isNewVersion">{{'DATASET-PROFILE-EDITOR.TITLE.NEW-PROFILE' | translate}}</h3>
|
||||||
|
<h3 *ngIf="isNew && isClone">
|
||||||
|
<span *ngIf="isClone">{{'DATASET-PROFILE-EDITOR.TITLE.NEW-PROFILE-CLONE' | translate}}</span>
|
||||||
|
{{form.get('label').value}}
|
||||||
|
</h3>
|
||||||
|
<h3 *ngIf="isNew && isNewVersion">
|
||||||
|
<span *ngIf="isNewVersion">{{'DATASET-PROFILE-EDITOR.TITLE.NEW-PROFILE-VERSION' | translate}}</span>
|
||||||
|
{{form.get('label').value}}
|
||||||
|
</h3>
|
||||||
|
|
||||||
<div style="padding-left: 2em;">
|
<h3 *ngIf="!isNew">{{form.get('label').value}}</h3>
|
||||||
<h3 *ngIf="isNew && !isClone && !isNewVersion">{{'DATASET-PROFILE-EDITOR.TITLE.NEW-PROFILE' | translate}}</h3>
|
</div>
|
||||||
<h3 *ngIf="isNew && isClone">
|
<ng-container *ngTemplateOutlet="actions"></ng-container>
|
||||||
<span *ngIf="isClone">{{'DATASET-PROFILE-EDITOR.TITLE.NEW-PROFILE-CLONE' | translate}}</span>
|
|
||||||
{{form.get('label').value}}
|
|
||||||
</h3>
|
|
||||||
<h3 *ngIf="isNew && isNewVersion">
|
|
||||||
<span *ngIf="isNewVersion">{{'DATASET-PROFILE-EDITOR.TITLE.NEW-PROFILE-VERSION' | translate}}</span>
|
|
||||||
{{form.get('label').value}}
|
|
||||||
</h3>
|
|
||||||
|
|
||||||
<h3 *ngIf="!isNew">{{form.get('label').value}}</h3>
|
|
||||||
|
<!-- <div class="d-flex justify-content-end" style="gap: 1em">
|
||||||
|
<button mat-raised-button *ngIf="form.get('status').value==1" class="template_action_btn" (click)="downloadXML();" type="button" [@action-btn]>{{
|
||||||
|
'DATASET-WIZARD.ACTIONS.DOWNLOAD-XML' | translate }}</button>
|
||||||
|
|
||||||
|
<ng-container *ngIf="!viewOnly">
|
||||||
|
<button mat-raised-button class="template_action_btn" type="button"
|
||||||
|
*ngIf="stepper.selectedIndex !=2 && !newVersionId"
|
||||||
|
[@action-btn]
|
||||||
|
(click)='finalize()' [disabled]="!form.valid">{{'DATASET-PROFILE-EDITOR.ACTIONS.FINALIZE' |
|
||||||
|
translate}}</button>
|
||||||
|
<button mat-raised-button class="template_action_btn" type="button" [@action-btn]
|
||||||
|
*ngIf="!newVersionId || (newVersionId && stepper.selectedIndex !=2)"
|
||||||
|
(click)='onSubmit()' [disabled]="!form.valid">{{'DATASET-PROFILE-EDITOR.ACTIONS.SAVE' |
|
||||||
|
translate}}</button>
|
||||||
|
</ng-container>
|
||||||
|
<ng-container *ngIf="showUpdateButton()">
|
||||||
|
<button mat-raised-button class="template_action_btn" type="button"
|
||||||
|
*ngIf="stepper.selectedIndex !=2 && !newVersionId"
|
||||||
|
[@action-btn]
|
||||||
|
(click)='updateFinalized()' [disabled]="!form.valid">{{'DATASET-PROFILE-EDITOR.ACTIONS.UPDATE' |
|
||||||
|
translate}}</button>
|
||||||
|
</ng-container>
|
||||||
|
<ng-container *ngIf="!isNew">
|
||||||
|
<button mat-raised-button class="template_action_btn" (click)="delete()" [@action-btn]>
|
||||||
|
<mat-icon>delete</mat-icon>{{'DATASET-PROFILE-EDITOR.ACTIONS.DELETE' | translate}}
|
||||||
|
</button>
|
||||||
|
</ng-container>
|
||||||
|
</div> -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div class="d-flex justify-content-end" style="gap: 1em">
|
|
||||||
<button mat-raised-button *ngIf="form.get('status').value==1" class="template_action_btn" (click)="downloadXML();" type="button" [@action-btn]>{{
|
|
||||||
'DATASET-WIZARD.ACTIONS.DOWNLOAD-XML' | translate }}</button>
|
|
||||||
|
|
||||||
<ng-container *ngIf="!viewOnly">
|
|
||||||
<button mat-raised-button class="template_action_btn" type="button"
|
|
||||||
*ngIf="stepper.selectedIndex !=2 && !newVersionId"
|
|
||||||
[@action-btn]
|
|
||||||
(click)='finalize()' [disabled]="!form.valid">{{'DATASET-PROFILE-EDITOR.ACTIONS.FINALIZE' |
|
|
||||||
translate}}</button>
|
|
||||||
<button mat-raised-button class="template_action_btn" type="button" [@action-btn]
|
|
||||||
*ngIf="!newVersionId || (newVersionId && stepper.selectedIndex !=2)"
|
|
||||||
(click)='onSubmit()' [disabled]="!form.valid">{{'DATASET-PROFILE-EDITOR.ACTIONS.SAVE' |
|
|
||||||
translate}}</button>
|
|
||||||
</ng-container>
|
|
||||||
<ng-container *ngIf="showUpdateButton()">
|
|
||||||
<button mat-raised-button class="template_action_btn" type="button"
|
|
||||||
*ngIf="stepper.selectedIndex !=2 && !newVersionId"
|
|
||||||
[@action-btn]
|
|
||||||
(click)='updateFinalized()' [disabled]="!form.valid">{{'DATASET-PROFILE-EDITOR.ACTIONS.UPDATE' |
|
|
||||||
translate}}</button>
|
|
||||||
</ng-container>
|
|
||||||
<ng-container *ngIf="!isNew">
|
|
||||||
<button mat-raised-button class="template_action_btn" (click)="delete()" [@action-btn]>
|
|
||||||
<mat-icon>delete</mat-icon>{{'DATASET-PROFILE-EDITOR.ACTIONS.DELETE' | translate}}
|
|
||||||
</button>
|
|
||||||
</ng-container>
|
|
||||||
</div> -->
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row stepper-navigation-outer-wrapper" >
|
<div class="row stepper-navigation-outer-wrapper" >
|
||||||
|
|
||||||
|
|
||||||
<!-- Steps Navigation -->
|
<!-- Steps Navigation -->
|
||||||
<div id="stepper-navigation-wrapper">
|
<div id="stepper-navigation-wrapper">
|
||||||
<div class="col-12 d-flex" *ngIf="steps" id="stepper-navigation">
|
<div class="col-12 d-flex" *ngIf="steps" id="stepper-navigation">
|
||||||
<div class="col-7 bg-white" style="overflow: hidden; padding: 0px" id="progress-container">
|
<!-- <button [@previous_btn] mat-button class="navigate-btn mr-3" (click)="stepper.previous()"-->
|
||||||
<div id="progress" [ngStyle]="progressStyle"></div>
|
<!-- [class.navigate-btn-disabled]="stepper.selectedIndex ==0">-->
|
||||||
<div class="row h-100">
|
<!-- <mat-icon class="back-icon pointer">chevron_left</mat-icon>-->
|
||||||
<div class="col text-center align-self-center" *ngFor="let step of steps; index as idx">
|
<!-- {{'DMP-EDITOR.STEPPER.PREVIOUS' | translate}}-->
|
||||||
<span (click)="stepper.selectedIndex=idx"
|
<!-- </button>-->
|
||||||
class="stepper-title-label"
|
|
||||||
[ngClass]="{'stepper-title-label-locked': !isStepUnlocked(idx),'stepper-title-label-completed':idx < stepper.selectedIndex} ">
|
<div class="col-7 bg-white" style="overflow: hidden; padding: 0px" id="progress-container">
|
||||||
<ng-container *ngIf="(step.completed &&(idx!=steps.length-1)) else numberLabel">
|
<div id="progress" [ngStyle]="progressStyle"></div>
|
||||||
<mat-icon style="font-size:0.7em; height: 0px;">done</mat-icon>
|
<div class="row h-100 progress-min-height">
|
||||||
</ng-container>
|
<div class="col text-center align-self-center" *ngFor="let step of steps; index as idx">
|
||||||
<ng-template #numberLabel>
|
<span (click)="stepper.selectedIndex=idx"
|
||||||
{{idx+1}}
|
class="stepper-title-label"
|
||||||
</ng-template>
|
[ngClass]="{'stepper-title-label-locked': !isStepUnlocked(idx),'stepper-title-label-completed':idx < stepper.selectedIndex} ">
|
||||||
{{step.label}}
|
<ng-container *ngIf="(step.completed &&(idx!=steps.length-1)) else numberLabel">
|
||||||
</span>
|
<mat-icon style="font-size:0.7em; height: 0px;">done</mat-icon>
|
||||||
|
</ng-container>
|
||||||
|
<ng-template #numberLabel>
|
||||||
|
{{idx+1}}
|
||||||
|
</ng-template>
|
||||||
|
{{step.label}}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- <button mat-button class="navigate-btn ml-3"-->
|
||||||
|
<!-- [@next_btn]-->
|
||||||
|
<!-- (click)="validateStep(stepper.selectedIndex);stepper.next();"-->
|
||||||
|
<!-- [ngClass]="{'navigate-btn-disabled': !isStepCompleted(stepper.selectedIndex) || (stepper.selectedIndex === (steps.length-1))}">-->
|
||||||
|
<!-- <span>{{'DMP-EDITOR.STEPPER.NEXT' | translate}}</span>-->
|
||||||
|
<!-- <mat-icon class="back-icon pointer">chevron_right</mat-icon>-->
|
||||||
|
<!-- </button>-->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col d-flex justify-content-end" style="padding-right: 0px;">
|
|
||||||
<button [@previous_btn] mat-button class="navigate-btn" (click)="stepper.previous()" *ngIf="stepper.selectedIndex !=0">
|
|
||||||
<!-- <mat-icon>navigate_before</mat-icon> -->
|
|
||||||
{{'DMP-EDITOR.STEPPER.PREVIOUS' | translate}}
|
|
||||||
</button>
|
|
||||||
<button mat-button class="navigate-btn ml-3"
|
|
||||||
[@next_btn]
|
|
||||||
(click)="validateStep(stepper.selectedIndex);stepper.next();"
|
|
||||||
*ngIf="stepper.selectedIndex != (steps.length-1)"
|
|
||||||
[ngClass]="{'navigate-btn-disabled': !isStepCompleted(stepper.selectedIndex)}">
|
|
||||||
|
|
||||||
<mat-icon style="font-size: 1.66em;">navigate_next</mat-icon>{{'DMP-EDITOR.STEPPER.NEXT' | translate}}
|
|
||||||
</button>
|
|
||||||
|
|
||||||
|
|
||||||
<ng-container *ngIf="steps.length-1 === stepper.selectedIndex">
|
|
||||||
<button [@finalize_btn] mat-button class="finalize-btn ml-3"
|
|
||||||
[disabled]="!form.valid"
|
|
||||||
(click)="updateAndFinalize()"
|
|
||||||
>
|
|
||||||
|
|
||||||
<ng-container *ngIf="form.get('status').value==1">
|
|
||||||
<ng-container *ngIf="newVersionId else updateText">
|
|
||||||
{{'DATASET-PROFILE-EDITOR.ACTIONS.SAVE' |translate}}
|
|
||||||
</ng-container>
|
|
||||||
<ng-template #updateText>
|
|
||||||
{{'DATASET-PROFILE-EDITOR.ACTIONS.UPDATE' |translate}}
|
|
||||||
</ng-template>
|
|
||||||
</ng-container>
|
|
||||||
<ng-container *ngIf="form.get('status').value!=1">
|
|
||||||
{{'DATASET-PROFILE-EDITOR.ACTIONS.FINALIZE' |translate}}
|
|
||||||
</ng-container>
|
|
||||||
</button>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@ -134,12 +110,7 @@
|
||||||
<mat-step [label]="'DATASET-PROFILE-EDITOR.STEPS.GENERAL-INFO.TITLE' | translate" [completed]="(!form.get('label').invalid && !form.get('description').invalid && !form.get('language').invalid)" >
|
<mat-step [label]="'DATASET-PROFILE-EDITOR.STEPS.GENERAL-INFO.TITLE' | translate" [completed]="(!form.get('label').invalid && !form.get('description').invalid && !form.get('language').invalid)" >
|
||||||
<!-- <ng-template matStepLabel>{{'DATASET-PROFILE-EDITOR.STEPS.GENERAL-INFO.TITLE' | translate}}
|
<!-- <ng-template matStepLabel>{{'DATASET-PROFILE-EDITOR.STEPS.GENERAL-INFO.TITLE' | translate}}
|
||||||
</ng-template> -->
|
</ng-template> -->
|
||||||
<div class="row">
|
<div class="col-9">
|
||||||
<div class="col-3 side-actions">
|
|
||||||
<ng-container *ngTemplateOutlet="actions">
|
|
||||||
|
|
||||||
</ng-container>
|
|
||||||
</div>
|
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<div class="heading">1.1 {{'DATASET-PROFILE-EDITOR.STEPS.GENERAL-INFO.DATASET-TEMPLATE-NAME'| translate}} *</div>
|
<div class="heading">1.1 {{'DATASET-PROFILE-EDITOR.STEPS.GENERAL-INFO.DATASET-TEMPLATE-NAME'| translate}} *</div>
|
||||||
|
@ -267,10 +238,6 @@
|
||||||
(dataNeedsRefresh)="onDataNeedsRefresh($event)"
|
(dataNeedsRefresh)="onDataNeedsRefresh($event)"
|
||||||
[colorizeInvalid]="colorizeInvalid">
|
[colorizeInvalid]="colorizeInvalid">
|
||||||
</dataset-profile-table-of-contents>
|
</dataset-profile-table-of-contents>
|
||||||
<ng-container *ngIf="true then actions">
|
|
||||||
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -281,7 +248,7 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<div class="row" *ngIf="selectedTocEntry">
|
<div class="col-12" *ngIf="selectedTocEntry">
|
||||||
|
|
||||||
<!-- PAGE INFO -->
|
<!-- PAGE INFO -->
|
||||||
<div class="col-12 content-displayer" *ngIf="selectedTocEntry.type === tocEntryEnumValues.Page" [@fade-in-fast]>
|
<div class="col-12 content-displayer" *ngIf="selectedTocEntry.type === tocEntryEnumValues.Page" [@fade-in-fast]>
|
||||||
|
@ -370,17 +337,13 @@
|
||||||
<!-- {{'DATASET-PROFILE-EDITOR.ACTIONS.PREVIEW-AND-FINALIZE' | translate}} -->
|
<!-- {{'DATASET-PROFILE-EDITOR.ACTIONS.PREVIEW-AND-FINALIZE' | translate}} -->
|
||||||
<!-- <button (click)="generatePreviewForm()">foo</button> -->
|
<!-- <button (click)="generatePreviewForm()">foo</button> -->
|
||||||
<ng-container *ngIf="formGroup">
|
<ng-container *ngIf="formGroup">
|
||||||
<div class="row">
|
<div class="col-9">
|
||||||
<div class="col-3 sticky-top" style="display: flex; height: 40vh;">
|
|
||||||
|
|
||||||
<ng-container *ngTemplateOutlet="actions">
|
|
||||||
|
|
||||||
</ng-container>
|
|
||||||
</div>
|
|
||||||
<div class="col">
|
<div class="col">
|
||||||
|
<div class="col-12">
|
||||||
<app-final-preview-component [formGroup]="formGroup" [visibilityRules]="visibilityRules">
|
<app-final-preview-component [formGroup]="formGroup" [visibilityRules]="visibilityRules">
|
||||||
|
|
||||||
</app-final-preview-component>
|
</app-final-preview-component>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -441,13 +404,37 @@
|
||||||
|
|
||||||
</ng-container> -->
|
</ng-container> -->
|
||||||
|
|
||||||
<div class="scroll-on-top">
|
<!-- <div class="scroll-on-top">-->
|
||||||
<button mat-fab (click)="scrollOnTop()" *ngIf="showScrollOnTopButton" [@scroll-on-top-btn] [matTooltip]="'DATASET-PROFILE-EDITOR.ACTIONS.BACK-TO-TOP'| translate">
|
<!-- <button mat-fab (click)="scrollOnTop()" *ngIf="showScrollOnTopButton" [@scroll-on-top-btn] [matTooltip]="'DATASET-PROFILE-EDITOR.ACTIONS.BACK-TO-TOP'| translate">-->
|
||||||
<mat-icon>
|
<!-- <mat-icon>-->
|
||||||
keyboard_arrow_up
|
<!-- keyboard_arrow_up-->
|
||||||
</mat-icon>
|
<!-- </mat-icon>-->
|
||||||
</button>
|
<!-- </button>-->
|
||||||
</div>
|
<!-- </div>-->
|
||||||
|
|
||||||
|
<a class="scroll-on-top d-flex flex-column align-items-center" (click)="scrollOnTop()" *ngIf="showScrollOnTopButton" [@scroll-on-top-btn] [matTooltip]="'DATASET-PROFILE-EDITOR.ACTIONS.BACK-TO-TOP'| translate">
|
||||||
|
<mat-icon>
|
||||||
|
arrow_upward
|
||||||
|
</mat-icon>
|
||||||
|
<div>SCROLL</div>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<ng-container *ngIf="steps && stepper">
|
||||||
|
<div class="floating-btn">
|
||||||
|
<button *ngIf="stepper?.selectedIndex > 0" [@previous_btn] mat-button
|
||||||
|
class="navigate-btn" (click)="stepper?.previous()">
|
||||||
|
<mat-icon class="back-icon pointer">chevron_left</mat-icon>
|
||||||
|
{{'DMP-EDITOR.STEPPER.PREVIOUS' | translate}}
|
||||||
|
</button>
|
||||||
|
<button *ngIf="stepper?.selectedIndex < (steps.length-1)" mat-button
|
||||||
|
class="navigate-btn ml-3" [@next_btn]
|
||||||
|
(click)="validateStep(stepper?.selectedIndex);stepper?.next();"
|
||||||
|
[ngClass]="{'navigate-btn-disabled': !isStepCompleted(stepper?.selectedIndex)}">
|
||||||
|
<span>{{'DMP-EDITOR.STEPPER.NEXT' | translate}}</span>
|
||||||
|
<mat-icon class="back-icon pointer">chevron_right</mat-icon>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
<!-- <div class="row">
|
<!-- <div class="row">
|
||||||
<button (click)="printForm()">
|
<button (click)="printForm()">
|
||||||
|
@ -479,9 +466,29 @@
|
||||||
|
|
||||||
|
|
||||||
<ng-template #actions>
|
<ng-template #actions>
|
||||||
<div class="actions-template">
|
<div>
|
||||||
<button mat-raised-button class="template_action_btn" (click)="discardChanges()">{{'DATASET-WIZARD.ACTIONS.BACK' | translate}}</button>
|
<button mat-raised-button class="template_action_btn mr-3" (click)="discardChanges()">{{'DATASET-WIZARD.ACTIONS.CLOSE' | translate}}</button>
|
||||||
<button *ngIf="!viewOnly" mat-raised-button class="template_action_btn save-btn" (click)="onSubmit()" [disabled]="!form.valid">{{'DATASET-PROFILE-EDITOR.ACTIONS.SAVE' |translate}}</button>
|
<button *ngIf="!viewOnly" mat-raised-button class="template_action_btn save-btn" (click)="onSubmit()" [disabled]="!form.valid">
|
||||||
<button *ngIf="viewOnly" [@finalize_btn] mat-raised-button class="template_action_btn save-btn" (click)="updateAndFinalize()">{{'DATASET-PROFILE-EDITOR.ACTIONS.UPDATE' |translate}}</button>
|
{{'DATASET-PROFILE-EDITOR.ACTIONS.SAVE' |translate}}
|
||||||
|
<mat-icon (click)="$event.stopPropagation();" style="width: 14px;" [matMenuTriggerFor]="menuSave">expand_more</mat-icon>
|
||||||
|
</button>
|
||||||
|
<mat-menu #menuSave="matMenu">
|
||||||
|
<button [disabled]="!form.valid" mat-menu-item (click)="onSubmit(true)" type="button">{{ 'DATASET-WIZARD.ACTIONS.SAVE-AND-CLOSE' | translate }}</button>
|
||||||
|
<button [disabled]="!form.valid" mat-menu-item (click)="onSubmit()" type="button">{{ 'DATASET-WIZARD.ACTIONS.SAVE-AND-CONTINUE' | translate }}</button>
|
||||||
|
</mat-menu>
|
||||||
|
|
||||||
|
<button *ngIf="viewOnly" [@finalize_btn] mat-raised-button class="template_action_btn save-btn" [disabled]="!form.valid" (click)="updateAndFinalize()">
|
||||||
|
{{'DATASET-PROFILE-EDITOR.ACTIONS.UPDATE' |translate}}
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button *ngIf="!viewOnly && steps?.length-1 === stepper?.selectedIndex"
|
||||||
|
[@finalize_btn] mat-button class="finalize-btn ml-3"
|
||||||
|
[disabled]="!form.valid"
|
||||||
|
[class.invisible]="steps?.length-1 !== stepper?.selectedIndex"
|
||||||
|
(click)="updateAndFinalize()">
|
||||||
|
<ng-container *ngIf="form.get('status').value!=1">
|
||||||
|
{{'DATASET-PROFILE-EDITOR.ACTIONS.FINALIZE' |translate}}
|
||||||
|
</ng-container>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.dataset-profile-editor {
|
.dataset-profile-editor {
|
||||||
margin-top: 1.3rem;
|
//margin-top: 1.3rem;
|
||||||
|
|
||||||
.full-width {
|
.full-width {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -146,7 +146,7 @@ $blue-color-light: #5cf7f2;
|
||||||
padding-right: 2em;
|
padding-right: 2em;
|
||||||
box-shadow: 0px 3px 6px #1E202029;
|
box-shadow: 0px 3px 6px #1E202029;
|
||||||
color: #212121;
|
color: #212121;
|
||||||
|
|
||||||
transition-property: background-color, color;
|
transition-property: background-color, color;
|
||||||
transition-duration: 200ms;
|
transition-duration: 200ms;
|
||||||
transition-delay: 50ms;
|
transition-delay: 50ms;
|
||||||
|
@ -317,11 +317,25 @@ $blue-color-light: #5cf7f2;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.scroll-on-top{
|
.scroll-on-top{
|
||||||
|
position: fixed;
|
||||||
|
bottom: 20em;
|
||||||
|
right: 2em;
|
||||||
|
color: #129D99 !important;
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
.floating-btn {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
bottom: 2em;
|
bottom: 2em;
|
||||||
right: 2em;
|
right: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.progress-min-height {
|
||||||
|
min-height: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#stepper-navigation-wrapper{
|
#stepper-navigation-wrapper{
|
||||||
z-index: 99;
|
z-index: 99;
|
||||||
|
@ -343,6 +357,14 @@ $blue-color-light: #5cf7f2;
|
||||||
.stepper-navigation-outer-wrapper{
|
.stepper-navigation-outer-wrapper{
|
||||||
padding: 2em;
|
padding: 2em;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
|
//background: #f4f4f4;
|
||||||
|
//position: sticky;
|
||||||
|
//top: 0.01em;
|
||||||
|
//z-index: 9999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header-outer-wrapper {
|
||||||
|
padding-top: 1.3rem;
|
||||||
background: #f4f4f4;
|
background: #f4f4f4;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0.01em;
|
top: 0.01em;
|
||||||
|
@ -359,4 +381,4 @@ $blue-color-light: #5cf7f2;
|
||||||
height: 40vh;
|
height: 40vh;
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 2em;
|
top: 2em;
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,7 +85,7 @@ export class DatasetProfileEditorComponent extends CheckDeactivateBaseComponent
|
||||||
inputUserState: 'untriggered'| 'triggered' = 'untriggered';
|
inputUserState: 'untriggered'| 'triggered' = 'untriggered';
|
||||||
private _inputUserField$:BehaviorSubject<boolean> = new BehaviorSubject<boolean>(false);
|
private _inputUserField$:BehaviorSubject<boolean> = new BehaviorSubject<boolean>(false);
|
||||||
private _inputUserButton$:BehaviorSubject<boolean> = new BehaviorSubject<boolean>(false);
|
private _inputUserButton$:BehaviorSubject<boolean> = new BehaviorSubject<boolean>(false);
|
||||||
showScrollOnTopButton:boolean = false;
|
showScrollOnTopButton:boolean = true;
|
||||||
|
|
||||||
private stepperNavigationObserver: IntersectionObserver;
|
private stepperNavigationObserver: IntersectionObserver;
|
||||||
|
|
||||||
|
@ -246,34 +246,34 @@ export class DatasetProfileEditorComponent extends CheckDeactivateBaseComponent
|
||||||
if(tocentries && tocentries.length){
|
if(tocentries && tocentries.length){
|
||||||
this.selectedTocEntry = tocentries[0];
|
this.selectedTocEntry = tocentries[0];
|
||||||
}
|
}
|
||||||
setTimeout(() => {
|
// setTimeout(() => {
|
||||||
// const stepperNavigation = document.getElementById('stepper-navigation');
|
// // const stepperNavigation = document.getElementById('stepper-navigation');
|
||||||
const titleColumn = document.getElementById('title-column');
|
// // const titleColumn = document.getElementById('title-column');
|
||||||
// const stepperNavigationWrapper = document.getElementById('stepper-navigation-wrapper');
|
// // const stepperNavigationWrapper = document.getElementById('stepper-navigation-wrapper');
|
||||||
|
//
|
||||||
if(titleColumn){
|
// if(titleColumn){
|
||||||
if(this.stepperNavigationObserver){
|
// if(this.stepperNavigationObserver){
|
||||||
this.stepperNavigationObserver.disconnect();
|
// this.stepperNavigationObserver.disconnect();
|
||||||
this.stepperNavigationObserver = null;
|
// this.stepperNavigationObserver = null;
|
||||||
}
|
// }
|
||||||
this.stepperNavigationObserver = new IntersectionObserver((e)=>{
|
// this.stepperNavigationObserver = new IntersectionObserver((e)=>{
|
||||||
e.forEach(_=>{
|
// e.forEach(_=>{
|
||||||
if(_.isIntersecting){
|
// if(_.isIntersecting){
|
||||||
this.showScrollOnTopButton = false;
|
// this.showScrollOnTopButton = false;
|
||||||
// stepperNavigation.classList.remove('fixed-navigation');
|
// // stepperNavigation.classList.remove('fixed-navigation');
|
||||||
// stepperNavigationWrapper.classList.remove('fixed-navigation');
|
// // stepperNavigationWrapper.classList.remove('fixed-navigation');
|
||||||
}else{
|
// }else{
|
||||||
this.showScrollOnTopButton = true;
|
// this.showScrollOnTopButton = true;
|
||||||
// stepperNavigation.classList.add('fixed-navigation');
|
// // stepperNavigation.classList.add('fixed-navigation');
|
||||||
// stepperNavigationWrapper.classList.add('fixed-navigation');
|
// // stepperNavigationWrapper.classList.add('fixed-navigation');
|
||||||
}
|
// }
|
||||||
})
|
// })
|
||||||
}, {root:null, rootMargin:'0px', threshold:0});
|
// }, {root:null, rootMargin:'0px', threshold:0});
|
||||||
this.stepperNavigationObserver.observe(titleColumn);
|
// this.stepperNavigationObserver.observe(titleColumn);
|
||||||
}else{
|
// }else{
|
||||||
console.log('Could not load scroll On Top Observer')
|
// console.log('Could not load scroll On Top Observer')
|
||||||
}
|
// }
|
||||||
}, 400);
|
// }, 400);
|
||||||
// this._initializeFormValidity(tocentries);
|
// this._initializeFormValidity(tocentries);
|
||||||
|
|
||||||
//Checking invalid visibilty RULES
|
//Checking invalid visibilty RULES
|
||||||
|
@ -424,7 +424,7 @@ export class DatasetProfileEditorComponent extends CheckDeactivateBaseComponent
|
||||||
// (<FormArray>this.form.get('sections')).removeAt(index);
|
// (<FormArray>this.form.get('sections')).removeAt(index);
|
||||||
// }
|
// }
|
||||||
|
|
||||||
onSubmit() {
|
onSubmit(close: boolean = false) {
|
||||||
let data = this.form.value;
|
let data = this.form.value;
|
||||||
|
|
||||||
if (this.datasetProfileId) {
|
if (this.datasetProfileId) {
|
||||||
|
@ -432,7 +432,9 @@ export class DatasetProfileEditorComponent extends CheckDeactivateBaseComponent
|
||||||
.pipe(takeUntil(this._destroyed))
|
.pipe(takeUntil(this._destroyed))
|
||||||
.subscribe(() => {
|
.subscribe(() => {
|
||||||
this.form.markAsPristine();//deactivate guard
|
this.form.markAsPristine();//deactivate guard
|
||||||
this.router.navigate(['/dataset-profiles']);
|
if(close) {
|
||||||
|
this.router.navigate(['/dataset-profiles']);
|
||||||
|
}
|
||||||
this.uiNotificationService.snackBarNotification(this.language.instant('DATASET-PROFILE-EDITOR.FEEDBACK-MESSAGES.SAVE-SUCCESS'), SnackBarNotificationLevel.Success);
|
this.uiNotificationService.snackBarNotification(this.language.instant('DATASET-PROFILE-EDITOR.FEEDBACK-MESSAGES.SAVE-SUCCESS'), SnackBarNotificationLevel.Success);
|
||||||
},error=> this.onCallbackError(error));
|
},error=> this.onCallbackError(error));
|
||||||
} else if (this.newVersionId) {
|
} else if (this.newVersionId) {
|
||||||
|
@ -442,8 +444,10 @@ export class DatasetProfileEditorComponent extends CheckDeactivateBaseComponent
|
||||||
.pipe(takeUntil(this._destroyed))
|
.pipe(takeUntil(this._destroyed))
|
||||||
.subscribe(() => {
|
.subscribe(() => {
|
||||||
this.form.markAsPristine();//deactivate guard
|
this.form.markAsPristine();//deactivate guard
|
||||||
this.router.navigate(['/dataset-profiles']);
|
if(close) {
|
||||||
this.uiNotificationService.snackBarNotification(this.language.instant('DATASET-PROFILE-EDITOR.FEEDBACK-MESSAGES.SAVE-SUCCESS'), SnackBarNotificationLevel.Success);
|
this.router.navigate(['/dataset-profiles']);
|
||||||
|
}
|
||||||
|
this.uiNotificationService.snackBarNotification(this.language.instant('DATASET-PROFILE-EDITOR.FEEDBACK-MESSAGES.SAVE-SUCCESS'), SnackBarNotificationLevel.Success);
|
||||||
},
|
},
|
||||||
error => this.onCallbackErrorNewVersion(error)
|
error => this.onCallbackErrorNewVersion(error)
|
||||||
);
|
);
|
||||||
|
@ -456,7 +460,9 @@ export class DatasetProfileEditorComponent extends CheckDeactivateBaseComponent
|
||||||
.pipe(takeUntil(this._destroyed))
|
.pipe(takeUntil(this._destroyed))
|
||||||
.subscribe(() => {
|
.subscribe(() => {
|
||||||
this.form.markAsPristine();//deactivate guard
|
this.form.markAsPristine();//deactivate guard
|
||||||
this.router.navigate(['/dataset-profiles']);
|
if(close) {
|
||||||
|
this.router.navigate(['/dataset-profiles']);
|
||||||
|
}
|
||||||
this.uiNotificationService.snackBarNotification(this.language.instant('DATASET-PROFILE-EDITOR.FEEDBACK-MESSAGES.SAVE-SUCCESS'), SnackBarNotificationLevel.Success);
|
this.uiNotificationService.snackBarNotification(this.language.instant('DATASET-PROFILE-EDITOR.FEEDBACK-MESSAGES.SAVE-SUCCESS'), SnackBarNotificationLevel.Success);
|
||||||
}, error=> this.onCallbackError(error));
|
}, error=> this.onCallbackError(error));
|
||||||
}
|
}
|
||||||
|
|
|
@ -82,12 +82,12 @@
|
||||||
<div>{{'DMP-EDITOR.STEPPER.PREVIOUS' | translate}}</div>
|
<div>{{'DMP-EDITOR.STEPPER.PREVIOUS' | translate}}</div>
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="this.step < this.maxStep" mat-raised-button type="button" class="col-auto stepper-btn dataset-next ml-auto" (click)="nextStep()">
|
<div *ngIf="this.step < this.maxStep" mat-raised-button type="button" class="col-auto stepper-btn dataset-next ml-auto" (click)="nextStep()">
|
||||||
<span class="material-icons">chevron_right</span>
|
|
||||||
<div>{{'DMP-EDITOR.STEPPER.NEXT' | translate}}</div>
|
<div>{{'DMP-EDITOR.STEPPER.NEXT' | translate}}</div>
|
||||||
|
<span class="material-icons">chevron_right</span>
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="!formGroup.get('profile').value" mat-raised-button type="button" class="col-auto stepper-btn dataset-next next-disabled ml-auto">
|
<div *ngIf="!formGroup.get('profile').value" mat-raised-button type="button" class="col-auto stepper-btn dataset-next next-disabled ml-auto">
|
||||||
<span class="material-icons">chevron_right</span>
|
|
||||||
<div>{{'DMP-EDITOR.STEPPER.NEXT' | translate}}</div>
|
<div>{{'DMP-EDITOR.STEPPER.NEXT' | translate}}</div>
|
||||||
|
<span class="material-icons">chevron_right</span>
|
||||||
</div>
|
</div>
|
||||||
<button [disabled]="saving" (click)="save(saveAnd.addNew)" *ngIf="(step === maxStep) && !lockStatus && formGroup.get('profile').value && !viewOnly" mat-raised-button type="button" class="col-auto stepper-btn add-dataset-btn ml-auto">
|
<button [disabled]="saving" (click)="save(saveAnd.addNew)" *ngIf="(step === maxStep) && !lockStatus && formGroup.get('profile').value && !viewOnly" mat-raised-button type="button" class="col-auto stepper-btn add-dataset-btn ml-auto">
|
||||||
{{ 'DATASET-WIZARD.ACTIONS.SAVE-AND-ADD' | translate }}
|
{{ 'DATASET-WIZARD.ACTIONS.SAVE-AND-ADD' | translate }}
|
||||||
|
|
|
@ -90,8 +90,8 @@
|
||||||
<div>{{'DMP-EDITOR.STEPPER.PREVIOUS' | translate}}</div>
|
<div>{{'DMP-EDITOR.STEPPER.PREVIOUS' | translate}}</div>
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="this.step < 3" mat-raised-button type="button" class="col-auto stepper-btn ml-auto" [ngClass]="{ 'next-disabled': this.step === this.maxStep, 'next': this.step < stepsBeforeDatasets, 'dataset-next': this.step >= stepsBeforeDatasets }" (click)="nextStep()">
|
<div *ngIf="this.step < 3" mat-raised-button type="button" class="col-auto stepper-btn ml-auto" [ngClass]="{ 'next-disabled': this.step === this.maxStep, 'next': this.step < stepsBeforeDatasets, 'dataset-next': this.step >= stepsBeforeDatasets }" (click)="nextStep()">
|
||||||
<span class="material-icons">chevron_right</span>
|
|
||||||
<div>{{'DMP-EDITOR.STEPPER.NEXT' | translate}}</div>
|
<div>{{'DMP-EDITOR.STEPPER.NEXT' | translate}}</div>
|
||||||
|
<span class="material-icons">chevron_right</span>
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="this.step >= 3 && hasProfile() && !isFinalized" mat-raised-button type="button" class="col-auto stepper-btn add-dataset-btn ml-auto" (click)="addDataset()" target="_blank">
|
<div *ngIf="this.step >= 3 && hasProfile() && !isFinalized" mat-raised-button type="button" class="col-auto stepper-btn add-dataset-btn ml-auto" (click)="addDataset()" target="_blank">
|
||||||
<mat-icon>add</mat-icon>
|
<mat-icon>add</mat-icon>
|
||||||
|
|
|
@ -69,8 +69,8 @@
|
||||||
<div>{{'DMP-EDITOR.STEPPER.PREVIOUS' | translate}}</div>
|
<div>{{'DMP-EDITOR.STEPPER.PREVIOUS' | translate}}</div>
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="this.step < 3" mat-raised-button type="button" class="col-auto stepper-btn ml-auto" [ngClass]="{ 'next-disabled': this.step === this.maxStep, 'next': this.step < stepsBeforeDatasets, 'dataset-next': this.step >= stepsBeforeDatasets }" (click)="nextStep()">
|
<div *ngIf="this.step < 3" mat-raised-button type="button" class="col-auto stepper-btn ml-auto" [ngClass]="{ 'next-disabled': this.step === this.maxStep, 'next': this.step < stepsBeforeDatasets, 'dataset-next': this.step >= stepsBeforeDatasets }" (click)="nextStep()">
|
||||||
<span class="material-icons">chevron_right</span>
|
|
||||||
<div>{{'DMP-EDITOR.STEPPER.NEXT' | translate}}</div>
|
<div>{{'DMP-EDITOR.STEPPER.NEXT' | translate}}</div>
|
||||||
|
<span class="material-icons">chevron_right</span>
|
||||||
</div>
|
</div>
|
||||||
<!-- <div *ngIf="this.step >= 3 && hasProfile() && !isFinalized" mat-raised-button type="button" class="col-auto stepper-btn add-dataset-btn ml-auto" (click)="addDataset()" target="_blank"> -->
|
<!-- <div *ngIf="this.step >= 3 && hasProfile() && !isFinalized" mat-raised-button type="button" class="col-auto stepper-btn add-dataset-btn ml-auto" (click)="addDataset()" target="_blank"> -->
|
||||||
<button [disabled]="saving" *ngIf="this.step >= 3 && !isFinalized" mat-raised-button type="button" class="col-auto stepper-btn add-dataset-btn ml-auto" (click)="addDataset()" target="_blank">
|
<button [disabled]="saving" *ngIf="this.step >= 3 && !isFinalized" mat-raised-button type="button" class="col-auto stepper-btn add-dataset-btn ml-auto" (click)="addDataset()" target="_blank">
|
||||||
|
|
|
@ -716,6 +716,7 @@
|
||||||
"ACTIONS": {
|
"ACTIONS": {
|
||||||
"NEXT": "Weiter",
|
"NEXT": "Weiter",
|
||||||
"BACK": "Zurück",
|
"BACK": "Zurück",
|
||||||
|
"CLOSE": "Schließen",
|
||||||
"BACK-TO": "Back to",
|
"BACK-TO": "Back to",
|
||||||
"DELETE": "Löschen",
|
"DELETE": "Löschen",
|
||||||
"GO-TO-GRANT": "Gehe zu Datansatzbeschreibung Förderung",
|
"GO-TO-GRANT": "Gehe zu Datansatzbeschreibung Förderung",
|
||||||
|
@ -1658,7 +1659,7 @@
|
||||||
},
|
},
|
||||||
"USER-PROFILE": {
|
"USER-PROFILE": {
|
||||||
"MERGING-EMAILS-DIALOG": {
|
"MERGING-EMAILS-DIALOG": {
|
||||||
"TITLE": "Link new account",
|
"TITLE": "Verify linked account",
|
||||||
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
||||||
},
|
},
|
||||||
"SETTINGS": {
|
"SETTINGS": {
|
||||||
|
|
|
@ -716,6 +716,7 @@
|
||||||
"ACTIONS": {
|
"ACTIONS": {
|
||||||
"NEXT": "Next",
|
"NEXT": "Next",
|
||||||
"BACK": "Back",
|
"BACK": "Back",
|
||||||
|
"CLOSE": "Close",
|
||||||
"BACK-TO": "Back to",
|
"BACK-TO": "Back to",
|
||||||
"DELETE": "Delete",
|
"DELETE": "Delete",
|
||||||
"GO-TO-GRANT": "Go to Dataset's Grant",
|
"GO-TO-GRANT": "Go to Dataset's Grant",
|
||||||
|
@ -1658,7 +1659,7 @@
|
||||||
},
|
},
|
||||||
"USER-PROFILE": {
|
"USER-PROFILE": {
|
||||||
"MERGING-EMAILS-DIALOG": {
|
"MERGING-EMAILS-DIALOG": {
|
||||||
"TITLE": "Link new account",
|
"TITLE": "Verify linked account",
|
||||||
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
||||||
},
|
},
|
||||||
"SETTINGS": {
|
"SETTINGS": {
|
||||||
|
|
|
@ -716,6 +716,7 @@
|
||||||
"ACTIONS": {
|
"ACTIONS": {
|
||||||
"NEXT": "Siguiente",
|
"NEXT": "Siguiente",
|
||||||
"BACK": "Volver",
|
"BACK": "Volver",
|
||||||
|
"CLOSE": "Cerrar",
|
||||||
"BACK-TO": "Back to",
|
"BACK-TO": "Back to",
|
||||||
"DELETE": "Borrar",
|
"DELETE": "Borrar",
|
||||||
"GO-TO-GRANT": "Ir a la subvención de la descripción del dataset",
|
"GO-TO-GRANT": "Ir a la subvención de la descripción del dataset",
|
||||||
|
@ -1658,7 +1659,7 @@
|
||||||
},
|
},
|
||||||
"USER-PROFILE": {
|
"USER-PROFILE": {
|
||||||
"MERGING-EMAILS-DIALOG": {
|
"MERGING-EMAILS-DIALOG": {
|
||||||
"TITLE": "Link new account",
|
"TITLE": "Verify linked account",
|
||||||
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
||||||
},
|
},
|
||||||
"SETTINGS": {
|
"SETTINGS": {
|
||||||
|
|
|
@ -716,6 +716,7 @@
|
||||||
"ACTIONS": {
|
"ACTIONS": {
|
||||||
"NEXT": "Επόμενο",
|
"NEXT": "Επόμενο",
|
||||||
"BACK": "Πίσω",
|
"BACK": "Πίσω",
|
||||||
|
"CLOSE": "Κλείσιμο",
|
||||||
"BACK-TO": "Back to",
|
"BACK-TO": "Back to",
|
||||||
"DELETE": "Διαγραφή",
|
"DELETE": "Διαγραφή",
|
||||||
"GO-TO-GRANT": "Μετάβαση σε Περιγραφή Συνόλου Δεδομένων της Επιχορήγησης",
|
"GO-TO-GRANT": "Μετάβαση σε Περιγραφή Συνόλου Δεδομένων της Επιχορήγησης",
|
||||||
|
@ -1658,7 +1659,7 @@
|
||||||
},
|
},
|
||||||
"USER-PROFILE": {
|
"USER-PROFILE": {
|
||||||
"MERGING-EMAILS-DIALOG": {
|
"MERGING-EMAILS-DIALOG": {
|
||||||
"TITLE": "Link new account",
|
"TITLE": "Verify linked account",
|
||||||
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
||||||
},
|
},
|
||||||
"SETTINGS": {
|
"SETTINGS": {
|
||||||
|
|
|
@ -716,6 +716,7 @@
|
||||||
"ACTIONS": {
|
"ACTIONS": {
|
||||||
"NEXT": "Sljedeće",
|
"NEXT": "Sljedeće",
|
||||||
"BACK": "Prethodno",
|
"BACK": "Prethodno",
|
||||||
|
"CLOSE": "Ζatvori",
|
||||||
"BACK-TO": "Natrag na",
|
"BACK-TO": "Natrag na",
|
||||||
"DELETE": "Obriši",
|
"DELETE": "Obriši",
|
||||||
"GO-TO-GRANT": "Idi na potporu za skupove podataka",
|
"GO-TO-GRANT": "Idi na potporu za skupove podataka",
|
||||||
|
@ -1658,7 +1659,7 @@
|
||||||
},
|
},
|
||||||
"USER-PROFILE": {
|
"USER-PROFILE": {
|
||||||
"MERGING-EMAILS-DIALOG": {
|
"MERGING-EMAILS-DIALOG": {
|
||||||
"TITLE": "Link new account",
|
"TITLE": "Verify linked account",
|
||||||
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
||||||
},
|
},
|
||||||
"SETTINGS": {
|
"SETTINGS": {
|
||||||
|
|
|
@ -716,6 +716,7 @@
|
||||||
"ACTIONS": {
|
"ACTIONS": {
|
||||||
"NEXT": "Seguinte",
|
"NEXT": "Seguinte",
|
||||||
"BACK": "Voltar",
|
"BACK": "Voltar",
|
||||||
|
"CLOSE": "Fechar",
|
||||||
"BACK-TO": "Voltar para",
|
"BACK-TO": "Voltar para",
|
||||||
"DELETE": "Eliminar",
|
"DELETE": "Eliminar",
|
||||||
"GO-TO-GRANT": "Ir para o Grant do Dataset",
|
"GO-TO-GRANT": "Ir para o Grant do Dataset",
|
||||||
|
@ -1658,7 +1659,7 @@
|
||||||
},
|
},
|
||||||
"USER-PROFILE": {
|
"USER-PROFILE": {
|
||||||
"MERGING-EMAILS-DIALOG": {
|
"MERGING-EMAILS-DIALOG": {
|
||||||
"TITLE": "Link new account",
|
"TITLE": "Verify linked account",
|
||||||
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
||||||
},
|
},
|
||||||
"SETTINGS": {
|
"SETTINGS": {
|
||||||
|
|
|
@ -716,6 +716,7 @@
|
||||||
"ACTIONS": {
|
"ACTIONS": {
|
||||||
"NEXT": "Ďalej",
|
"NEXT": "Ďalej",
|
||||||
"BACK": "Späť",
|
"BACK": "Späť",
|
||||||
|
"CLOSE": "Ζavrieť",
|
||||||
"BACK-TO": "Späť na",
|
"BACK-TO": "Späť na",
|
||||||
"DELETE": "Vymazať",
|
"DELETE": "Vymazať",
|
||||||
"GO-TO-GRANT": "Prejsť na Grant súboru dát",
|
"GO-TO-GRANT": "Prejsť na Grant súboru dát",
|
||||||
|
@ -1658,7 +1659,7 @@
|
||||||
},
|
},
|
||||||
"USER-PROFILE": {
|
"USER-PROFILE": {
|
||||||
"MERGING-EMAILS-DIALOG": {
|
"MERGING-EMAILS-DIALOG": {
|
||||||
"TITLE": "Link new account",
|
"TITLE": "Verify linked account",
|
||||||
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
||||||
},
|
},
|
||||||
"SETTINGS": {
|
"SETTINGS": {
|
||||||
|
|
|
@ -716,6 +716,7 @@
|
||||||
"ACTIONS": {
|
"ACTIONS": {
|
||||||
"NEXT": "Sledeći",
|
"NEXT": "Sledeći",
|
||||||
"BACK": "Nazad",
|
"BACK": "Nazad",
|
||||||
|
"CLOSE": "Zatvorite",
|
||||||
"BACK-TO": "Nazad na",
|
"BACK-TO": "Nazad na",
|
||||||
"DELETE": "Obrišite",
|
"DELETE": "Obrišite",
|
||||||
"GO-TO-GRANT": "Pređite na grant za skupove podataka",
|
"GO-TO-GRANT": "Pređite na grant za skupove podataka",
|
||||||
|
@ -1658,7 +1659,7 @@
|
||||||
},
|
},
|
||||||
"USER-PROFILE": {
|
"USER-PROFILE": {
|
||||||
"MERGING-EMAILS-DIALOG": {
|
"MERGING-EMAILS-DIALOG": {
|
||||||
"TITLE": "Link new account",
|
"TITLE": "Verify linked account",
|
||||||
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
||||||
},
|
},
|
||||||
"SETTINGS": {
|
"SETTINGS": {
|
||||||
|
|
|
@ -716,6 +716,7 @@
|
||||||
"ACTIONS": {
|
"ACTIONS": {
|
||||||
"NEXT": "Sonraki",
|
"NEXT": "Sonraki",
|
||||||
"BACK": "Geri",
|
"BACK": "Geri",
|
||||||
|
"CLOSE": "Kapat",
|
||||||
"BACK-TO": "Geriye",
|
"BACK-TO": "Geriye",
|
||||||
"DELETE": "Sil",
|
"DELETE": "Sil",
|
||||||
"GO-TO-GRANT": "Veri Seti Hibesine Git",
|
"GO-TO-GRANT": "Veri Seti Hibesine Git",
|
||||||
|
@ -1658,7 +1659,7 @@
|
||||||
},
|
},
|
||||||
"USER-PROFILE": {
|
"USER-PROFILE": {
|
||||||
"MERGING-EMAILS-DIALOG": {
|
"MERGING-EMAILS-DIALOG": {
|
||||||
"TITLE": "Link new account",
|
"TITLE": "Verify linked account",
|
||||||
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
"MESSAGE": "An email to verify this action has been sent to you. Once accepted, you will be able to see your accounts merged. The last email account that you merge will be the one containing all of your DMP records and activity in Argos."
|
||||||
},
|
},
|
||||||
"SETTINGS": {
|
"SETTINGS": {
|
||||||
|
|
Loading…
Reference in New Issue