dynamicsmobile
Version:
Allows development of off-line mobile and web business apps over the Dynamics Mobile platform. More info on https://www.dynamicsmobile.com
48 lines • 1.36 kB
JSON
{
"definitions": {},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://dynamicsmobile.com/schema/json/translations.json",
"additionalProperties": false,
"title": "Dynamics Mobile i18n",
"defaultSnippets": [
{
"label": "Resources",
"description": "Add resources prop",
"body": {
"resources": []
}
}
],
"type": "object",
"properties": {
"resources": {
"type": "array",
"items": {
"defaultSnippets": [
{
"label": "New i18n Entry",
"description": "Creates translation entry",
"body": {
"name": "$1",
"text": "$2"
}
}
],
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"name",
"text"
]
}
}
}
}