Created
November 29, 2011 01:34
-
-
Save Fandora/1402942 to your computer and use it in GitHub Desktop.
字典檔範例
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
| 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