locales.json
Copy Json
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"lang_code": {
"type": "string",
"description": "Language code"
},
"translation": {
"type": "string",
"description": "The value of the tranlation"
}
},
"required": [
"lang_code", "translation"
]
}
}