summaryrefslogtreecommitdiff
path: root/i18n
authorcniehaus <cniehaus>2002-12-26 13:16:41 (UTC)
committer cniehaus <cniehaus>2002-12-26 13:16:41 (UTC)
commitde5ee51277c336cf3a66226c09c8f3ad7d51c4d7 (patch) (unidiff)
tree5f2345c1e6ba08fb19e6012b41267cc874e3bad4 /i18n
parentbab08dc5acc08542fc6b7d5308be8dab4a166028 (diff)
downloadopie-de5ee51277c336cf3a66226c09c8f3ad7d51c4d7.zip
opie-de5ee51277c336cf3a66226c09c8f3ad7d51c4d7.tar.gz
opie-de5ee51277c336cf3a66226c09c8f3ad7d51c4d7.tar.bz2
zh_TW is back
Diffstat (limited to 'i18n') (more/less context) (ignore whitespace changes)
-rw-r--r--i18n/opie-i18n-zh-tw.control10
-rwxr-xr-xi18n/status.sh6
2 files changed, 13 insertions, 3 deletions
diff --git a/i18n/opie-i18n-zh-tw.control b/i18n/opie-i18n-zh-tw.control
new file mode 100644
index 0000000..51423df
--- a/dev/null
+++ b/i18n/opie-i18n-zh-tw.control
@@ -0,0 +1,10 @@
1Files: i18n/zh_TW/.directory i18n/zh_TW/*.qm
2Priority: optional
3Section: opie/i18n
4Maintainer: Carstem Niehaus <cniehaus@kde.org>
5Architecture: arm
6Arch: iPAQ
7Version: $QPE_VERSION-$SUB_VERSION
8Depends: opie-base ($QPE_VERSION), qpf-cyberbit-120-50-t10
9Description: i18n: Chinese (TW)
10 Chinese UI texts for OPIE environment.
diff --git a/i18n/status.sh b/i18n/status.sh
index 125d8a1..377244e 100755
--- a/i18n/status.sh
+++ b/i18n/status.sh
@@ -18,14 +18,14 @@ echo "unfinished: "
18unfi=`find $arg -name "*.ts" -exec cat {} \; | grep translation | grep type=\"unfinished\" | wc -l` 18unfi=`find $arg -name "*.ts" -exec cat {} \; | grep translation | grep type=\"unfinished\" | wc -l`
19echo $unfi", that means" `expr \( $strs - $unfi \) \* 100 / $strs`% "are done" 19echo $unfi", that means" `expr \( $strs - $unfi \) \* 100 / $strs`% "are done"
20echo "obsolete: " 20echo "obsolete: "
21obso=`find $arg -name "*.ts" -exec cat {} \; | grep translation | grep type=\"obsolete\" | wc -l` 21obso=`find $arg -name "*.ts" -exec cat {} \; | grep translation | grep type=\"obsolete\" | wc -l`
22echo $obso `expr \( $strs - $obso \) \* 100 / $strs`% 22echo $obso `expr \( $strs - $obso \) \* 100 / $strs`%
23 23
24if [ "foo" = "all" ] 24#if [ "foo" = "all" ]
25then 25#then
26 #from here on we will only look at the core-parts. All numbers have to be 0% if 26 #from here on we will only look at the core-parts. All numbers have to be 0% if
27 #the specific language will be in the official release. 27 #the specific language will be in the official release.
28 echo 28 echo
29 echo "Core:" 29 echo "Core:"
30 core_today=`grep translation $arg/today.ts | grep type=\"unfinished\" | wc -l` 30 core_today=`grep translation $arg/today.ts | grep type=\"unfinished\" | wc -l`
31 core_todo=`grep translation $arg/todolist.ts | grep type=\"unfinished\" | wc -l` 31 core_todo=`grep translation $arg/todolist.ts | grep type=\"unfinished\" | wc -l`
@@ -34,13 +34,13 @@ then
34 libopie=`grep translation $arg/libopie.ts | grep type=\"unfinished\" | wc -l` 34 libopie=`grep translation $arg/libopie.ts | grep type=\"unfinished\" | wc -l`
35 _core_today=`grep translation $arg/today.ts | wc -l` 35 _core_today=`grep translation $arg/today.ts | wc -l`
36 _core_todo=`grep translation $arg/todolist.ts | wc -l` 36 _core_todo=`grep translation $arg/todolist.ts | wc -l`
37 _core_addressbook=`grep translation $arg/addressbook.ts | wc -l` 37 _core_addressbook=`grep translation $arg/addressbook.ts | wc -l`
38 _core_datebook=`grep translation $arg/datebook.ts | wc -l` 38 _core_datebook=`grep translation $arg/datebook.ts | wc -l`
39 _libopie=`grep translation $arg/libopie.ts | wc -l` 39 _libopie=`grep translation $arg/libopie.ts | wc -l`
40#fi
40 41
41 echo "Today:" $core_today", that means" `expr $core_today \* 100 / $_core_today`% "needs to be done" 42 echo "Today:" $core_today", that means" `expr $core_today \* 100 / $_core_today`% "needs to be done"
42 echo "Datebook:" $core_datebook", that means" `expr $core_datebook \* 100 / $_core_datebook`% "needs to be done" 43 echo "Datebook:" $core_datebook", that means" `expr $core_datebook \* 100 / $_core_datebook`% "needs to be done"
43 echo "Todo:" $core_todo", that means" `expr $core_todo \* 100 / $_core_todo`% "needs to be done" 44 echo "Todo:" $core_todo", that means" `expr $core_todo \* 100 / $_core_todo`% "needs to be done"
44 echo "Addressbook:" $core_addressbook", that means" `expr $core_addressbook \* 100 / $_core_addressbook`% "needs to be done" 45 echo "Addressbook:" $core_addressbook", that means" `expr $core_addressbook \* 100 / $_core_addressbook`% "needs to be done"
45 echo "libopie:" $libopie", that means" `expr $libopie \* 100 / $_libopie`% "needs to be done" 46 echo "libopie:" $libopie", that means" `expr $libopie \* 100 / $_libopie`% "needs to be done"
46fi