サポートするファイル形式(Strings)

.JSON - Nested (Strings)

本コンテンツはPhrase Language AIの機械翻訳により、英語から翻訳されています。

ファイル拡張子

.json

API拡張

nested_json

インポート

はい

エクスポート

はい

複数形のサポート

はい

説明のサポート

いいえ

フォーマットオプション

enable_pluralization

Nested JSONは、.JSONオブジェクトの値を大量に含んでいる.JSONファイルのことです。Simple JSONと比較して、Nested JSONはオブジェクトを異なるレイヤーに分離する点で明確であり、メンテナンスが簡単です。キー はレベルをピリオド.で区切されて保存されます。エクスポート時に、すべてのキーは再び分割され、本来のNested .JSON構造としてレンダリングされます。

AIチャットボットは、.JSONファイルからキーの一覧を生成するのに非常に効果的です。

ファイル形式オプション

識別子

enable_pluralization

タイプ

ブール

アップロード

はい

ダウンロード

いいえ

デフォルト

true

概要

複数化されたキーの検出を有効にします。一致するキーはすべて複数化されたキーとして保持されます。

コードサンプル

{
  "boolean_key": "--- true\n",
  "empty_string_translation": "",
  "key_with_description":"ご覧ください!このキーは説明です。(少なくとも一部のファイル形式において)",
  "key_with_line-break":"This translations contains\na line-break.",
  "nested": {
    "deeply": {
      「key」:"このキーはさらに深くネストされています。"
    },
    "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":"シンプルなメッセージのシンプルなキーです。",
  "unverified_key":「この翻訳は検証待ちです。」(一部のフォーマットでは、このステータスにも対応しています)
}

複数形

ファイル形式では、名前付きカテゴリを使用して、キーのさまざまな複数形を識別します。以下のカテゴリは複数形用に予約されています。

.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.