Skip to content

Instantly share code, notes, and snippets.

@AyaMorisawa
Last active October 23, 2015 10:33
Show Gist options
  • Select an option

  • Save AyaMorisawa/c6f38dc4c0fc51c231b3 to your computer and use it in GitHub Desktop.

Select an option

Save AyaMorisawa/c6f38dc4c0fc51c231b3 to your computer and use it in GitHub Desktop.
JSON Locale definition
{
"langCode": "ja",
"langName": "Japanese",
"groups": [{
"groupName": "Menu",
"translates": [{
"source": "Settings",
"translate": "設定"
}, {
"source": "Exit",
"translate": "終了"
}]
}, {
"groupName": "Settings",
"translates": [{
"source": "Theme",
"translate": "テーマ"
}, {
"source": "Font",
"translate": "フォント"
}]
}]
}
langCode: ja
langName: Japanese
groups:
- groupName: Menu
translates:
- source: Settings
translate: 設定
- source: Exit
translate: 終了
- groupName: Settings
translates:
- source: Theme
translate: テーマ
- source: Font
translate: フォント
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