mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
29 lines
721 B
JSON
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"
|
|
}
|
|
}
|
|
}
|
|
} |