blob: 3982e0c22897c112b31c71c24a21295d72d4afcb (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#! /bin/sh
# Test msgconv on a PO file with previous msgids.
tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15
tmpfiles="$tmpfiles mco-test6.po"
cat <<\EOF > mco-test6.po
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#, fuzzy
#| msgid "© Frobby Inc."
msgid "(C) Frobby Inc."
msgstr "(C) Dingsbums GmbH"
#, fuzzy
#| msgid "full 360°"
msgid "full turn"
msgstr "Volle 360 Grad"
EOF
tmpfiles="$tmpfiles mco-test6.tmp mco-test6.out"
: ${MSGCONV=msgconv}
${MSGCONV} --to-code=ISO-8859-1 -o mco-test6.tmp mco-test6.po
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
tr -d '\r' < mco-test6.tmp > mco-test6.out
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
tmpfiles="$tmpfiles mco-test6.ok"
cat <<\EOF > mco-test6.ok
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
#, fuzzy
#| msgid "© Frobby Inc."
msgid "(C) Frobby Inc."
msgstr "(C) Dingsbums GmbH"
#, fuzzy
#| msgid "full 360°"
msgid "full turn"
msgstr "Volle 360 Grad"
EOF
: ${DIFF=diff}
${DIFF} mco-test6.ok mco-test6.out
result=$?
rm -fr $tmpfiles
exit $result
|