지원되는 파일 유형(Strings)

.JSON - Nested 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! This key has a description! (At least in some formats it does)",
  "key_with_line-break": "This translations contains\na line-break.",
  "nested": {
    "deeply": {
      "key": "Hey, 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": "A simple key with a simple message.",
  "unverified_key": "Translation is not yet verified and waits for it. (In some formats we also export this status)"
}

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.