summaryrefslogtreecommitdiffstats
path: root/templates/content/js/com.cnprog.i18n.js
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-08-05 22:49:44 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2009-08-05 22:49:44 -0400
commit026541b6a70cd183d49ffec205232cfb0b205b25 (patch)
tree53397ba83b39bbfc9d567840b68c251e6cdd8d2f /templates/content/js/com.cnprog.i18n.js
parent146b90ec874a4f3eee0a31902a90e4c2d89bc729 (diff)
downloadaskbot-026541b6a70cd183d49ffec205232cfb0b205b25.tar.gz
askbot-026541b6a70cd183d49ffec205232cfb0b205b25.tar.bz2
askbot-026541b6a70cd183d49ffec205232cfb0b205b25.zip
added anonymous posting, per-question subscription and fixes by Pothers and some more, see development.log
Diffstat (limited to 'templates/content/js/com.cnprog.i18n.js')
-rw-r--r--templates/content/js/com.cnprog.i18n.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/content/js/com.cnprog.i18n.js b/templates/content/js/com.cnprog.i18n.js
index 2d8c90a6..90166eec 100644
--- a/templates/content/js/com.cnprog.i18n.js
+++ b/templates/content/js/com.cnprog.i18n.js
@@ -1,5 +1,3 @@
-// Evgeny Fadeev evgeny.fadeev@gmail.com localized for english and chinese
-// i18nLang variable must be set in html header to extract correct language
var i18nZh = {
'insufficient privilege':'用户权限不在操作范围',
'cannot pick own answer as best':'不能设置自己的回答为最佳答案',
@@ -59,6 +57,10 @@ var i18nZh = {
};
var i18nEn = {
+ '>15 points requried to upvote':'>15 points requried to upvote ',
+ 'tags cannot be empty':'please enter at least one tag',
+ 'anonymous users cannot vote':'anonymous users cannot vote ',
+ 'anonymous users cannot select favorite questions':'anonymous users cannot select favorite questions ',
'to comment, need': 'to comment, need reputation ',
'please see':'please see ',
'community reputation points':' ',
@@ -84,7 +86,7 @@ var i18nEn = {
var i18n = {
'en':i18nEn,
- 'zh':i18nZh
+ 'zh_CN':i18nZh
};
var i18n_dict = i18n[i18nLang];