From 560e6100b7fec2a7fe1962c9991c71b650ba95aa Mon Sep 17 00:00:00 2001 From: Kristan Ntavidi Date: Tue, 6 Apr 2021 09:57:17 +0300 Subject: [PATCH] Dataset Profile Editor: when "select" is created it appends as well an empy option. Recent edited activity "LoadMore" fix. Table of contents: selected entry updates. --- .../field-data-option-editor-model.ts | 6 +-- ...rofile-editor-composite-field.component.ts | 7 +++- ...ataset-profile-editor-field.component.html | 2 - .../dataset-profile-editor-field.component.ts | 6 +-- .../recent-edited-activity.component.html | 2 +- .../recent-edited-activity.component.ts | 11 ++++- .../dataset-wizard.component.html | 4 +- .../dataset-wizard.component.ts | 11 ++++- .../form-section/form-section.component.html | 4 +- .../form-section/form-section.component.ts | 6 +-- .../dataset-description.component.html | 2 +- .../dataset-description.component.ts | 5 ++- .../table-of-contents-internal.ts | 42 +++++++++++++++++++ .../table-of-contents.ts | 32 +++++++++++++- dmp-frontend/src/assets/i18n/de.json | 34 +++++++-------- dmp-frontend/src/assets/i18n/en.json | 40 +++++++++--------- dmp-frontend/src/assets/i18n/es.json | 18 ++++---- dmp-frontend/src/assets/i18n/gr.json | 18 ++++---- dmp-frontend/src/assets/i18n/pt.json | 18 ++++---- dmp-frontend/src/assets/i18n/sk.json | 40 +++++++++--------- dmp-frontend/src/assets/i18n/sr.json | 18 ++++---- dmp-frontend/src/assets/i18n/tr.json | 16 +++---- 22 files changed, 216 insertions(+), 126 deletions(-) diff --git a/dmp-frontend/src/app/ui/admin/dataset-profile/admin/field-data/field-data-option-editor-model.ts b/dmp-frontend/src/app/ui/admin/dataset-profile/admin/field-data/field-data-option-editor-model.ts index 5b0067954..d13491cd1 100644 --- a/dmp-frontend/src/app/ui/admin/dataset-profile/admin/field-data/field-data-option-editor-model.ts +++ b/dmp-frontend/src/app/ui/admin/dataset-profile/admin/field-data/field-data-option-editor-model.ts @@ -1,4 +1,4 @@ -import { FormBuilder, FormGroup } from '@angular/forms'; +import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { FieldDataOption } from '../../../../../core/model/dataset-profile-definition/field-data/field-data'; import { FieldDataEditorModel } from './field-data-editor-model'; @@ -9,8 +9,8 @@ export class FieldDataOptionEditorModel extends FieldDataEditorModel = []): FormGroup { return new FormBuilder().group({ - label: [{ value: this.label, disabled: (disabled && !skipDisable.includes('FieldDataOptionEditorModel.label')) }], - value: [{ value: this.value, disabled: (disabled && !skipDisable.includes('FieldDataOptionEditorModel.value')) }], + label: [{ value: this.label, disabled: (disabled && !skipDisable.includes('FieldDataOptionEditorModel.label')) },[Validators.required]], + value: [{ value: this.value, disabled: (disabled && !skipDisable.includes('FieldDataOptionEditorModel.value')) },[Validators.required]], source: [{ value: this.source, disabled: (disabled && !skipDisable.includes('FieldDataOptionEditorModel.source')) }] }); } diff --git a/dmp-frontend/src/app/ui/admin/dataset-profile/editor/components/composite-field/dataset-profile-editor-composite-field.component.ts b/dmp-frontend/src/app/ui/admin/dataset-profile/editor/components/composite-field/dataset-profile-editor-composite-field.component.ts index 4acb1e839..6744cd340 100644 --- a/dmp-frontend/src/app/ui/admin/dataset-profile/editor/components/composite-field/dataset-profile-editor-composite-field.component.ts +++ b/dmp-frontend/src/app/ui/admin/dataset-profile/editor/components/composite-field/dataset-profile-editor-composite-field.component.ts @@ -36,7 +36,7 @@ import { EditorCustomValidators } from '../../custom-validators/editor-custom-va import { Field, FieldSet } from '@app/core/model/admin/dataset-profile/dataset-profile'; import { DatasetProfileComboBoxType } from '@app/core/common/enum/dataset-profile-combo-box-type'; import { DatasetProfileInternalDmpEntitiesType } from '@app/core/common/enum/dataset-profile-internal-dmp-entities-type'; -import { AutoCompleteFieldData, BooleanDecisionFieldData, CheckBoxFieldData, CurrencyFieldData, DataRepositoriesFieldData, DatasetIdentifierFieldData, DatePickerFieldData, DmpsAutoCompleteFieldData, ExternalDatasetsFieldData, FreeTextFieldData, OrganizationsFieldData, RadioBoxFieldData, RegistriesFieldData, ResearchersAutoCompleteFieldData, ServicesFieldData, TagsFieldData, TextAreaFieldData, ValidationFieldData, WordListFieldData } from '@app/core/model/dataset-profile-definition/field-data/field-data'; +import { AutoCompleteFieldData, BooleanDecisionFieldData, CheckBoxFieldData, CurrencyFieldData, DataRepositoriesFieldData, DatasetIdentifierFieldData, DatePickerFieldData, DmpsAutoCompleteFieldData, ExternalDatasetsFieldData, FieldDataOption, FreeTextFieldData, OrganizationsFieldData, RadioBoxFieldData, RegistriesFieldData, ResearchersAutoCompleteFieldData, ServicesFieldData, TagsFieldData, TextAreaFieldData, ValidationFieldData, WordListFieldData } from '@app/core/model/dataset-profile-definition/field-data/field-data'; import { CompositeField } from '@app/core/model/dataset-profile-definition/composite-field'; import {Field as FieldDefinition} from '@app/core/model/dataset-profile-definition/field'; import { Subject } from 'rxjs'; @@ -539,10 +539,13 @@ export class DatasetProfileEditorCompositeFieldComponent implements OnInit, OnCh // fieldForm.get('data').setValidators(EditorCustomValidators.atLeastOneElementListValidator('options')); // fieldForm.get('data').updateValueAndValidity(); + + const firstOption = {label:'', value:''} as FieldDataOption; + const data:WordListFieldData = { label:'', multiList:false, - options:[], + options:[firstOption], type:DatasetProfileComboBoxType.WordList } diff --git a/dmp-frontend/src/app/ui/admin/dataset-profile/editor/components/field/dataset-profile-editor-field.component.html b/dmp-frontend/src/app/ui/admin/dataset-profile/editor/components/field/dataset-profile-editor-field.component.html index d4a599fc7..8d5a351b8 100644 --- a/dmp-frontend/src/app/ui/admin/dataset-profile/editor/components/field/dataset-profile-editor-field.component.html +++ b/dmp-frontend/src/app/ui/admin/dataset-profile/editor/components/field/dataset-profile-editor-field.component.html @@ -285,5 +285,3 @@ --> - - \ No newline at end of file diff --git a/dmp-frontend/src/app/ui/admin/dataset-profile/editor/components/field/dataset-profile-editor-field.component.ts b/dmp-frontend/src/app/ui/admin/dataset-profile/editor/components/field/dataset-profile-editor-field.component.ts index 7dda1af43..751c0af04 100644 --- a/dmp-frontend/src/app/ui/admin/dataset-profile/editor/components/field/dataset-profile-editor-field.component.ts +++ b/dmp-frontend/src/app/ui/admin/dataset-profile/editor/components/field/dataset-profile-editor-field.component.ts @@ -40,7 +40,7 @@ import { EditorCustomValidators } from '../../custom-validators/editor-custom-va import { Field } from '@app/core/model/admin/dataset-profile/dataset-profile'; import { DatasetProfileInternalDmpEntitiesType } from '@app/core/common/enum/dataset-profile-internal-dmp-entities-type'; import { FieldEditorModel } from '../../../admin/field-editor-model'; -import { AutoCompleteFieldData, BooleanDecisionFieldData, CheckBoxFieldData, CurrencyFieldData, DataRepositoriesFieldData, DatasetIdentifierFieldData, DatePickerFieldData, DmpsAutoCompleteFieldData, ExternalDatasetsFieldData, FreeTextFieldData, OrganizationsFieldData, RadioBoxFieldData, RegistriesFieldData, ResearchersAutoCompleteFieldData, ServicesFieldData, TagsFieldData, TextAreaFieldData, ValidationFieldData, WordListFieldData } from '@app/core/model/dataset-profile-definition/field-data/field-data'; +import { AutoCompleteFieldData, BooleanDecisionFieldData, CheckBoxFieldData, CurrencyFieldData, DataRepositoriesFieldData, DatasetIdentifierFieldData, DatePickerFieldData, DmpsAutoCompleteFieldData, ExternalDatasetsFieldData, FieldDataOption, FreeTextFieldData, OrganizationsFieldData, RadioBoxFieldData, RegistriesFieldData, ResearchersAutoCompleteFieldData, ServicesFieldData, TagsFieldData, TextAreaFieldData, ValidationFieldData, WordListFieldData } from '@app/core/model/dataset-profile-definition/field-data/field-data'; @Component({ selector: 'app-dataset-profile-editor-field-component', @@ -488,12 +488,12 @@ export class DatasetProfileEditorFieldComponent extends BaseComponent implements // this.form.get('data').setValidators(EditorCustomValidators.atLeastOneElementListValidator('options')); // this.form.get('data').updateValueAndValidity(); - + const option1 = {label:'', value:''} as FieldDataOption; const data:WordListFieldData = { label:'', multiList:false, - options:[], + options:[option1], type:DatasetProfileComboBoxType.WordList } diff --git a/dmp-frontend/src/app/ui/dashboard/recent-edited-activity/recent-edited-activity.component.html b/dmp-frontend/src/app/ui/dashboard/recent-edited-activity/recent-edited-activity.component.html index 19dc7757f..a3479015f 100644 --- a/dmp-frontend/src/app/ui/dashboard/recent-edited-activity/recent-edited-activity.component.html +++ b/dmp-frontend/src/app/ui/dashboard/recent-edited-activity/recent-edited-activity.component.html @@ -165,7 +165,7 @@ -
+
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 ddd660f57..d004c57bb 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 @@ -62,6 +62,7 @@ export class RecentEditedActivityComponent extends BaseComponent implements OnIn datasetOffset: number = 0; pageSize: number = 5; dmpFormGroup: FormGroup; + hasMoreActivity:boolean = true; public formGroup = new FormBuilder().group({ like: new FormControl(), order: new FormControl() @@ -605,6 +606,10 @@ export class RecentEditedActivityComponent extends BaseComponent implements OnIn } refresh(): void { + this.hasMoreActivity = true; + this.datasetOffset = 0; + this.dmpOffset = 0; + const fields: Array = [((this.formGroup.get('order').value === 'status') || (this.formGroup.get('order').value === 'label') ? '+' : "-") + this.formGroup.get('order').value]; // const fields: Array = ["-modified"]; this.startIndex = 0; @@ -623,6 +628,8 @@ export class RecentEditedActivityComponent extends BaseComponent implements OnIn this.dmpOffset = this.dmpOffset + 1; } }); + + if(response.length< this.pageSize) {this.hasMoreActivity = false;} this.totalCountRecentEdited.emit(this.allRecentActivities.length); }); } @@ -636,7 +643,7 @@ export class RecentEditedActivityComponent extends BaseComponent implements OnIn request.criteria.order = this.formGroup.get("order").value; this.dashboardService.getRecentActivity(request).pipe(takeUntil(this._destroyed)).subscribe(result => { - if (!result) { return []; } + if (!result) { this.hasMoreActivity = false; return []; } result.forEach(recentActivity => { if (recentActivity.type === RecentActivityType.Dataset) { this.datasetOffset = this.datasetOffset + 1; @@ -644,6 +651,8 @@ export class RecentEditedActivityComponent extends BaseComponent implements OnIn this.dmpOffset = this.dmpOffset + 1; } }); + if(result.length 0 ? this.mergeTwoSortedLists(this.allRecentActivities, result, this.formGroup.get('order').value) : result; this.totalCountRecentEdited.emit(this.allRecentActivities.length); diff --git a/dmp-frontend/src/app/ui/dataset/dataset-wizard/dataset-wizard.component.html b/dmp-frontend/src/app/ui/dataset/dataset-wizard/dataset-wizard.component.html index b131ac730..aa72179ba 100644 --- a/dmp-frontend/src/app/ui/dataset/dataset-wizard/dataset-wizard.component.html +++ b/dmp-frontend/src/app/ui/dataset/dataset-wizard/dataset-wizard.component.html @@ -54,7 +54,7 @@
0. {{'DMP-EDITOR.STEPPER.MAIN-INFO' | translate}} (done)
- +
@@ -81,7 +81,7 @@
- +
diff --git a/dmp-frontend/src/app/ui/dataset/dataset-wizard/dataset-wizard.component.ts b/dmp-frontend/src/app/ui/dataset/dataset-wizard/dataset-wizard.component.ts index 7ae47a871..8514fc27e 100644 --- a/dmp-frontend/src/app/ui/dataset/dataset-wizard/dataset-wizard.component.ts +++ b/dmp-frontend/src/app/ui/dataset/dataset-wizard/dataset-wizard.component.ts @@ -96,6 +96,8 @@ export class DatasetWizardComponent extends BaseComponent implements OnInit, IBr @ViewChild('table0fContents', {static: false}) table0fContents: TableOfContents; hintErrors: boolean = false; + fieldsetIdWithFocus:string; + constructor( private datasetWizardService: DatasetWizardService, private route: ActivatedRoute, @@ -1042,8 +1044,13 @@ export class DatasetWizardComponent extends BaseComponent implements OnInit, IBr this.hintErrors = false; if (this.isNew) { Object.keys(this.formGroup['controls']).forEach((key: string) => { - if (key !== 'dmp') { - this.formGroup.get(key).reset(); + if (key !== 'dmp' && (key!== 'profile')) { + if(key === 'datasetProfileDefinition'){ + this.formGroup.get(key).patchValue(this.datasetProfileDefinitionModel.buildForm().getRawValue); + }else{ + this.formGroup.get(key).reset(); + } + } }); } else { diff --git a/dmp-frontend/src/app/ui/misc/dataset-description-form/components/form-section/form-section.component.html b/dmp-frontend/src/app/ui/misc/dataset-description-form/components/form-section/form-section.component.html index 4dd75101e..0290daa88 100644 --- a/dmp-frontend/src/app/ui/misc/dataset-description-form/components/form-section/form-section.component.html +++ b/dmp-frontend/src/app/ui/misc/dataset-description-form/components/form-section/form-section.component.html @@ -75,7 +75,7 @@ -
+
@@ -124,7 +124,7 @@
diff --git a/dmp-frontend/src/app/ui/misc/dataset-description-form/components/form-section/form-section.component.ts b/dmp-frontend/src/app/ui/misc/dataset-description-form/components/form-section/form-section.component.ts index 4852cb945..9862c2690 100644 --- a/dmp-frontend/src/app/ui/misc/dataset-description-form/components/form-section/form-section.component.ts +++ b/dmp-frontend/src/app/ui/misc/dataset-description-form/components/form-section/form-section.component.ts @@ -28,7 +28,7 @@ export class FormSectionComponent implements OnInit, OnChanges { subsectionLinkToScroll: LinkToScroll; - @Output() askedToScroll = new EventEmitter(); + @Output() askedToScroll = new EventEmitter(); tocentriesType = ToCEntryType; @Input() TOCENTRY_ID_PREFIX=""; @@ -96,8 +96,8 @@ export class FormSectionComponent implements OnInit, OnChanges { - onAskedToScroll(){ + onAskedToScroll(id:string){ this.panelExpanded = true; - this.askedToScroll.emit(); + this.askedToScroll.emit(id); } } diff --git a/dmp-frontend/src/app/ui/misc/dataset-description-form/dataset-description.component.html b/dmp-frontend/src/app/ui/misc/dataset-description-form/dataset-description.component.html index 0e6b9334f..9b163a65f 100644 --- a/dmp-frontend/src/app/ui/misc/dataset-description-form/dataset-description.component.html +++ b/dmp-frontend/src/app/ui/misc/dataset-description-form/dataset-description.component.html @@ -39,7 +39,7 @@
diff --git a/dmp-frontend/src/app/ui/misc/dataset-description-form/dataset-description.component.ts b/dmp-frontend/src/app/ui/misc/dataset-description-form/dataset-description.component.ts index b6b66eef0..2a826fda5 100644 --- a/dmp-frontend/src/app/ui/misc/dataset-description-form/dataset-description.component.ts +++ b/dmp-frontend/src/app/ui/misc/dataset-description-form/dataset-description.component.ts @@ -22,6 +22,8 @@ export class DatasetDescriptionComponent extends BaseComponent implements OnInit @Input() datasetProfileId: String; @Input() linkToScroll: LinkToScroll; @Output() formChanged: EventEmitter = new EventEmitter(); + @Output() fieldsetFocusChange: EventEmitter = new EventEmitter(); + tocentries: ToCEntry[]; @Input() form: FormGroup; @@ -68,8 +70,9 @@ export class DatasetDescriptionComponent extends BaseComponent implements OnInit - onAskedToScroll(panel: MatExpansionPanel){ + onAskedToScroll(panel: MatExpansionPanel, id?:string){ panel.open(); + this.fieldsetFocusChange.emit(id); } diff --git a/dmp-frontend/src/app/ui/misc/dataset-description-form/tableOfContentsMaterial/table-of-contents-internal/table-of-contents-internal.ts b/dmp-frontend/src/app/ui/misc/dataset-description-form/tableOfContentsMaterial/table-of-contents-internal/table-of-contents-internal.ts index 059e19c4b..0e57e3849 100644 --- a/dmp-frontend/src/app/ui/misc/dataset-description-form/tableOfContentsMaterial/table-of-contents-internal/table-of-contents-internal.ts +++ b/dmp-frontend/src/app/ui/misc/dataset-description-form/tableOfContentsMaterial/table-of-contents-internal/table-of-contents-internal.ts @@ -35,10 +35,30 @@ export class TableOfContentsInternal implements OnInit { // console.log('component created'); if(this.tocentries){ this.expandChildren = this.tocentries.map(()=>false); + if(this.selected){ + for(let i=0; i 0) { // this.links.forEach(link => { // link.selected = false; @@ -97,4 +117,26 @@ export class TableOfContentsInternal implements OnInit { return myClass; } + + private _findTocEntryById(id: string, tocentries: ToCEntry[]): ToCEntry{ + if(!tocentries || !tocentries.length){ + return null; + } + + let tocEntryFound = tocentries.find(entry=>entry.id === id); + + if(tocEntryFound){ + return tocEntryFound; + } + + for(let entry of tocentries){ + const result = this._findTocEntryById(id, entry.subEntries); + if(result){ + tocEntryFound = result; + break; + } + } + + return tocEntryFound? tocEntryFound: null; + } } diff --git a/dmp-frontend/src/app/ui/misc/dataset-description-form/tableOfContentsMaterial/table-of-contents.ts b/dmp-frontend/src/app/ui/misc/dataset-description-form/tableOfContentsMaterial/table-of-contents.ts index aa67829c8..ce1616a93 100644 --- a/dmp-frontend/src/app/ui/misc/dataset-description-form/tableOfContentsMaterial/table-of-contents.ts +++ b/dmp-frontend/src/app/ui/misc/dataset-description-form/tableOfContentsMaterial/table-of-contents.ts @@ -1,5 +1,5 @@ import { DOCUMENT } from '@angular/common'; -import { Component, EventEmitter, Inject, OnInit, Output, Input } from '@angular/core'; +import { Component, EventEmitter, Inject, OnInit, Output, Input, OnChanges } from '@angular/core'; import { BaseComponent } from '@common/base/base.component'; import { interval, Subject, Subscription } from 'rxjs'; import { distinctUntilChanged } from 'rxjs/operators'; @@ -32,7 +32,7 @@ export interface Link { styleUrls: ['./table-of-contents.scss'], templateUrl: './table-of-contents.html' }) -export class TableOfContents extends BaseComponent implements OnInit { +export class TableOfContents extends BaseComponent implements OnInit, OnChanges { @Input() links: Link[]; container: string; @@ -49,6 +49,7 @@ export class TableOfContents extends BaseComponent implements OnInit { // visibilityRules:Rule[] = []; @Input() visibilityRules:Rule[] = []; @Input() showErrors: boolean = false; + @Input() selectedFieldsetId:string; private _tocentrySelected:ToCEntry = null; get tocentrySelected(){ @@ -143,6 +144,11 @@ export class TableOfContents extends BaseComponent implements OnInit { } ngOnChanges(changes: SimpleChanges) { + + if(this.selectedFieldsetId){ + this.tocentrySelected = this._findTocEntryById(this.selectedFieldsetId,this.tocentries); + } + // if (!this.isActive && this.links && this.links.length > 0) { // this.links.forEach(link => { // link.selected = false; @@ -316,6 +322,28 @@ export class TableOfContents extends BaseComponent implements OnInit { } } + private _findTocEntryById(id: string, tocentries: ToCEntry[]): ToCEntry{ + if(!tocentries || !tocentries.length){ + return null; + } + + let tocEntryFound = tocentries.find(entry=>entry.id === id); + + if(tocEntryFound){ + return tocEntryFound; + } + + for(let entry of tocentries){ + const result = this._findTocEntryById(id, entry.subEntries); + if(result){ + tocEntryFound = result; + break; + } + } + + return tocEntryFound? tocEntryFound: null; + } + } export interface LinkToScroll { diff --git a/dmp-frontend/src/assets/i18n/de.json b/dmp-frontend/src/assets/i18n/de.json index 879fccd01..46b1c0328 100644 --- a/dmp-frontend/src/assets/i18n/de.json +++ b/dmp-frontend/src/assets/i18n/de.json @@ -381,29 +381,29 @@ "VALIDATION": "Validation", "MULTIPLICITY-CHECKBOX": "Multiplicity", "FIELD-TEXT-AREA-TITLE": "Text Area Data", - "FIELD-TEXT-AREA-PLACEHOLDER": "Input Placeholder", + "FIELD-TEXT-AREA-PLACEHOLDER": "Input Placeholder Text", "FIELD-BOOLEAN-DECISION-TITLE": "Boolean Decision Data", "FIELD-BOOLEAN-DECISION-PLACEHOLDER": "Input Placeholder", "FIELD-CHECKBOX-TITLE": "Checkbox Data", - "FIELD-CHECKBOX-PLACEHOLDER": "Input Placeholder", + "FIELD-CHECKBOX-PLACEHOLDER": "Input Placeholder Text", "FIELD-FREE-TEXT-TITLE": "Free Text Data", - "FIELD-FREE-TEXT-PLACEHOLDER": "Input Placeholder", + "FIELD-FREE-TEXT-PLACEHOLDER": "Input Placeholder Text", "FIELD-COMBO-BOX-TYPE": "Type of Combo Box", "FIELD-WORD-LIST-TITLE": "Word List Data", - "FIELD-WORD-LIST-PLACEHOLDER": "Input Placeholder", + "FIELD-WORD-LIST-PLACEHOLDER": "Input Placeholder Text", "FIELD-WORD-LIST-LABEL": "Label", "FIELD-WORD-LIST-VALUE": "Value", "FIELD-INTERNAL-DMP-ENTITIES-TYPE": "Type of Internal DMP Entity", "FIELD-RESEARCHERS-TITLE": "Researchers Autocomplete", - "FIELD-RESEARCHERS-PLACEHOLDER": "Input Placeholder", - "FIELD-DATASETS-PLACEHOLDER": "Input Placeholder", - "FIELD-DMPS-PLACEHOLDER": "Input Placeholder", + "FIELD-RESEARCHERS-PLACEHOLDER": "Input Placeholder Text", + "FIELD-DATASETS-PLACEHOLDER": "Input Placeholder Text", + "FIELD-DMPS-PLACEHOLDER": "Input Placeholder Text", "FIELD-RADIO-BOX-TITLE": "Radio Box Data", - "FIELD-RADIO-BOX-PLACEHOLDER": "Input Placeholder", + "FIELD-RADIO-BOX-PLACEHOLDER": "Input Placeholder Text", "FIELD-RADIO-BOX-LABEL": "Label", "FIELD-RADIO-BOX-VALUE": "Value", "FIELD-AUTOCOMPLETE-TITLE": "Autocomplete Data", - "FIELD-AUTOCOMPLETE-PLACEHOLDER": "Input Placeholder", + "FIELD-AUTOCOMPLETE-PLACEHOLDER": "Input Placeholder Text", "FIELD-AUTOCOMPLETE-SOURCE-TITLE": "Sources", "FIELD-AUTOCOMPLETE-ADD_SOURCE": "Add Source", "FIELD-AUTOCOMPLETE-TYPE": "Source Type", @@ -415,29 +415,29 @@ "FIELD-AUTOCOMPLETE-URL": "Url", "FIELD-AUTOCOMPLETE-OPTIONS-ROOT": "Options Root", "FIELD-DATE-PICKER-TITLE": "Date Picker", - "FIELD-DATE-PICKER-PLACEHOLDER": "Input Placeholder", + "FIELD-DATE-PICKER-PLACEHOLDER": "Input Placeholder Text", "FIELD-DATE-PICKER-LABEL": "Label", "FIELD-DATE-PICKER-VALUE": "Value", "FIELD-MULTIPLE-AUTOCOMPLETE": "Multiple Autocomplete", "FIELD-MULTIPLE-WORDLIST": "Multiple Selection", "FIELD-CURRENCY-TITLE": "Currency Data", - "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder", + "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder Text", "FIELD-REGISTRIES-TITLE": "Registries Data", - "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder", + "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder Text", "FIELD-SERVICES-TITLE": "Services Data", - "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder", + "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder Text", "FIELD-ORGANIZATIONS-TITLE": "Organizations Data", - "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder", + "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder Text", "FIELD-EXTERNAL-DATASETS-TITLE": "External Datasets Data", "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder", - "FIELD-DATA-REPOSITORIES-TITLE": "Data Repositories Data", + "FIELD-DATA-REPOSITORIES-TITLE": "Data Repositories Data Text", "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholder", "FIELD-TAGS-TITLE": "Tags Data", - "FIELD-TAGS-PLACEHOLDER": "Input placeholder", + "FIELD-TAGS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATASET-IDENTIFIER-TITLE": "Dataset Identifier Data", "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder", "FIELD-VALIDATOR-TITLE": "Validator Data", - "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder" + "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder Text" }, "ERROR-MESSAGES":{ "FIELD-OTHER-SOURCES-REQUIRED": "At least one source must be provided.", diff --git a/dmp-frontend/src/assets/i18n/en.json b/dmp-frontend/src/assets/i18n/en.json index 3c6d4e1a4..78c40cc2e 100644 --- a/dmp-frontend/src/assets/i18n/en.json +++ b/dmp-frontend/src/assets/i18n/en.json @@ -381,29 +381,29 @@ "VALIDATION": "Validation", "MULTIPLICITY-CHECKBOX": "Multiplicity", "FIELD-TEXT-AREA-TITLE": "Text Area Data", - "FIELD-TEXT-AREA-PLACEHOLDER": "Input Placeholder", + "FIELD-TEXT-AREA-PLACEHOLDER": "Input Placeholder Text", "FIELD-BOOLEAN-DECISION-TITLE": "Boolean Decision Data", - "FIELD-BOOLEAN-DECISION-PLACEHOLDER": "Input Placeholder", + "FIELD-BOOLEAN-DECISION-PLACEHOLDER": "Input Placeholder Text", "FIELD-CHECKBOX-TITLE": "Checkbox Data", - "FIELD-CHECKBOX-PLACEHOLDER": "Input Placeholder", + "FIELD-CHECKBOX-PLACEHOLDER": "Input Placeholder Text", "FIELD-FREE-TEXT-TITLE": "Free Text Data", - "FIELD-FREE-TEXT-PLACEHOLDER": "Input Placeholder", + "FIELD-FREE-TEXT-PLACEHOLDER": "Input Placeholder Text", "FIELD-COMBO-BOX-TYPE": "Type of Combo Box", "FIELD-WORD-LIST-TITLE": "Word List Data", - "FIELD-WORD-LIST-PLACEHOLDER": "Input Placeholder", + "FIELD-WORD-LIST-PLACEHOLDER": "Input Placeholder Text", "FIELD-WORD-LIST-LABEL": "Label", "FIELD-WORD-LIST-VALUE": "Value", "FIELD-INTERNAL-DMP-ENTITIES-TYPE": "Type of Internal DMP Entity", "FIELD-RESEARCHERS-TITLE": "Researchers Autocomplete", - "FIELD-RESEARCHERS-PLACEHOLDER": "Input Placeholder", - "FIELD-DATASETS-PLACEHOLDER": "Input Placeholder", - "FIELD-DMPS-PLACEHOLDER": "Input Placeholder", + "FIELD-RESEARCHERS-PLACEHOLDER": "Input Placeholder Text", + "FIELD-DATASETS-PLACEHOLDER": "Input Placeholder Text", + "FIELD-DMPS-PLACEHOLDER": "Input Placeholder Text", "FIELD-RADIO-BOX-TITLE": "Radio Box Data", - "FIELD-RADIO-BOX-PLACEHOLDER": "Input Placeholder", + "FIELD-RADIO-BOX-PLACEHOLDER": "Input Placeholder Text", "FIELD-RADIO-BOX-LABEL": "Label", "FIELD-RADIO-BOX-VALUE": "Value", "FIELD-AUTOCOMPLETE-TITLE": "Autocomplete Data", - "FIELD-AUTOCOMPLETE-PLACEHOLDER": "Input Placeholder", + "FIELD-AUTOCOMPLETE-PLACEHOLDER": "Input Placeholder Text", "FIELD-AUTOCOMPLETE-SOURCE-TITLE": "Sources", "FIELD-AUTOCOMPLETE-ADD_SOURCE": "Add Source", "FIELD-AUTOCOMPLETE-TYPE": "Source Type", @@ -415,29 +415,29 @@ "FIELD-AUTOCOMPLETE-URL": "Url", "FIELD-AUTOCOMPLETE-OPTIONS-ROOT": "Options Root", "FIELD-DATE-PICKER-TITLE": "Date Picker", - "FIELD-DATE-PICKER-PLACEHOLDER": "Input Placeholder", + "FIELD-DATE-PICKER-PLACEHOLDER": "Input Placeholder Text", "FIELD-DATE-PICKER-LABEL": "Label", "FIELD-DATE-PICKER-VALUE": "Value", "FIELD-MULTIPLE-AUTOCOMPLETE": "Multiple Autocomplete", "FIELD-MULTIPLE-WORDLIST": "Multiple Selection", "FIELD-CURRENCY-TITLE": "Currency Data", - "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder", + "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder Text", "FIELD-REGISTRIES-TITLE": "Registries Data", - "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder", + "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder Text", "FIELD-SERVICES-TITLE": "Services Data", - "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder", + "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder Text", "FIELD-ORGANIZATIONS-TITLE": "Organizations Data", - "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder", + "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder Text", "FIELD-EXTERNAL-DATASETS-TITLE": "External Datasets Data", - "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder", + "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATA-REPOSITORIES-TITLE": "Data Repositories Data", - "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholder", + "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholder Text", "FIELD-TAGS-TITLE": "Tags Data", - "FIELD-TAGS-PLACEHOLDER": "Input placeholder", + "FIELD-TAGS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATASET-IDENTIFIER-TITLE": "Dataset Identifier Data", - "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder", + "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder Text", "FIELD-VALIDATOR-TITLE": "Validator Data", - "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder" + "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder Text" }, "ERROR-MESSAGES":{ "FIELD-OTHER-SOURCES-REQUIRED": "At least one source must be provided.", diff --git a/dmp-frontend/src/assets/i18n/es.json b/dmp-frontend/src/assets/i18n/es.json index 13d676603..255762740 100644 --- a/dmp-frontend/src/assets/i18n/es.json +++ b/dmp-frontend/src/assets/i18n/es.json @@ -421,23 +421,23 @@ "FIELD-MULTIPLE-AUTOCOMPLETE": "Autocompeltado múltiple", "FIELD-MULTIPLE-WORDLIST": "Multiple Selection", "FIELD-CURRENCY-TITLE": "Currency Data", - "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder", + "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder Text", "FIELD-REGISTRIES-TITLE": "Registries Data", - "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder", + "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder Text", "FIELD-SERVICES-TITLE": "Services Data", - "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder", + "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder Text", "FIELD-ORGANIZATIONS-TITLE": "Organizations Data", - "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder", + "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder Text", "FIELD-EXTERNAL-DATASETS-TITLE": "External Datasets Data", - "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder", + "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATA-REPOSITORIES-TITLE": "Data Repositories Data", - "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholder", + "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholder Text", "FIELD-TAGS-TITLE": "Tags Data", - "FIELD-TAGS-PLACEHOLDER": "Input placeholder", + "FIELD-TAGS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATASET-IDENTIFIER-TITLE": "Dataset Identifier Data", - "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder", + "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder Text", "FIELD-VALIDATOR-TITLE": "Validator Data", - "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder" + "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder Text" }, "ERROR-MESSAGES":{ "FIELD-OTHER-SOURCES-REQUIRED": "At least one source must be provided.", diff --git a/dmp-frontend/src/assets/i18n/gr.json b/dmp-frontend/src/assets/i18n/gr.json index ab983afeb..e0c16bf11 100644 --- a/dmp-frontend/src/assets/i18n/gr.json +++ b/dmp-frontend/src/assets/i18n/gr.json @@ -421,23 +421,23 @@ "FIELD-MULTIPLE-AUTOCOMPLETE": "Πολλαπλή Αυτόματη Συμπλήρωση", "FIELD-MULTIPLE-WORDLIST": "Πολλαπλή Επιλογή", "FIELD-CURRENCY-TITLE": "Currency Data", - "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder", + "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder Text", "FIELD-REGISTRIES-TITLE": "Registries Data", - "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder", + "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder Text", "FIELD-SERVICES-TITLE": "Services Data", - "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder", + "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder Text", "FIELD-ORGANIZATIONS-TITLE": "Organizations Data", - "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder", + "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder Text", "FIELD-EXTERNAL-DATASETS-TITLE": "External Datasets Data", - "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder", + "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATA-REPOSITORIES-TITLE": "Data Repositories Data", - "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholder", + "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholder Text", "FIELD-TAGS-TITLE": "Tags Data", - "FIELD-TAGS-PLACEHOLDER": "Input placeholder", + "FIELD-TAGS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATASET-IDENTIFIER-TITLE": "Dataset Identifier Data", - "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder", + "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder Text", "FIELD-VALIDATOR-TITLE": "Validator Data", - "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder" + "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder Text" }, "ERROR-MESSAGES":{ "FIELD-OTHER-SOURCES-REQUIRED": "At least one source must be provided.", diff --git a/dmp-frontend/src/assets/i18n/pt.json b/dmp-frontend/src/assets/i18n/pt.json index 04a41867c..19e9f9f38 100644 --- a/dmp-frontend/src/assets/i18n/pt.json +++ b/dmp-frontend/src/assets/i18n/pt.json @@ -421,23 +421,23 @@ "FIELD-MULTIPLE-AUTOCOMPLETE": "Autopreenchimento Múltiplo", "FIELD-MULTIPLE-WORDLIST": "Seleção Múltipla", "FIELD-CURRENCY-TITLE": "Currency Data", - "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder", + "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder Text", "FIELD-REGISTRIES-TITLE": "Registries Data", - "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder", + "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder Text", "FIELD-SERVICES-TITLE": "Services Data", - "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder", + "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder Text", "FIELD-ORGANIZATIONS-TITLE": "Organizations Data", - "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder", + "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder Text", "FIELD-EXTERNAL-DATASETS-TITLE": "External Datasets Data", - "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder", + "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATA-REPOSITORIES-TITLE": "Data Repositories Data", - "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholder", + "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholder Text", "FIELD-TAGS-TITLE": "Tags Data", - "FIELD-TAGS-PLACEHOLDER": "Input placeholder", + "FIELD-TAGS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATASET-IDENTIFIER-TITLE": "Dataset Identifier Data", - "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder", + "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder Text", "FIELD-VALIDATOR-TITLE": "Validator Data", - "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder" + "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder Text" }, "ERROR-MESSAGES":{ "FIELD-OTHER-SOURCES-REQUIRED": "At least one source must be provided.", diff --git a/dmp-frontend/src/assets/i18n/sk.json b/dmp-frontend/src/assets/i18n/sk.json index 0140d68cd..708d96c52 100644 --- a/dmp-frontend/src/assets/i18n/sk.json +++ b/dmp-frontend/src/assets/i18n/sk.json @@ -381,29 +381,29 @@ "VALIDATION": "Validation", "MULTIPLICITY-CHECKBOX": "Multiplicity", "FIELD-TEXT-AREA-TITLE": "Text Area Data", - "FIELD-TEXT-AREA-PLACEHOLDER": "Input Placeholder", + "FIELD-TEXT-AREA-PLACEHOLDER": "Input Placeholder Text", "FIELD-BOOLEAN-DECISION-TITLE": "Boolean Decision Data", - "FIELD-BOOLEAN-DECISION-PLACEHOLDER": "Input Placeholder", + "FIELD-BOOLEAN-DECISION-PLACEHOLDER": "Input Placeholder Text", "FIELD-CHECKBOX-TITLE": "Checkbox Data", - "FIELD-CHECKBOX-PLACEHOLDER": "Input Placeholder", + "FIELD-CHECKBOX-PLACEHOLDER": "Input Placeholder Text", "FIELD-FREE-TEXT-TITLE": "Free Text Data", - "FIELD-FREE-TEXT-PLACEHOLDER": "Input Placeholder", + "FIELD-FREE-TEXT-PLACEHOLDER": "Input Placeholder Text", "FIELD-COMBO-BOX-TYPE": "Type of Combo Box", "FIELD-WORD-LIST-TITLE": "Word List Data", - "FIELD-WORD-LIST-PLACEHOLDER": "Input Placeholder", + "FIELD-WORD-LIST-PLACEHOLDER": "Input Placeholder Text", "FIELD-WORD-LIST-LABEL": "Label", "FIELD-WORD-LIST-VALUE": "Value", "FIELD-INTERNAL-DMP-ENTITIES-TYPE": "Type of Internal DMP Entity", "FIELD-RESEARCHERS-TITLE": "Researchers Autocomplete", - "FIELD-RESEARCHERS-PLACEHOLDER": "Input Placeholder", - "FIELD-DATASETS-PLACEHOLDER": "Input Placeholder", - "FIELD-DMPS-PLACEHOLDER": "Input Placeholder", + "FIELD-RESEARCHERS-PLACEHOLDER": "Input Placeholder Text", + "FIELD-DATASETS-PLACEHOLDER": "Input Placeholder Text", + "FIELD-DMPS-PLACEHOLDER": "Input Placeholder Text", "FIELD-RADIO-BOX-TITLE": "Radio Box Data", - "FIELD-RADIO-BOX-PLACEHOLDER": "Input Placeholder", + "FIELD-RADIO-BOX-PLACEHOLDER": "Input Placeholder Text", "FIELD-RADIO-BOX-LABEL": "Label", "FIELD-RADIO-BOX-VALUE": "Value", "FIELD-AUTOCOMPLETE-TITLE": "Autocomplete Data", - "FIELD-AUTOCOMPLETE-PLACEHOLDER": "Input Placeholder", + "FIELD-AUTOCOMPLETE-PLACEHOLDER": "Input Placeholder Text", "FIELD-AUTOCOMPLETE-SOURCE-TITLE": "Sources", "FIELD-AUTOCOMPLETE-ADD_SOURCE": "Add Source", "FIELD-AUTOCOMPLETE-TYPE": "Source Type", @@ -415,29 +415,29 @@ "FIELD-AUTOCOMPLETE-URL": "Url", "FIELD-AUTOCOMPLETE-OPTIONS-ROOT": "Options Root", "FIELD-DATE-PICKER-TITLE": "Date Picker", - "FIELD-DATE-PICKER-PLACEHOLDER": "Input Placeholder", + "FIELD-DATE-PICKER-PLACEHOLDER": "Input Placeholder Text", "FIELD-DATE-PICKER-LABEL": "Label", "FIELD-DATE-PICKER-VALUE": "Value", "FIELD-MULTIPLE-AUTOCOMPLETE": "Multiple Autocomplete", "FIELD-MULTIPLE-WORDLIST": "Multiple Selection", "FIELD-CURRENCY-TITLE": "Currency Data", - "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder", + "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder Text", "FIELD-REGISTRIES-TITLE": "Registries Data", - "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder", + "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder Text", "FIELD-SERVICES-TITLE": "Services Data", - "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder", + "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder Text", "FIELD-ORGANIZATIONS-TITLE": "Organizations Data", - "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder", + "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder Text", "FIELD-EXTERNAL-DATASETS-TITLE": "External Datasets Data", - "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder", + "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATA-REPOSITORIES-TITLE": "Data Repositories Data", - "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholder", + "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholder Text", "FIELD-TAGS-TITLE": "Tags Data", - "FIELD-TAGS-PLACEHOLDER": "Input placeholder", + "FIELD-TAGS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATASET-IDENTIFIER-TITLE": "Dataset Identifier Data", - "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder", + "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder Text", "FIELD-VALIDATOR-TITLE": "Validator Data", - "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder" + "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder Text" }, "ERROR-MESSAGES":{ "FIELD-OTHER-SOURCES-REQUIRED": "At least one source must be provided.", diff --git a/dmp-frontend/src/assets/i18n/sr.json b/dmp-frontend/src/assets/i18n/sr.json index 3aacf3569..20a246eeb 100644 --- a/dmp-frontend/src/assets/i18n/sr.json +++ b/dmp-frontend/src/assets/i18n/sr.json @@ -421,23 +421,23 @@ "FIELD-MULTIPLE-AUTOCOMPLETE": "Višestruki automatski unos", "FIELD-MULTIPLE-WORDLIST": "Višestruki odabir", "FIELD-CURRENCY-TITLE": "Currency Data", - "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder", + "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder Text", "FIELD-REGISTRIES-TITLE": "Registries Data", - "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder", + "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder Text", "FIELD-SERVICES-TITLE": "Services Data", - "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder", + "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder Text", "FIELD-ORGANIZATIONS-TITLE": "Organizations Data", - "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder", + "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder Text", "FIELD-EXTERNAL-DATASETS-TITLE": "External Datasets Data", - "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder", + "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATA-REPOSITORIES-TITLE": "Data Repositories Data", - "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholder", + "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholder Text", "FIELD-TAGS-TITLE": "Tags Data", - "FIELD-TAGS-PLACEHOLDER": "Input placeholder", + "FIELD-TAGS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATASET-IDENTIFIER-TITLE": "Dataset Identifier Data", - "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder", + "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder Text", "FIELD-VALIDATOR-TITLE": "Validator Data", - "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder" + "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder Text" }, "ERROR-MESSAGES":{ "FIELD-OTHER-SOURCES-REQUIRED": "At least one source must be provided.", diff --git a/dmp-frontend/src/assets/i18n/tr.json b/dmp-frontend/src/assets/i18n/tr.json index 956b83b7a..73f36148f 100644 --- a/dmp-frontend/src/assets/i18n/tr.json +++ b/dmp-frontend/src/assets/i18n/tr.json @@ -421,23 +421,23 @@ "FIELD-MULTIPLE-AUTOCOMPLETE": "Çoklu Otomatik Tamamlama", "FIELD-MULTIPLE-WORDLIST": "Multiple Selection", "FIELD-CURRENCY-TITLE": "Currency Data", - "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder", + "FIELD-CURRENCY-PLACEHOLDER": "Input Placeholder Text", "FIELD-REGISTRIES-TITLE": "Registries Data", - "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder", + "FIELD-REGISTRIES-PLACEHOLDER": "Input Placeholder Text", "FIELD-SERVICES-TITLE": "Services Data", - "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder", + "FIELD-SERVICES-PLACEHOLDER": "Input Placeholder Text", "FIELD-ORGANIZATIONS-TITLE": "Organizations Data", "FIELD-ORGANIZATIONS-PLACEHOLDER": "Input placeholder", "FIELD-EXTERNAL-DATASETS-TITLE": "External Datasets Data", - "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder", + "FIELD-EXTERNAL-DATASETS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATA-REPOSITORIES-TITLE": "Data Repositories Data", - "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholder", + "FIELD-DATA-REPOSITORIES-PLACEHOLDER": "Input placeholde Textr", "FIELD-TAGS-TITLE": "Tags Data", - "FIELD-TAGS-PLACEHOLDER": "Input placeholder", + "FIELD-TAGS-PLACEHOLDER": "Input placeholder Text", "FIELD-DATASET-IDENTIFIER-TITLE": "Dataset Identifier Data", - "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder", + "FIELD-DATASET-IDENTIFIER-PLACEHOLDER": "Input placeholder Text", "FIELD-VALIDATOR-TITLE": "Validator Data", - "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder" + "FIELD-VALIDATOR-PLACEHOLDER": "Input placeholder Text" }, "ERROR-MESSAGES":{ "FIELD-OTHER-SOURCES-REQUIRED": "At least one source must be provided.",