支持文件类型 (Strings)

.JSON - 嵌套 React-Intl (Strings)

文本由 Phrase Language AI 从英语机器翻译而得。

文件扩展名

.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!这个键有一个描述!(至少在某些格式中是这样)\"
  "key_with_line-break": "此翻译包含\n一个换行符。",
  "nested": {
    "deeply": {
      "key": "嘿,这个键嵌套得更深了。"
    },
    "key": "这个键嵌套在一个命名空间中。"
  },
  "null_translation": null,
  "pluralized_key": {
    "one": "只找到一个复数形式。"
    "other": "哇,你有 %s 个复数形式!"
    "zero": "你没有复数形式。"
  },
  "sample_collection": [
    "first item",
    "second item",
    "third item"
  ],
  "simple_key": "一个简单的键,带有简单的信息。"
  "unverified_key": "此翻译尚未验证,正在等待验证。"(在某些格式中,我们也导出此状态)"
}

JSON 文件的复数形式

各种库中最常见的复数键消息格式:

"messages": {
    "one": "收到一条消息。"
    "other": "%s 条消息已收到。"
    "zero": "没有收到消息。"
}
这篇文章有帮助吗?

Sorry about that! In what way was it not helpful?

The article didn’t address my problem.
I couldn’t understand the article.
The feature doesn’t do what I need.
Other reason.

Note that feedback is provided anonymously so we aren't able to reply to questions.
If you'd like to ask a question, submit a request to our Support team.
Thank you for your feedback.