|
파일 확장명 |
.json |
|
API 확장 |
angular_translate |
|
가져오기 |
예 |
|
내보내기 |
예 |
|
복수형 지원 |
예 |
|
설명 지원 |
아니요 |
Angular Translate는 AngularJS 애플리케이션을 위해 설계된 현지화/국제화 모듈입니다. Angular Translate는 AngularJS와 원활하게 통합되며 개발자에게 현지화된 문자열을 앱에 로드할 수 있는 유연한 옵션을 제공합니다. Angular Translate의 표준 현지화 파일 형식 .JSON입니다. .JSON 파일의 데이터는 키 값 문자열 쌍으로 존재합니다.
AI 채팅봇은 .JSON 파일에서 키 목록 생성하는 데 매우 효과적입니다.
코드 샘플
{
"boolean_key": "--- true\n",
"empty_string_translation": "",
"key_with_description": "Key description!(in some formats)",
"key_with_line-break": "This translations contains\na line-break.",
"nested.deeply.key": "I am nested deeply.",
"nested.key": "And that key is nested inside a namespace.",
"null_translation": null,
"pluralized_key": "키 {itemCount, plural, =0 {항목이 없습니다} =1 {항목이 하나 있습니다} other {항목 #개가 있습니다}}.",
"sample_collection": "---\n- 첫 번째 항목\n- 두 번째 항목\n- third item\n",
"simple_key": "I am a simple key with a simple message.",
"unverified_key": "아직 확인되지 않음."}} { (일부 형식에서는 이 상태도 내보냅니다.)"
}