From dfc9e140038db12d6bcf610bf21dc3ef233f4442 Mon Sep 17 00:00:00 2001 From: Aldo Mihasi Date: Wed, 4 Oct 2023 17:03:50 +0300 Subject: [PATCH] update i18n --- .../dataset-editor.component.ts | 4 +- .../prefill-dataset.component.ts | 6 ++- .../ui/dmp/overview/dmp-overview.component.ts | 4 +- dmp-frontend/src/assets/i18n/de.json | 27 ++++++++++++++ dmp-frontend/src/assets/i18n/en.json | 8 ++++ dmp-frontend/src/assets/i18n/es.json | 27 ++++++++++++++ dmp-frontend/src/assets/i18n/gr.json | 27 ++++++++++++++ dmp-frontend/src/assets/i18n/hr.json | 27 ++++++++++++++ dmp-frontend/src/assets/i18n/pl.json | 37 ++++++++++++++++--- dmp-frontend/src/assets/i18n/pt.json | 27 ++++++++++++++ dmp-frontend/src/assets/i18n/sk.json | 27 ++++++++++++++ dmp-frontend/src/assets/i18n/sr.json | 27 ++++++++++++++ dmp-frontend/src/assets/i18n/tr.json | 27 ++++++++++++++ 13 files changed, 264 insertions(+), 11 deletions(-) diff --git a/dmp-frontend/src/app/ui/dataset/dataset-wizard/dataset-editor/dataset-editor.component.ts b/dmp-frontend/src/app/ui/dataset/dataset-wizard/dataset-editor/dataset-editor.component.ts index cae0ebdfd..5f5d2a023 100644 --- a/dmp-frontend/src/app/ui/dataset/dataset-wizard/dataset-editor/dataset-editor.component.ts +++ b/dmp-frontend/src/app/ui/dataset/dataset-wizard/dataset-editor/dataset-editor.component.ts @@ -70,8 +70,8 @@ export class DatasetEditorComponent extends BaseComponent { if(count === foundTemplate.maxMultiplicity){ this.dialog.open(PopupNotificationDialogComponent, { data: { - title: 'Max datasets using this template.', - message: 'Select another profile.' + title: this.language.instant('DATASET-EDITOR.MAX-DESCRIPTION-DIALOG.TITLE'), + message: this.language.instant('DATASET-EDITOR.MAX-DESCRIPTION-DIALOG.MESSAGE') }, maxWidth: '30em' }); } diff --git a/dmp-frontend/src/app/ui/dataset/dataset-wizard/prefill-dataset/prefill-dataset.component.ts b/dmp-frontend/src/app/ui/dataset/dataset-wizard/prefill-dataset/prefill-dataset.component.ts index bfd5ec16e..bc632ae2d 100644 --- a/dmp-frontend/src/app/ui/dataset/dataset-wizard/prefill-dataset/prefill-dataset.component.ts +++ b/dmp-frontend/src/app/ui/dataset/dataset-wizard/prefill-dataset/prefill-dataset.component.ts @@ -11,6 +11,7 @@ import {FormBuilder, FormGroup, Validators} from "@angular/forms"; import { DatasetProfileModel } from "@app/core/model/dataset/dataset-profile"; import { DmpProfileService } from "@app/core/services/dmp/dmp-profile.service"; import { PopupNotificationDialogComponent } from "@app/library/notification/popup/popup-notification.component"; +import { TranslateService } from "@ngx-translate/core"; @Component({ selector: 'prefill-dataset-component', @@ -28,6 +29,7 @@ export class PrefillDatasetComponent extends BaseComponent implements OnInit { private prefillingService: PrefillingService, private dmpProfileService: DmpProfileService, private dialog: MatDialog, + private language: TranslateService, private progressIndicationService: ProgressIndicationService, private fb: FormBuilder, @Inject(MAT_DIALOG_DATA) public data: any) { @@ -108,8 +110,8 @@ export class PrefillDatasetComponent extends BaseComponent implements OnInit { if(count === foundTemplate.maxMultiplicity){ this.dialog.open(PopupNotificationDialogComponent, { data: { - title: 'Max datasets using this template.', - message: 'Select another profile.' + title: this.language.instant('DATASET-EDITOR.MAX-DESCRIPTION-DIALOG.TITLE'), + message: this.language.instant('DATASET-EDITOR.MAX-DESCRIPTION-DIALOG.MESSAGE') }, maxWidth: '30em' }); } diff --git a/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.ts b/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.ts index 69bfb9013..7e6599836 100644 --- a/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.ts +++ b/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.ts @@ -662,8 +662,8 @@ export class DmpOverviewComponent extends BaseComponent implements OnInit { if(count < template.minMultiplicity){ this.dialog.open(PopupNotificationDialogComponent, { data: { - title: 'Min(' + template.minMultiplicity + ') datasets needed using this template.', - message: 'Add dataset.' + title: this.language.instant('DMP-OVERVIEW.MIN-DESCRIPTIONS-DIALOG.TITLE', {'minMultiplicity': template.minMultiplicity}), + message: this.language.instant('DMP-OVERVIEW.MIN-DESCRIPTIONS-DIALOG.MESSAGE', ) }, maxWidth: '30em' }); return true; diff --git a/dmp-frontend/src/assets/i18n/de.json b/dmp-frontend/src/assets/i18n/de.json index ede5f82f9..cc842b749 100644 --- a/dmp-frontend/src/assets/i18n/de.json +++ b/dmp-frontend/src/assets/i18n/de.json @@ -28,6 +28,8 @@ "UNSUCCESSFUL-LOGIN": "Anmeldung fehlgeschlagen", "SUCCESSFUL-DATASET-PROFILE-DELETE": "Erfolgreich gelöscht", "UNSUCCESSFUL-DATASET-PROFILE-DELETE": "Diese Vorlage kann nicht gelöscht werden, da Datensatzbeschreibungen noch damit verbunden sind", + "SUCCESSFUL-DMP-BLUEPRINT-DELETE": "Successful Delete", + "UNSUCCESSFUL-DMP-BLUEPRINT-DELETE": "This blueprint can not deleted, because DMPs are associated with it", "SUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "Successful Delete", "UNSUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "This type can not deleted, because Descriptions are associated with it", "SUCCESSFUL-DELETE": "Erfolgreich gelöscht", @@ -155,6 +157,7 @@ "GRANT-NEW": "Neue Förderung", "GRANT-EDIT": "Förderung anzeigen/bearbeiten", "DMP-BLUEPRINT-NEW": "New DMP Blueprint", + "DMP-BLUEPRINT-CLONE": "New Clone of DMP Blueprint", "DMP-BLUEPRINT-EDIT": "Edit DMP Blueprint", "DATASET-PROFILES-NEW": "Neue Vorlage für Datensatzbeschreibung", "DATASET-PROFILES-EDIT": "Vorlage der Datensatzbeschreibung bearbeiten", @@ -834,6 +837,10 @@ "LOCKED-DIALOG":{ "TITLE": "DMP is locked", "MESSAGE":"Somebody else is modifying the DMP at this moment. If you would like to modify or view it, please come back later." + }, + "MIN-DESCRIPTIONS-DIALOG": { + "TITLE": "Min({{minMultiplicity}}) datasets needed using this template.", + "MESSAGE": "Add dataset." } }, "DATASET-OVERVIEW": { @@ -999,6 +1006,7 @@ "DMP-PROFILE-EDITOR": { "TITLE": { "NEW": "New DMP Blueprint", + "NEW-PROFILE-CLONE": "New Clone Of ", "EDIT": "Edit" }, "FIELDS": { @@ -1203,6 +1211,11 @@ "PUBLISHED": "Veröffentlicht", "LAST-EDITED": "Zuletzt bearbeitet" }, + "ACTIONS": { + "CLONE": "Clone", + "DOWNLOAD-XML":"Download XML", + "DELETE": "Delete" + }, "UPLOAD": { "UPLOAD-XML": "Importieren", "UPLOAD-XML-FILE-TITLE": "Vorlage des Datenmanagementplans importieren", @@ -1277,6 +1290,10 @@ "SELECT-DATASET-TEMPLATES": "Vorlagen für Datensatzbeschreibung auswählen", "RELATED-DATASET-TEMPLATES": "Zugehörige Vorlagen für Datensatzbeschreibung" }, + "BLUEPRINT": { + "LIKE": "Search", + "STATUS": "Status" + }, "USERS": { "LABEL": "Suche", "ROLE": "Rolle", @@ -1349,6 +1366,10 @@ "VIEW-MORE": "View more", "VIEW-LESS": "View less" } + }, + "MAX-DESCRIPTION-DIALOG": { + "TITLE": "Max datasets using this template.", + "MESSAGE": "Select another profile." } }, "DATASET-CREATE-WIZARD": { @@ -1948,5 +1969,11 @@ "DRAFT": "Draft", "FINALIZED": "Finalized", "DELETED": "Deleted" + }, + "BLUEPRINT-STATUS": { + "NONE": "None", + "DRAFT": "Draft", + "FINALIZED": "Finalized", + "DELETED": "Deleted" } } diff --git a/dmp-frontend/src/assets/i18n/en.json b/dmp-frontend/src/assets/i18n/en.json index 27e76d916..ea2c54200 100644 --- a/dmp-frontend/src/assets/i18n/en.json +++ b/dmp-frontend/src/assets/i18n/en.json @@ -837,6 +837,10 @@ "LOCKED-DIALOG":{ "TITLE": "DMP is locked", "MESSAGE":"Somebody else is modifying the DMP at this moment. If you would like to modify or view it, please come back later." + }, + "MIN-DESCRIPTIONS-DIALOG": { + "TITLE": "Min({{minMultiplicity}}) datasets needed using this template.", + "MESSAGE": "Add dataset." } }, "DATASET-OVERVIEW": { @@ -1362,6 +1366,10 @@ "VIEW-MORE": "View more", "VIEW-LESS": "View less" } + }, + "MAX-DESCRIPTION-DIALOG": { + "TITLE": "Max datasets using this template.", + "MESSAGE": "Select another profile." } }, "DATASET-CREATE-WIZARD": { diff --git a/dmp-frontend/src/assets/i18n/es.json b/dmp-frontend/src/assets/i18n/es.json index 1a97b87e2..5467b760f 100644 --- a/dmp-frontend/src/assets/i18n/es.json +++ b/dmp-frontend/src/assets/i18n/es.json @@ -28,6 +28,8 @@ "UNSUCCESSFUL-LOGIN": "Inicio de sesión fallido", "SUCCESSFUL-DATASET-PROFILE-DELETE": "Borrado correcto", "UNSUCCESSFUL-DATASET-PROFILE-DELETE": "Esta plantilla no se puede borrar, porque está asociada a descripciones del dataset", + "SUCCESSFUL-DMP-BLUEPRINT-DELETE": "Successful Delete", + "UNSUCCESSFUL-DMP-BLUEPRINT-DELETE": "This blueprint can not deleted, because DMPs are associated with it", "SUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "Successful Delete", "UNSUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "This type can not deleted, because Descriptions are associated with it", "SUCCESSFUL-DELETE": "Borrado correcto", @@ -155,6 +157,7 @@ "GRANT-NEW": "Nueva subvención", "GRANT-EDIT": "Ver/Editar subvención", "DMP-BLUEPRINT-NEW": "New DMP Blueprint", + "DMP-BLUEPRINT-CLONE": "New Clone of DMP Blueprint", "DMP-BLUEPRINT-EDIT": "Edit DMP Blueprint", "DATASET-PROFILES-NEW": "Nueva plantilla de descripción del dataset", "DATASET-PROFILES-EDIT": "Editar plantilla de descripción del dataset", @@ -834,6 +837,10 @@ "LOCKED-DIALOG":{ "TITLE": "PGD bloqeuado", "MESSAGE":"Alguien más está modificando el PGD. Si quiere modificarlo o visualizarlo, por favor, inténtelo más tarde." + }, + "MIN-DESCRIPTIONS-DIALOG": { + "TITLE": "Min({{minMultiplicity}}) datasets needed using this template.", + "MESSAGE": "Add dataset." } }, "DATASET-OVERVIEW": { @@ -999,6 +1006,7 @@ "DMP-PROFILE-EDITOR": { "TITLE": { "NEW": "New DMP Blueprint", + "NEW-PROFILE-CLONE": "New Clone Of ", "EDIT": "Editar" }, "FIELDS": { @@ -1203,6 +1211,11 @@ "PUBLISHED": "Publicado", "LAST-EDITED": "Última edición" }, + "ACTIONS": { + "CLONE": "Clone", + "DOWNLOAD-XML":"Download XML", + "DELETE": "Delete" + }, "UPLOAD": { "UPLOAD-XML": "Importar", "UPLOAD-XML-FILE-TITLE": "Importar plantilla del Plan de Gestión de Datos", @@ -1277,6 +1290,10 @@ "SELECT-DATASET-TEMPLATES": "Seleccionar la plantilla de descripción del dataset", "RELATED-DATASET-TEMPLATES": "Plantilla de descripción del Dataser relacionada" }, + "BLUEPRINT": { + "LIKE": "Search", + "STATUS": "Status" + }, "USERS": { "LABEL": "Búsqueda", "ROLE": "Función", @@ -1349,6 +1366,10 @@ "VIEW-MORE": "Ver más", "VIEW-LESS": "Ver menos" } + }, + "MAX-DESCRIPTION-DIALOG": { + "TITLE": "Max datasets using this template.", + "MESSAGE": "Select another profile." } }, "DATASET-CREATE-WIZARD": { @@ -1949,5 +1970,11 @@ "DRAFT": "Borrador", "FINALIZED": "Finalizado", "DELETED": "Eliminado" + }, + "BLUEPRINT-STATUS": { + "NONE": "None", + "DRAFT": "Draft", + "FINALIZED": "Finalized", + "DELETED": "Deleted" } } diff --git a/dmp-frontend/src/assets/i18n/gr.json b/dmp-frontend/src/assets/i18n/gr.json index 25f81be6d..456942277 100644 --- a/dmp-frontend/src/assets/i18n/gr.json +++ b/dmp-frontend/src/assets/i18n/gr.json @@ -28,6 +28,8 @@ "UNSUCCESSFUL-LOGIN": "Αποτυχημένη σύνδεση", "SUCCESSFUL-DATASET-PROFILE-DELETE": "Επιτυχής διαγραφή", "UNSUCCESSFUL-DATASET-PROFILE-DELETE": "Το template δεν μπορεί να διαγραφεί, επειδή οι περιγραφές των συνόλων δεδομένων σχετίζονται με αυτό", + "SUCCESSFUL-DMP-BLUEPRINT-DELETE": "Successful Delete", + "UNSUCCESSFUL-DMP-BLUEPRINT-DELETE": "This blueprint can not deleted, because DMPs are associated with it", "SUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "Successful Delete", "UNSUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "This type can not deleted, because Descriptions are associated with it", "SUCCESSFUL-DELETE": "Επιτυχής διαγραφή", @@ -155,6 +157,7 @@ "GRANT-NEW": "Νέα Επιχορήγηση", "GRANT-EDIT": "Προβολή / Επεξεργασία Επιχορήγησης", "DMP-BLUEPRINT-NEW": "New DMP Blueprint", + "DMP-BLUEPRINT-CLONE": "New Clone of DMP Blueprint", "DMP-BLUEPRINT-EDIT": "Edit DMP Blueprint", "DATASET-PROFILES-NEW": "Νέο template Περιγραφής Συνόλου Δεδομένων", "DATASET-PROFILES-EDIT": "Επεξεργασία template Περιγραφής Συνόλου Δεδομένων", @@ -834,6 +837,10 @@ "LOCKED-DIALOG":{ "TITLE": "DMP is locked", "MESSAGE":"Somebody else is modifying the DMP at this moment. If you would like to modify or view it, please come back later." + }, + "MIN-DESCRIPTIONS-DIALOG": { + "TITLE": "Min({{minMultiplicity}}) datasets needed using this template.", + "MESSAGE": "Add dataset." } }, "DATASET-OVERVIEW": { @@ -999,6 +1006,7 @@ "DMP-PROFILE-EDITOR": { "TITLE": { "NEW": "New DMP Blueprint", + "NEW-PROFILE-CLONE": "New Clone Of ", "EDIT": "Επεξεργασία" }, "FIELDS": { @@ -1203,6 +1211,11 @@ "PUBLISHED": "Δημοσιευμένα", "LAST-EDITED": "Τελευταία Επεξεργασία" }, + "ACTIONS": { + "CLONE": "Clone", + "DOWNLOAD-XML":"Download XML", + "DELETE": "Delete" + }, "UPLOAD": { "UPLOAD-XML": "Εισαγωγή", "UPLOAD-XML-FILE-TITLE": "Εισαγωγή Template Σχεδίου Διαχείρισης Δεδομένων", @@ -1277,6 +1290,10 @@ "SELECT-DATASET-TEMPLATES": "Επιλογή Templates Περιγραφής Συνόλου Δεδομένων", "RELATED-DATASET-TEMPLATES": "Σχετικά Templates Περιγραφής Συνόλων Δεδομένων" }, + "BLUEPRINT": { + "LIKE": "Search", + "STATUS": "Status" + }, "USERS": { "LABEL": "Αναζήτηση", "ROLE": "Ρόλος", @@ -1349,6 +1366,10 @@ "VIEW-MORE": "Δείτε περισσότερα", "VIEW-LESS": "Δείτε λιγότερα" } + }, + "MAX-DESCRIPTION-DIALOG": { + "TITLE": "Max datasets using this template.", + "MESSAGE": "Select another profile." } }, "DATASET-CREATE-WIZARD": { @@ -1949,5 +1970,11 @@ "DRAFT": "Πρόχειρα", "FINALIZED": "Οριστικοποιημένα", "DELETED": "Deleted" + }, + "BLUEPRINT-STATUS": { + "NONE": "None", + "DRAFT": "Draft", + "FINALIZED": "Finalized", + "DELETED": "Deleted" } } diff --git a/dmp-frontend/src/assets/i18n/hr.json b/dmp-frontend/src/assets/i18n/hr.json index 96f80dfbe..eb7445c07 100644 --- a/dmp-frontend/src/assets/i18n/hr.json +++ b/dmp-frontend/src/assets/i18n/hr.json @@ -28,6 +28,8 @@ "UNSUCCESSFUL-LOGIN": "Neuspješna prijava", "SUCCESSFUL-DATASET-PROFILE-DELETE": "Uspješno brisanje", "UNSUCCESSFUL-DATASET-PROFILE-DELETE": "Nije moguće obrisati predložak zato što je povezan sa skupom podataka", + "SUCCESSFUL-DMP-BLUEPRINT-DELETE": "Successful Delete", + "UNSUCCESSFUL-DMP-BLUEPRINT-DELETE": "This blueprint can not deleted, because DMPs are associated with it", "SUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "Successful Delete", "UNSUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "This type can not deleted, because Descriptions are associated with it", "SUCCESSFUL-DELETE": "Uspješno brisanje", @@ -155,6 +157,7 @@ "GRANT-NEW": "Nova potpora", "GRANT-EDIT": "Prikažite/uredite potporu", "DMP-BLUEPRINT-NEW": "New DMP Blueprint", + "DMP-BLUEPRINT-CLONE": "New Clone of DMP Blueprint", "DMP-BLUEPRINT-EDIT": "Edit DMP Blueprint", "DATASET-PROFILES-NEW": "Novi predložak za opis skupa podataka", "DATASET-PROFILES-EDIT": "Uredite predložak opisa skupa podataka", @@ -834,6 +837,10 @@ "LOCKED-DIALOG": { "TITLE": "PUP je zaključan", "MESSAGE": "U ovom trenutku netko drugi uređuje informacije o skupu podataka. Ako želite pregledati zapis ili napraviti izmjenu, pričekajte i pokušajte ponovo kasnije." + }, + "MIN-DESCRIPTIONS-DIALOG": { + "TITLE": "Min({{minMultiplicity}}) datasets needed using this template.", + "MESSAGE": "Add dataset." } }, "DATASET-OVERVIEW": { @@ -999,6 +1006,7 @@ "DMP-PROFILE-EDITOR": { "TITLE": { "NEW": "New DMP Blueprint", + "NEW-PROFILE-CLONE": "New Clone Of ", "EDIT": "Uredi" }, "FIELDS": { @@ -1203,6 +1211,11 @@ "PUBLISHED": "Objavljeno", "LAST-EDITED": "Posljednji put uređivano" }, + "ACTIONS": { + "CLONE": "Clone", + "DOWNLOAD-XML":"Download XML", + "DELETE": "Delete" + }, "UPLOAD": { "UPLOAD-XML": "Uvoz", "UPLOAD-XML-FILE-TITLE": "Uvezite predložak za Plan upravljanja podacima", @@ -1277,6 +1290,10 @@ "SELECT-DATASET-TEMPLATES": "Odaberite predloške za skupove podataka", "RELATED-DATASET-TEMPLATES": "Povezani predlošci za skupove podataka" }, + "BLUEPRINT": { + "LIKE": "Search", + "STATUS": "Status" + }, "USERS": { "LABEL": "Pretraži", "ROLE": "Uloga", @@ -1349,6 +1366,10 @@ "VIEW-MORE": "Vidi više", "VIEW-LESS": "Vidi manje" } + }, + "MAX-DESCRIPTION-DIALOG": { + "TITLE": "Max datasets using this template.", + "MESSAGE": "Select another profile." } }, "DATASET-CREATE-WIZARD": { @@ -1949,5 +1970,11 @@ "DRAFT": "Nacrt", "FINALIZED": "Završeno", "DELETED": "Izbrisano" + }, + "BLUEPRINT-STATUS": { + "NONE": "None", + "DRAFT": "Draft", + "FINALIZED": "Finalized", + "DELETED": "Deleted" } } diff --git a/dmp-frontend/src/assets/i18n/pl.json b/dmp-frontend/src/assets/i18n/pl.json index 5518c82bf..8633207c8 100644 --- a/dmp-frontend/src/assets/i18n/pl.json +++ b/dmp-frontend/src/assets/i18n/pl.json @@ -28,7 +28,9 @@ "UNSUCCESSFUL-LOGIN": "Nie udało się zalogować", "SUCCESSFUL-DATASET-PROFILE-DELETE": "Usunięto", "UNSUCCESSFUL-DATASET-PROFILE-DELETE": "Tego szablonu nie można usunąć, ponieważ są z nim powiązane zbiory danych", - "SUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "Successful Delete", + "SUCCESSFUL-DMP-BLUEPRINT-DELETE": "Successful Delete", + "UNSUCCESSFUL-DMP-BLUEPRINT-DELETE": "This blueprint can not deleted, because DMPs are associated with it", + "SUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "Successful Delete", "UNSUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "This type can not deleted, because Descriptions are associated with it", "SUCCESSFUL-DELETE": "Usunięto", "UNSUCCESSFUL-DELETE": "Nie udało się usunąć", @@ -155,6 +157,7 @@ "GRANT-NEW": "Nowa dotacja", "GRANT-EDIT": "Wyświetl/edytuj dotację", "DMP-BLUEPRINT-NEW": "New DMP Blueprint", + "DMP-BLUEPRINT-CLONE": "New Clone of DMP Blueprint", "DMP-BLUEPRINT-EDIT": "Edit DMP Blueprint", "DATASET-PROFILES-NEW": "Nowy szablon zbioru danych", "DATASET-PROFILES-EDIT": "Edytuj szablon zbioru danych", @@ -834,7 +837,11 @@ "LOCKED-DIALOG": { "TITLE": "DMP jest zablokowany", "MESSAGE": "W tej chwili ktoś inny modyfikuje ten zbiór danych. Możesz przeglądać ten zbiór danych, ale nie możesz wprowadzać żadnych zmian. Jeśli chcesz go zmodyfikować, wróć później." - } + }, + "MIN-DESCRIPTIONS-DIALOG": { + "TITLE": "Min({{minMultiplicity}}) datasets needed using this template.", + "MESSAGE": "Add dataset." + } }, "DATASET-OVERVIEW": { "DESCRIPTION-AUTHORS": "Description authors", @@ -999,7 +1006,8 @@ "DMP-PROFILE-EDITOR": { "TITLE": { "NEW": "New DMP Blueprint", - "EDIT": "Edytuj" + "NEW-PROFILE-CLONE": "New Clone Of ", + "EDIT": "Edytuj" }, "FIELDS": { "TITLE": "Pola", @@ -1203,6 +1211,11 @@ "PUBLISHED": "Opublikowany", "LAST-EDITED": "Ostatnio edytowany" }, + "ACTIONS": { + "CLONE": "Clone", + "DOWNLOAD-XML":"Download XML", + "DELETE": "Delete" + }, "UPLOAD": { "UPLOAD-XML": "Import", "UPLOAD-XML-FILE-TITLE": "Importuj szablon planu zarządzania danymi", @@ -1277,6 +1290,10 @@ "SELECT-DATASET-TEMPLATES": "Wybierz szablony zbioru danych", "RELATED-DATASET-TEMPLATES": "Szablony powiązanego zbioru danych" }, + "BLUEPRINT": { + "LIKE": "Search", + "STATUS": "Status" + }, "USERS": { "LABEL": "Szukaj", "ROLE": "Rola", @@ -1349,7 +1366,11 @@ "VIEW-MORE": "Wyświetl więcej", "VIEW-LESS": "Wyświetl mniej" } - } + }, + "MAX-DESCRIPTION-DIALOG": { + "TITLE": "Max datasets using this template.", + "MESSAGE": "Select another profile." + } }, "DATASET-CREATE-WIZARD": { "ACTIONS": { @@ -1949,5 +1970,11 @@ "DRAFT": "Projekt", "FINALIZED": "Sfinalizowano", "DELETED": "Usunięto" - } + }, + "BLUEPRINT-STATUS": { + "NONE": "None", + "DRAFT": "Draft", + "FINALIZED": "Finalized", + "DELETED": "Deleted" + } } diff --git a/dmp-frontend/src/assets/i18n/pt.json b/dmp-frontend/src/assets/i18n/pt.json index 5b2b35a8f..b419c2d3b 100644 --- a/dmp-frontend/src/assets/i18n/pt.json +++ b/dmp-frontend/src/assets/i18n/pt.json @@ -28,6 +28,8 @@ "UNSUCCESSFUL-LOGIN": "Não foi possível iniciar a sessão", "SUCCESSFUL-DATASET-PROFILE-DELETE": "Eliminado com sucesso", "UNSUCCESSFUL-DATASET-PROFILE-DELETE": "Este modelo não pode ser eliminado porque existem Datasets associados", + "SUCCESSFUL-DMP-BLUEPRINT-DELETE": "Successful Delete", + "UNSUCCESSFUL-DMP-BLUEPRINT-DELETE": "This blueprint can not deleted, because DMPs are associated with it", "SUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "Successful Delete", "UNSUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "This type can not deleted, because Descriptions are associated with it", "SUCCESSFUL-DELETE": "Eliminado com sucesso", @@ -155,6 +157,7 @@ "GRANT-NEW": "Novo Grant", "GRANT-EDIT": "Ver/Editar Grant", "DMP-BLUEPRINT-NEW": "New DMP Blueprint", + "DMP-BLUEPRINT-CLONE": "New Clone of DMP Blueprint", "DMP-BLUEPRINT-EDIT": "Edit DMP Blueprint", "DATASET-PROFILES-NEW": "Novo Dataset", "DATASET-PROFILES-EDIT": "Editar Dataset", @@ -839,6 +842,10 @@ "LOCKED-DIALOG":{ "TITLE": "DMP is locked", "MESSAGE":"Somebody else is modifying the DMP at this moment. If you would like to modify or view it, please come back later." + }, + "MIN-DESCRIPTIONS-DIALOG": { + "TITLE": "Min({{minMultiplicity}}) datasets needed using this template.", + "MESSAGE": "Add dataset." } }, "DATASET-OVERVIEW": { @@ -999,6 +1006,7 @@ "DMP-PROFILE-EDITOR": { "TITLE": { "NEW": "New DMP Blueprint", + "NEW-PROFILE-CLONE": "New Clone Of ", "EDIT": "Editar" }, "FIELDS": { @@ -1203,6 +1211,11 @@ "PUBLISHED": "Publicado", "LAST-EDITED": "Última edição" }, + "ACTIONS": { + "CLONE": "Clone", + "DOWNLOAD-XML":"Download XML", + "DELETE": "Delete" + }, "UPLOAD": { "UPLOAD-XML": "Importar", "UPLOAD-XML-FILE-TITLE": "Importar Plano de Gestão de Dados", @@ -1277,6 +1290,10 @@ "SELECT-DATASET-TEMPLATES": "Selecionar Datasets", "RELATED-DATASET-TEMPLATES": "Datasets" }, + "BLUEPRINT": { + "LIKE": "Search", + "STATUS": "Status" + }, "USERS": { "LABEL": "Procurar", "ROLE": "Função", @@ -1349,6 +1366,10 @@ "VIEW-MORE": "View more", "VIEW-LESS": "View less" } + }, + "MAX-DESCRIPTION-DIALOG": { + "TITLE": "Max datasets using this template.", + "MESSAGE": "Select another profile." } }, "DATASET-CREATE-WIZARD": { @@ -1950,6 +1971,12 @@ "FINALIZED": "Concluído", "DELETED": "Eliminado" }, + "BLUEPRINT-STATUS": { + "NONE": "None", + "DRAFT": "Draft", + "FINALIZED": "Finalized", + "DELETED": "Deleted" + }, "This account has no Zenodo Token": "Selecione uma das seguintes opções para depositar o seu PGD:", "File format is not supported": "Ficheiro a importar deverá ser em formato .json", "You cannot Remove Datamanagement Plan with Datasets": "Não pode remover o Plano de Gestão de Dados porque contém pelo menos um modelo de dados associado", diff --git a/dmp-frontend/src/assets/i18n/sk.json b/dmp-frontend/src/assets/i18n/sk.json index 40df8e640..03a8c874d 100644 --- a/dmp-frontend/src/assets/i18n/sk.json +++ b/dmp-frontend/src/assets/i18n/sk.json @@ -28,6 +28,8 @@ "UNSUCCESSFUL-LOGIN": "Neúspešné prihlásenie", "SUCCESSFUL-DATASET-PROFILE-DELETE": "Úspešne vymazané", "UNSUCCESSFUL-DATASET-PROFILE-DELETE": "Túto šablónu nie je možné odstrániť, pretože sú k nej priradené súbory dát", + "SUCCESSFUL-DMP-BLUEPRINT-DELETE": "Successful Delete", + "UNSUCCESSFUL-DMP-BLUEPRINT-DELETE": "This blueprint can not deleted, because DMPs are associated with it", "SUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "Successful Delete", "UNSUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "This type can not deleted, because Descriptions are associated with it", "SUCCESSFUL-DELETE": "Úspešne vymazané", @@ -155,6 +157,7 @@ "GRANT-NEW": "Nový grant", "GRANT-EDIT": "Pozrieť/Editovať grant", "DMP-BLUEPRINT-NEW": "New DMP Blueprint", + "DMP-BLUEPRINT-CLONE": "New Clone of DMP Blueprint", "DMP-BLUEPRINT-EDIT": "Edit DMP Blueprint", "DATASET-PROFILES-NEW": "Nový klon šablóny súboru dát", "DATASET-PROFILES-EDIT": "Editovať šablónu súboru dát", @@ -834,6 +837,10 @@ "LOCKED-DIALOG":{ "TITLE": "DMP is locked", "MESSAGE":"Somebody else is modifying the DMP at this moment. If you would like to modify or view it, please come back later." + }, + "MIN-DESCRIPTIONS-DIALOG": { + "TITLE": "Min({{minMultiplicity}}) datasets needed using this template.", + "MESSAGE": "Add dataset." } }, "DATASET-OVERVIEW": { @@ -999,6 +1006,7 @@ "DMP-PROFILE-EDITOR": { "TITLE": { "NEW": "New DMP Blueprint", + "NEW-PROFILE-CLONE": "New Clone Of ", "EDIT": "Editovať" }, "FIELDS": { @@ -1203,6 +1211,11 @@ "PUBLISHED": "Publikované", "LAST-EDITED": "Naposledy upravené" }, + "ACTIONS": { + "CLONE": "Clone", + "DOWNLOAD-XML":"Download XML", + "DELETE": "Delete" + }, "UPLOAD": { "UPLOAD-XML": "Importovať", "UPLOAD-XML-FILE-TITLE": "Importovať šablónu Plánu manažmentu dát", @@ -1277,6 +1290,10 @@ "SELECT-DATASET-TEMPLATES": "Vybrať šablóny súborov dát", "RELATED-DATASET-TEMPLATES": "Súvisiace šablóny súborov dát" }, + "BLUEPRINT": { + "LIKE": "Search", + "STATUS": "Status" + }, "USERS": { "LABEL": "Hľadať", "ROLE": "Rola", @@ -1349,6 +1366,10 @@ "VIEW-MORE": "View more", "VIEW-LESS": "View less" } + }, + "MAX-DESCRIPTION-DIALOG": { + "TITLE": "Max datasets using this template.", + "MESSAGE": "Select another profile." } }, "DATASET-CREATE-WIZARD": { @@ -1949,5 +1970,11 @@ "DRAFT": "Návrh", "FINALIZED": "Dokončené", "DELETED": "Deleted" + }, + "BLUEPRINT-STATUS": { + "NONE": "None", + "DRAFT": "Draft", + "FINALIZED": "Finalized", + "DELETED": "Deleted" } } diff --git a/dmp-frontend/src/assets/i18n/sr.json b/dmp-frontend/src/assets/i18n/sr.json index 4985eb72d..e8c8b274a 100644 --- a/dmp-frontend/src/assets/i18n/sr.json +++ b/dmp-frontend/src/assets/i18n/sr.json @@ -28,6 +28,8 @@ "UNSUCCESSFUL-LOGIN": "Neuspešno prijavljivanje", "SUCCESSFUL-DATASET-PROFILE-DELETE": "Uspešno brisanje", "UNSUCCESSFUL-DATASET-PROFILE-DELETE": "Ne možete da obrišete obrazac zato što je povezan sa skupom podataka", + "SUCCESSFUL-DMP-BLUEPRINT-DELETE": "Successful Delete", + "UNSUCCESSFUL-DMP-BLUEPRINT-DELETE": "This blueprint can not deleted, because DMPs are associated with it", "SUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "Successful Delete", "UNSUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "This type can not deleted, because Descriptions are associated with it", "SUCCESSFUL-DELETE": "Uspešno brisanje", @@ -155,6 +157,7 @@ "GRANT-NEW": "Novi grant", "GRANT-EDIT": "Prikažite/uredite grant", "DMP-BLUEPRINT-NEW": "New DMP Blueprint", + "DMP-BLUEPRINT-CLONE": "New Clone of DMP Blueprint", "DMP-BLUEPRINT-EDIT": "Edit DMP Blueprint", "DATASET-PROFILES-NEW": "Novi obrazac za skup podataka", "DATASET-PROFILES-EDIT": "Uredite obrazac skupa podataka", @@ -834,6 +837,10 @@ "LOCKED-DIALOG":{ "TITLE": "DMP is locked", "MESSAGE":"Somebody else is modifying the DMP at this moment. If you would like to modify or view it, please come back later." + }, + "MIN-DESCRIPTIONS-DIALOG": { + "TITLE": "Min({{minMultiplicity}}) datasets needed using this template.", + "MESSAGE": "Add dataset." } }, "DATASET-OVERVIEW": { @@ -999,6 +1006,7 @@ "DMP-PROFILE-EDITOR": { "TITLE": { "NEW": "New DMP Blueprint", + "NEW-PROFILE-CLONE": "New Clone Of ", "EDIT": "Uredite" }, "FIELDS": { @@ -1203,6 +1211,11 @@ "PUBLISHED": "Objavljeno", "LAST-EDITED": "Poslednji put izmenjeno" }, + "ACTIONS": { + "CLONE": "Clone", + "DOWNLOAD-XML":"Download XML", + "DELETE": "Delete" + }, "UPLOAD": { "UPLOAD-XML": "Uvezite", "UPLOAD-XML-FILE-TITLE": "Uvezite obrazac za plan upravljanja podacima", @@ -1277,6 +1290,10 @@ "SELECT-DATASET-TEMPLATES": "Odaberite obrasce za skupove podataka", "RELATED-DATASET-TEMPLATES": "Povezani obrasci za skupove podataka" }, + "BLUEPRINT": { + "LIKE": "Search", + "STATUS": "Status" + }, "USERS": { "LABEL": "Pretražite", "ROLE": "Uloga", @@ -1349,6 +1366,10 @@ "VIEW-MORE": "View more", "VIEW-LESS": "View less" } + }, + "MAX-DESCRIPTION-DIALOG": { + "TITLE": "Max datasets using this template.", + "MESSAGE": "Select another profile." } }, "DATASET-CREATE-WIZARD": { @@ -1949,5 +1970,11 @@ "DRAFT": "Radna verzija", "FINALIZED": "Završeno", "DELETED": "Deleted" + }, + "BLUEPRINT-STATUS": { + "NONE": "None", + "DRAFT": "Draft", + "FINALIZED": "Finalized", + "DELETED": "Deleted" } } diff --git a/dmp-frontend/src/assets/i18n/tr.json b/dmp-frontend/src/assets/i18n/tr.json index aa0c256ff..b5fdbbae6 100644 --- a/dmp-frontend/src/assets/i18n/tr.json +++ b/dmp-frontend/src/assets/i18n/tr.json @@ -28,6 +28,8 @@ "UNSUCCESSFUL-LOGIN": "Başarısız Giriş", "SUCCESSFUL-DATASET-PROFILE-DELETE": "Silme Başarılı", "UNSUCCESSFUL-DATASET-PROFILE-DELETE": "Veri seti Tanımları ilişkilendirildiği için bu şablon silinemez", + "SUCCESSFUL-DMP-BLUEPRINT-DELETE": "Successful Delete", + "UNSUCCESSFUL-DMP-BLUEPRINT-DELETE": "This blueprint can not deleted, because DMPs are associated with it", "SUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "Successful Delete", "UNSUCCESSFUL-DESCRIPTION-TEMPLATE-TYPE-DELETE": "This type can not deleted, because Descriptions are associated with it", "SUCCESSFUL-DELETE": "Başarılı Silme", @@ -155,6 +157,7 @@ "GRANT-NEW": "Yeni Hibe", "GRANT-EDIT": "Hibe Görüntüle/Düzenle", "DMP-BLUEPRINT-NEW": "New DMP Blueprint", + "DMP-BLUEPRINT-CLONE": "New Clone of DMP Blueprint", "DMP-BLUEPRINT-EDIT": "Edit DMP Blueprint", "DATASET-PROFILES-NEW": "Yeni Veri Seti Şablonu", "DATASET-PROFILES-EDIT": "Veri Seti Şablonu Düzenle", @@ -834,6 +837,10 @@ "LOCKED-DIALOG":{ "TITLE": "DMP is locked", "MESSAGE":"Somebody else is modifying the DMP at this moment. If you would like to modify or view it, please come back later." + }, + "MIN-DESCRIPTIONS-DIALOG": { + "TITLE": "Min({{minMultiplicity}}) datasets needed using this template.", + "MESSAGE": "Add dataset." } }, "DATASET-OVERVIEW": { @@ -999,6 +1006,7 @@ "DMP-PROFILE-EDITOR": { "TITLE": { "NEW": "New DMP Blueprint", + "NEW-PROFILE-CLONE": "New Clone Of ", "EDIT": "Düzenle" }, "FIELDS": { @@ -1203,6 +1211,11 @@ "PUBLISHED": "Yayınlandı", "LAST-EDITED": "Son Düzenleme" }, + "ACTIONS": { + "CLONE": "Clone", + "DOWNLOAD-XML":"Download XML", + "DELETE": "Delete" + }, "UPLOAD": { "UPLOAD-XML": "İçeri Aktar", "UPLOAD-XML-FILE-TITLE": "Veri Yönetim Planı Şablonu İçeri Aktar", @@ -1277,6 +1290,10 @@ "SELECT-DATASET-TEMPLATES": "Veri Seti Şablonu Seçin", "RELATED-DATASET-TEMPLATES": "İlgili Veri Seti Şablonları" }, + "BLUEPRINT": { + "LIKE": "Search", + "STATUS": "Status" + }, "USERS": { "LABEL": "Arama", "ROLE": "Görev", @@ -1349,6 +1366,10 @@ "VIEW-MORE": "View more", "VIEW-LESS": "View less" } + }, + "MAX-DESCRIPTION-DIALOG": { + "TITLE": "Max datasets using this template.", + "MESSAGE": "Select another profile." } }, "DATASET-CREATE-WIZARD": { @@ -1949,5 +1970,11 @@ "DRAFT": "Taslak", "FINALIZED": "Tamamlandı", "DELETED": "Silindi" + }, + "BLUEPRINT-STATUS": { + "NONE": "None", + "DRAFT": "Draft", + "FINALIZED": "Finalized", + "DELETED": "Deleted" } }