egroupware/admin
zhangweiwu cf19aae187 I merged the traditional Chinese translation into the simplified Chinese
translation file (only those not translated in simplified Chinese).

This is because
1) most simplified Chinese readers can read traditional
Chinese. If some phrase doesn't have simplified Chinese translation,
egroupware better fall back to traditional Chinese then English.
2) Translation can be easier (just pick up the unfamiliar traditional
translation and change to simplified form)

The change is made by using
> find . -type d -name "setup" -exec /tmp/merge_tradition.sh {} \;

where merge_tradition.sh is:

#!/bin/sh
cd $1
if [ -f phpgw_zh.lang ] && [ -f phpgw_zt.lang ]; then
mv phpgw_zh.lang phpgw_zh.lang.old
join -a 1 -t "	" phpgw_zt.lang phpgw_zh.lang.old | \
        awk -F "	" \
       '{ OFS = FS; if (NF == 7) print $1, $5, $6, $7; else print $0 ;}' \
                > phpgw_zh.lang
fi

Kiang if you like the idea you can merge my translation to your lang
file too. And it's even better if the language engine can be changed in
the way that, as a phrase has no translation for current language,
choose the nearest language before falling back to English. Say, when no
translation in zh, use zt before trying English.

Could it be better that this apply to pt too? (pt-br and pt)
2004-06-09 17:01:42 +00:00
..
doc Update other formats 2004-01-26 05:44:00 +00:00
inc added possibility to assign a color and an icon to a global category 2004-05-29 10:16:52 +00:00
js/jscode strip js code from template 2004-02-26 09:03:20 +00:00
setup I merged the traditional Chinese translation into the simplified Chinese 2004-06-09 17:01:42 +00:00
templates added possibility to assign a color and an icon to a global category 2004-05-29 10:16:52 +00:00
index.php small changes in the header 2004-01-25 22:08:51 +00:00
navbar-create.php make the phpgw Version-0_9_16-branch HEAD 2003-08-28 14:16:30 +00:00
navbar-sel.php Added in a $phpgw_info = array() before header is called up. There is a possiablity of people passing a multidemension array through the URL to change the variables in phpgw_info array. Any questions, please ask me. (jengo) 2000-11-21 00:41:31 +00:00
phpinfo.php small changes in the header 2004-01-25 22:08:51 +00:00
testbutton.php small changes in the header 2004-01-25 22:08:51 +00:00