summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/msgconv-2
blob: 5e4e027d63e14fc65206a5c0441b6465e3226fc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src

# Test conversion from UTF-8 to BIG5.
# Test that encoding names are case insensitive.

cat <<\EOF > mco-test2.po
# Chinese translation for GNU gettext messages.
#
msgid ""
msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: src/msgcmp.c:155 src/msgmerge.c:273
msgid "exactly 2 input files required"
msgstr "此功能需要恰好指定兩個輸入檔"
EOF

: ${MSGCONV=msgconv}
${MSGCONV} -t Big5 -o mco-test2.out mco-test2.po || Exit 1

cat <<\EOF > mco-test2.ok
# Chinese translation for GNU gettext messages.
#
msgid ""
msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=BIG5\n"
"Content-Transfer-Encoding: 8bit\n"

#: src/msgcmp.c:155 src/msgmerge.c:273
msgid "exactly 2 input files required"
msgstr "\ݭnnwӿJ"
EOF

: ${DIFF=diff}
# Redirect stdout, so as not to fill the user's screen with non-ASCII bytes.
${DIFF} mco-test2.ok mco-test2.out >/dev/null
result=$?

exit $result