文件扩展名 |
.json |
API 扩展 |
nested_json |
导入 |
是 |
导出 |
是 |
复数形式支持 |
是 |
描述支持 |
否 |
格式选项 |
enable_pluralization |
Nested JSON 是 JSON 文件,只是其一大部分值是其他 .JSON 对象。与 Simple JSON 相比,Nestted JSON 更容易理解,因为它将对象分解为不同的层,更易于维护。存储的键=%用点分隔级别。
在导出过程中,所有键都会被拆分并在原始嵌套的 .JSON 结构中呈现。
AI 聊天机器人可以非常有效地从 .JSON 文件生成键列表。
格式选项
标识符 |
enable_pluralization |
类型 |
布尔值 |
上传 |
是 |
下载 |
否 |
默认 |
true |
说明 |
启用复数键检测。所有匹配的键将作为复数键保留。 |
代码示例
{ "boolean_key": "--- true\n", "empty_string_translation": "", "key_with_description":"Check it out!This key has a description!(At least in some formats)", "key_with_line-break":"This translations contains\na line-break.", "nested": { "deeply": { "key":"Wow, 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":"Just a simple key with a simple message.", "unverified_key":"This translation is not yet verified and waits for it.(In some formats we also export this status)" }
此格式使用命名的类别来标识键的不同复数形式。以下类别作为复数形式保留:
.zero | .one | .two | .few | .many | .other
正确识别、保留和标记复数键的名称示例:
-
inbox.messages.notification.one
-
inbox.messages.notification.other