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

.JSON - ネストされたReact-Intl (Strings)

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

ファイル拡張子

.json

API拡張

react_nested_json

インポート

はい

エクスポート

はい

複数形のサポート

はい

説明のサポート

いいえ

React Intlは、.jsファイルを使用してローカライズされたデータを保存します。Stringsを.JSONファイルに格納し、原文コードで参考資料を参照します。

アプリの設定によっては、.JSONファイルが複数の.JSONオブジェクトで複雑になる場合があります。ネストされた.JSONファイルは、ドットでキーレベルを区切ることによって処理されます。エクスポート時に、すべてのキーは再び分割され、ネストされた.JSON構造としてレンダリングされます。

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

コードサンプル

{
  "boolean_key": "--- true\n",
  "empty_string_translation": "",
  "key_with_description": "Check it!このキーは説明です!(少なくとも一部のファイル形式において)\
  "key_with_line-break": "This translations contains\na line-break.",
  "nested": {
    "deeply": {
      "key": "Hey, this key is nested even deeper."
    },
    "key": "このキーは名前空間内にネストされています。"
  },
  "null_translation": null,
  "pluralized_key": {
    "one": "複数形化が1つだけ見つかりました。"
    "other": "あなたは %s 個の複数形があります!"
    "zero": "あなたは複数形を持っていません。"
  },
  "sample_collection": [
    "first item"
    "second item"
    "third item"
  ],
  "simple_key": "私はシンプルなメッセージを持つシンプルなキーです。"
  "unverified_key": "この翻訳は検証待ちです。"(一部のフォーマットでは、このステータスにも対応しています)"
}

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.