Incorrect zh language file
Brought to you by:
choucrouteman
In View/lanuage/zh.inc.php
1.
line 135:
$LANG['langage'] = "英语 (Chinese)";
should be:
$LANG['langage'] = "中文 (Chinese)";
"英语" is "English" in Chinese
"中文" is "Chinese" in Chinese
2.
When the language is set to Chinese, In the Plan,
Calendar and Report pages, the responsible list looks like:
%s's 任务
%s's 任务
%s's 任务
%s's 任务
%s's 任务
%s's 任务
...
Search "%" and replace it with "%" to fix this problem
3.
line 370:
$LANG['tasks_from'] = "%s's 任务";
should be
$LANG['tasks_from'] = "%s的任务";
"'s" is the English grammar, in Chinese it should be "的"
Logged In: NO
thanks , it's very useful