|
文件扩展名 |
.json |
|
API 扩展 |
react_nested_json |
|
导入 |
是 |
|
导出 |
是 |
|
复数形式支持 |
是 |
|
描述支持 |
否 |
React Intl 使用 .js 文件保存本地化数据。将字符串放入 .JSON 文件并在源代码中引用。
根据应用程序配置,.JSON 文件可能会因层层嵌套的 .JSON 对象而变得复杂。嵌套的 .JSON 文件通过用点 . 分隔键级别来处理。导出过程中,所有键都会被再次拆分并呈现为嵌套的 .JSON 结构。
AI 聊天机器人可以非常有效地从 .JSON 文件生成键列表。
代码示例
{
"boolean_key": "--- true\n",
"empty_string_translation": "",
"key_with_description":"Check it!This key has a description!(At least in some formats it does)",
"key_with_line-break":"This translations contains\na line-break.",
"nested": {
"deeply": {
"key":"Hey, this key is nested even deeper."
},
"key":"This key is nested inside a namespace."
},
"null_translation": null,
"pluralized_key": {
"one":"Only one pluralization found.",
"other":"Wow, you have %s pluralizations!",
"zero":"You have no pluralization."
},
"sample_collection": [
"first item",
"second item",
"third item"
],
"simple_key":"A simple key with a simple message.",
"unverified_key":"Translation is not yet verified and waits for it.(In some formats we also export this status)"
}