|
파일 확장명 |
.ini |
|
API 확장 |
ini |
|
가져오기 |
예 |
|
내보내기 |
예 |
|
복수형 지원 |
아니요 |
|
설명 지원 |
아니요 |
.INI 파일은 다양한 플랫폼의 애플리케이션에서 널리 사용됩니다. .INI 파일은 .XML 및 .JSON과 같은 다른 파일 형식만큼 엄격한 구성 규칙을 가지고 있지는 않지만, 대부분의 .INI 파일은 =(으)로 구분된 여러 키-값 쌍으로 구성됩니다. INI 파일의 번역 및 현지화를 간소화하는 데 도움이 되는 내장 필터입니다.
코드 샘플
boolean_key = --- true\n empty_string_translation = key_with_description = Check it out! 이 키에는 설명이 있습니다! (최소 일부 형식으로) null_translation = pluralized_key.one = Only one kitten found. pluralized_key.other = Wow, you have %s kittens! pluralized_key.zero = You have no kittens. sample_collection = ---\n- first item\n- second item\n- third item\n simple_key = Simple key, simple message, so simple. unverified_key = 이 번역은 아직 확인되지 않았으며 기다리고 있습니다. (일부 형식에서는 이 상태도 내보냅니다.) [key_with_line\-break] key_with_line-break = This translations contains\na line-break. [nested] deeply.key = Wow, this key is nested even deeper. key = 이 키는 네임스페이스 내에 중첩되어 있습니다.