new-horizons/NewHorizons/Schemas/translation_schema.json
github-actions[bot] 08f7bca26c Updated Schemas
2022-05-24 00:54:55 +00:00

29 lines
721 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Translation Schema",
"type": "object",
"additionalProperties": false,
"properties": {
"DialogueDictionary": {
"type": "object",
"description": "Translation table for dialogue",
"additionalProperties": {
"type": "string"
}
},
"ShipLogDictionary": {
"type": "object",
"description": "Translation table for Ship Log (entries, facts, etc)",
"additionalProperties": {
"type": "string"
}
},
"UIDictionary": {
"type": "object",
"description": "Translation table for UI elements",
"additionalProperties": {
"type": "string"
}
}
}
}