Skip to content

Instantly share code, notes, and snippets.

Created December 7, 2012 01:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/f259702a8dbb3e451cae to your computer and use it in GitHub Desktop.
Save anonymous/f259702a8dbb3e451cae to your computer and use it in GitHub Desktop.
Easy i18n Message
var i18n = {
Lang: {
'WrongAns': ['答錯,請重新填寫。', '回答が間違います、改正してください。'],
'Undone': ['尚未填寫完畢。', '回答しない問題があるのでチェックしてください。']
},
getMsg: function (msg, lang) {
return this.Lang[msg][lang];
}
}
alert(i18n.getMsg('Undone', 0)); //中文
alert(i18n.getMsg('WrongAns', 1)); //日文
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment