Archivos JSON de go-i18n¶
Added in version 4.1.
Distinto en la versión 4.16: Support for v2 variant of this format was added.
go-i18n translations are monolingual, so it is recommended to specify a base file with (what is most often the) English strings.
Nota
Weblate supports the go-i18n JSON v1 and v2 variants. Please choose correct file format matching your environment.
Ver también
JSON, go-i18n, Updating target-language files, Personalizar la salida de JSON, Limpieza de archivos de traducción,
Archivos de ejemplo¶
Example file v1:
[
{
"id": "hello",
"description": "Description",
"translation": "Ahoj světe!\n"
},
{
"id": "orangutan",
"description": "Description",
"translation": {
"one": "Orangutan has {{.Count}} banana.\n",
"other": "Orangutan has {{.Count}} bananas.\n"
}
},
{
"id": "try",
"description": "Description",
"translation": ""
},
{
"id": "thanks",
"description": "Description",
"translation": ""
}
]
Example file v2:
{
"hello": "Ahoj světe!\n",
"orangutan": {
"description": "Description",
"one": "Orangutan has {{.Count}} banana.\n",
"other": "Orangutan has {{.Count}} bananas.\n"
},
"try": {
"description": "Description",
"other": ""
},
"thanks": {
"description": "Description",
"other": ""
}
}
Configuración de Weblate¶
Typical Weblate Configuración de componentes for v1 |
|
---|---|
Máscara de archivos |
|
Archivo de base monolingüe |
|
Plantilla para traducciones nuevas |
Empty |
Formato de archivo |
go-i18n v1 JSON file |
Typical Weblate Configuración de componentes for v2 |
|
---|---|
Máscara de archivos |
|
Archivo de base monolingüe |
|
Plantilla para traducciones nuevas |
Empty |
Formato de archivo |
go-i18n v2 JSON file |