Skip to content

Instantly share code, notes, and snippets.

@Fandora
Created November 29, 2011 01:34
Show Gist options
  • Select an option

  • Save Fandora/1402942 to your computer and use it in GitHub Desktop.

Select an option

Save Fandora/1402942 to your computer and use it in GitHub Desktop.
字典檔範例
var zhTW = {
_name : "繁體中文"
, home : "首頁"
, contactUs : "聯繫我們"
, feedback : "意見回饋"
};
var en = {
_name : "English"
, home : "home"
, contactUs : "contact us"
, feedback : "feedback"
}
module.exports = {
"zh-TW" : zhTW
, "en-US" : en
, "en" : en
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment