diff --git a/backend/i18n/frontend_en.json b/backend/i18n/frontend_en.json index 0898103a9..743ebd43d 100644 --- a/backend/i18n/frontend_en.json +++ b/backend/i18n/frontend_en.json @@ -204,6 +204,7 @@ "common.backups": "Backups", "common.bytes": "bytes", "common.cancel": "Cancel", + "common.category": "Category", "common.clear": "Clear", "common.clientId": "Client Id", "common.clients": "Clients", diff --git a/backend/i18n/frontend_it.json b/backend/i18n/frontend_it.json index a10b1c580..efb9ce2c8 100644 --- a/backend/i18n/frontend_it.json +++ b/backend/i18n/frontend_it.json @@ -204,6 +204,7 @@ "common.backups": "Backup", "common.bytes": "byte", "common.cancel": "Annulla", + "common.category": "Category", "common.clear": "Pulisci", "common.clientId": "Id Client", "common.clients": "Client", diff --git a/backend/i18n/frontend_nl.json b/backend/i18n/frontend_nl.json index b659aab99..a12ec2bcc 100644 --- a/backend/i18n/frontend_nl.json +++ b/backend/i18n/frontend_nl.json @@ -204,6 +204,7 @@ "common.backups": "Back-ups", "common.bytes": "bytes", "common.cancel": "Annuleren", + "common.category": "Category", "common.clear": "Wissen", "common.clientId": "Client-ID", "common.clients": "Clients", diff --git a/backend/i18n/source/frontend_en.json b/backend/i18n/source/frontend_en.json index 0898103a9..743ebd43d 100644 --- a/backend/i18n/source/frontend_en.json +++ b/backend/i18n/source/frontend_en.json @@ -204,6 +204,7 @@ "common.backups": "Backups", "common.bytes": "bytes", "common.cancel": "Cancel", + "common.category": "Category", "common.clear": "Clear", "common.clientId": "Client Id", "common.clients": "Clients", diff --git a/backend/src/Squidex.Shared/Texts.it.resx b/backend/src/Squidex.Shared/Texts.it.resx index e9783eebf..e93b41b0e 100644 --- a/backend/src/Squidex.Shared/Texts.it.resx +++ b/backend/src/Squidex.Shared/Texts.it.resx @@ -176,7 +176,7 @@ Hai raggiunto la dimensione massima consentito per le risorse. - Assets is referenced by a content and cannot be deleted. + La risorsa è collegata ad un contenuto pertanto non può essere cancellata. E' in esecuzione una altro processo di backup. @@ -476,7 +476,7 @@ {count} Collegamenti(s) - Content is referenced by another content and cannot be deleted. + Il contenuto è collegato ad un altro contenuto e pertanto non può essere cancellato. Il contenuto singleton non può essere aggiornato @@ -512,7 +512,7 @@ Non può avere valori duplicati. - Validation failed with internal error. + Non è stato possibile validare a causa di un errore interno. Deve essere esattamente {value}. @@ -677,7 +677,7 @@ La query Json non è valida: {message} - Entity ({id}) already exists. + L'entità ({id}) esiste già. L'entità ({id}) è stata cancellata. diff --git a/frontend/app/features/schemas/pages/schemas/schema-form.component.html b/frontend/app/features/schemas/pages/schemas/schema-form.component.html index 2fe8b4e35..49e66aced 100644 --- a/frontend/app/features/schemas/pages/schemas/schema-form.component.html +++ b/frontend/app/features/schemas/pages/schemas/schema-form.component.html @@ -14,17 +14,17 @@
- + - + {{ 'schemas.schemaNameHint' | sqxTranslate }}
- +
@@ -65,6 +65,21 @@
+ + {{ 'schemas.nameWarning' | sqxTranslate }} + + + +
+ + + +
+
+
- - - {{ 'schemas.nameWarning' | sqxTranslate }} - diff --git a/frontend/app/features/schemas/pages/schemas/schema-form.component.ts b/frontend/app/features/schemas/pages/schemas/schema-form.component.ts index 70edb0fed..4dfdd3cec 100644 --- a/frontend/app/features/schemas/pages/schemas/schema-form.component.ts +++ b/frontend/app/features/schemas/pages/schemas/schema-form.component.ts @@ -31,8 +31,8 @@ export class SchemaFormComponent implements OnInit { constructor( public readonly apiUrl: ApiUrlConfig, public readonly appsState: AppsState, - private readonly formBuilder: FormBuilder, - private readonly schemasState: SchemasState + public readonly schemasState: SchemasState, + private readonly formBuilder: FormBuilder ) { } diff --git a/frontend/app/shared/components/schema-category.component.html b/frontend/app/shared/components/schema-category.component.html index bb9dc6217..626587e59 100644 --- a/frontend/app/shared/components/schema-category.component.html +++ b/frontend/app/shared/components/schema-category.component.html @@ -12,7 +12,14 @@
-

{{schemaCategory.name}}

+

+ + {{schemaCategory.name}} + + + {{ 'i18n:common.schemas' | sqxTranslate }} + +

@@ -31,7 +38,6 @@