diff --git a/generators/entity-server/templates/ui/widgets/detailsWidget/src/i18n/locales/it.json.ejs b/generators/entity-server/templates/ui/widgets/detailsWidget/src/i18n/locales/it.json.ejs new file mode 100644 index 00000000..ef8462c1 --- /dev/null +++ b/generators/entity-server/templates/ui/widgets/detailsWidget/src/i18n/locales/it.json.ejs @@ -0,0 +1,19 @@ +<%# { "useBluePrint": true } -%> +{ + "common": { + "couldNotFetchData": "Non è stato possibile caricare i dati dell'entità", + "widgetName": "Dettagli a proposito di '{{widgetNamePlaceholder}}'", + "name": "Nome", + "value": "Valore", + "loading": "Caricamento in corso...", + "notAuthenticated": "L'utente non è autenticato.", + }, + "entities": { + "<%= entityInstance %>": { + "id": "ID", + <%_ fields.forEach(function(field){ _%> + "<%= field.fieldName %>": "entità.<%= entityInstance %>.<%= field.fieldName %>", + <%_ }) _%> + } + } +} diff --git a/generators/entity-server/templates/ui/widgets/formWidget/src/i18n/locales/it.json.ejs b/generators/entity-server/templates/ui/widgets/formWidget/src/i18n/locales/it.json.ejs new file mode 100644 index 00000000..a6a879bd --- /dev/null +++ b/generators/entity-server/templates/ui/widgets/formWidget/src/i18n/locales/it.json.ejs @@ -0,0 +1,37 @@ +<%# { "useBluePrint": true } -%> +{ + "error": { + "dataLoading": "Errore durante la connessione al server" + }, + "common": { + "save": "Salva", + "dataSaved": "<%= entityNameCapitalized %> salvato/a con successo", + "dataDeleted": "<%= entityNameCapitalized %> eliminato/a con successo", + "notAuthenticated": "L'utente non è autenticato.", + "selectFile": "Carica nuovo file", + "selectImageFile": "Carica nuova immagine", + "download": "Scarica", + "cancel": "Annulla", + "delete": "Elimina", + "yes": "Si", + "no": "No" + }, + "validation": { + "required": "{{field}} è mandatario" + }, + "entities": { + "<%= entityInstance %>": { + "deleteDialog": { + "title": "Elimina <%= entityInstance %>", + "description": "Sei sicuro/a?" + }, + "notFound": "<%= entityNameCapitalized %> non trovato/a", + "deleted": "<%= entityNameCapitalized %> eliminato/a", + "id": "ID", + <%_ fields.forEach(function(field){ _%> + "<%= field.fieldName %>": "entità.<%= entityInstance %>.<%= field.fieldName %>", + <%_ }) _%> + } + } +} + diff --git a/generators/entity-server/templates/ui/widgets/tableWidget/src/i18n/locales/it.json.ejs b/generators/entity-server/templates/ui/widgets/tableWidget/src/i18n/locales/it.json.ejs new file mode 100644 index 00000000..a3fdd3cd --- /dev/null +++ b/generators/entity-server/templates/ui/widgets/tableWidget/src/i18n/locales/it.json.ejs @@ -0,0 +1,51 @@ +<%# { "useBluePrint": true } -%> +{ + "error": { + "dataLoading": "Errore durante la connessione al server" + }, + "common": { + "couldNotFetchData": "Non è stato possibile caricare i dati dell'entità", + "notAuthenticated": "L'utente non è autenticato.", + "loadingMore": "Caricamento in corso...", + "download": "Scarica file", + "dataDeleted": "<%= entityNameCapitalized %> eliminato/a con successo", + "yes": "Si", + "no": "No" + }, + "pagination": { + "ariaLabels": { + "firstPage": "prima pagina", + "previousPage": "pagina precedente", + "nextPage": "pagina successiva", + "lastPage": "ultima pagina" + } + }, + "filters": { + "field": "Campo", + "value": "Valore", + "addFilter": "Aggiungi filtro", + "clearFilters": "Rimuovi filtri", + "filter": "Filtro", + "operator": "Operatore", + "operators": { + "equals": "è uguale a", + "in": "in", + "specified": "specificato", + "unspecified": "non specificato", + "contains": "contiene" + } + }, + "entities": { + "<%= entityInstance %>": { + "deleteDialog": { + "title": "Elimina <%= entityInstance %>", + "description": "Sei sicuro/a?" + }, + "noItems": "Nessun <%= entityInstancePlural %> disponibile", + "id": "ID", + <%_ fields.forEach(function(field){ _%> + "<%= field.fieldName %>": "entità.<%= entityInstance %>.<%= field.fieldName %>", + <%_ }) _%> + } + } +}