Last active
October 23, 2015 10:33
-
-
Save AyaMorisawa/c6f38dc4c0fc51c231b3 to your computer and use it in GitHub Desktop.
JSON Locale definition
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "langCode": "ja", | |
| "langName": "Japanese", | |
| "groups": [{ | |
| "groupName": "Menu", | |
| "translates": [{ | |
| "source": "Settings", | |
| "translate": "設定" | |
| }, { | |
| "source": "Exit", | |
| "translate": "終了" | |
| }] | |
| }, { | |
| "groupName": "Settings", | |
| "translates": [{ | |
| "source": "Theme", | |
| "translate": "テーマ" | |
| }, { | |
| "source": "Font", | |
| "translate": "フォント" | |
| }] | |
| }] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| langCode: ja | |
| langName: Japanese | |
| groups: | |
| - groupName: Menu | |
| translates: | |
| - source: Settings | |
| translate: 設定 | |
| - source: Exit | |
| translate: 終了 | |
| - groupName: Settings | |
| translates: | |
| - source: Theme | |
| translate: テーマ | |
| - source: Font | |
| translate: フォント |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface ILocale { | |
| langCode: string; | |
| langName: string; | |
| groups: { | |
| groupName: string, | |
| translates: { | |
| source: string, | |
| translate: string | |
| }[] | |
| }[]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment