지원되는 파일 유형(Strings)

.JSON - go-i18n (Strings)

컨텐츠는 영어 텍스트를 Phrase Language AI를 이용해 기계 번역한 것입니다.

파일 확장명

.json

API 확장

go_i18n

가져오기

내보내기

복수형 지원

설명 지원

아니요

Go-i18n은 Go를 위해 설계된 국제화 라이브러리입니다. 지원되는 현지화 파일 형식에는 .JSON, .YAML, .TOML 등이 있습니다. go-i18n에서 사용하는 JSON 파일은 go-18n .JSON이 종종 시리즈 JSON 개체로 구성된 JSON 어레이로 존재하기 때문에 다른 현지화 및 국제화 플랫폼과 다릅니다. 각 JSON 객체는 ID와 같은 키로 인증된 번역 ID가 필요한 문자열을 나타냅니다.

AI 채팅봇은 .JSON 파일에서 키 목록 생성하는 데 매우 효과적입니다.

go-i18n on GitHub

코드 샘플

[
  {
    "id": "boolean_key",
    "translation": "--- true\n"
  },
  {
    "id": "empty_string_translation",
    "translation": ""
  },
  {
    "id": "key_with_description",
    "translation": "검토하세요! 이 키에는 설명이 있습니다! (최소 일부 형식으로)"
  },
  {
    "id": "key_with_line-break",
    "translation": "이 번역에는\na line-break가 포함되어 있습니다."
  },
  {
    "id": "nested.deeply.key",
    "translation": "Wow, 이 키 더 깊게 중첩되어 있습니다."
  },
  {
    "id": "nested.key",
    "translation": "이 키는 네임스페이스 내에 중첩되어 있습니다."
  },
  {
    "id": "null_translation",
    "translation": null
  },
  {
    "id": "pluralized_key",
    "translation": {
      "one": "복수화만 발견되었습니다.",
      "other": "Wow, you have pluralizations!",
      "zero": "You have no pluralization."
    }
  },
  {
    "id": "sample_collection",
    "번역": "---\n- 첫 번째 항목\n- 두 번째 항목\n- 세 번째 항목\n"
  },
  {
    "id": "simple_key",
    "번역": "간단한 키, 간단한 메시지, 아주 간단합니다."
  },
  {
    "id": "unverified_key",
    "translation": "이 번역은 아직 확인되지 않았으며 기다리고 있습니다. (일부 형식에서는 이 상태도 내보냅니다.)"
  }
]
도움이 되었습니까?

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.