支持文件类型 (Strings)

.JSON - Simple (Strings)

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

文件扩展名

.json

API 扩展

simple_json

导入

导出

复数形式支持

描述支持

格式选项

enable_pluralization

.JSON(JavaScript 对象表示法)最初仅为 JavaScript 设计,但它已成为与 .XML、.YAML、.Properties 等并行的标准交换文件格式。JSON 由键-值对组成,用方括号括起来。值可以是字符串、数字或对象(即一个或多个用方括号括起来的键-值对)。Simple 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.",
  "nested.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

JSON 文件复数

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

"messages": {
    "one":"One message received.",
    "other": "%s messages received.",
    "zero":"No messages received."
}
这篇文章有帮助吗?

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.