gentics / mesh-incubator

Project which is home for planned enhancements for Gentics Mesh
3 stars 0 forks source link

Allow for non translatable fields #79

Open Jotschi opened 7 years ago

Jotschi commented 7 years ago

Problem

Currently all fields are translatable. This may cause problems when translating values from one language to another. Currently the field values are essentially duplicated. This means that a field value must potentially changed manually across all languages. It would be good to specify the nature of a field within the schema (e.g.: translatable / non translatable).

Options

String field schema example:

{
      "name" : "name",
      "label" : "Name",
      "required" : true,
      "type" : "string",
      "translatable": true
}

Questions