summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/msgexec-5
blob: b83a6aa907ad7dffcbbd426719fd50e52716f08a (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src

# Test msgexec on a PO file with plurals.

cat <<\EOF > mex-test5.po
msgid ""
msgstr ""
"Content-Type: text/plain; charset=ASCII\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"

#, c-format
msgid "'Your command, please?', asked the waiter."
msgstr "'Votre commande, s'il vous plait', dit le garcon."

# Les gateaux allemands sont les meilleurs du monde.
#, c-format
#| msgid "a piece of bread"
#| msgid_plural "%d pieces of bread"
msgid "a piece of cake"
msgid_plural "%d pieces of cake"
msgstr[0] "un morceau de gateau"
msgstr[1] "%d morceaux de gateau"

# Reverse the arguments.
#, c-format
msgid "%s is replaced by %s."
msgstr "%2$s remplace %1$s."
EOF

cat <<\EOF > mex-test5.sh
#! /bin/sh
echo "========================= $MSGEXEC_LOCATION =========================" | LC_ALL=C tr -d '\r'
if test -n "${MSGEXEC_MSGCTXT+set}"; then
  echo "context: $MSGEXEC_MSGCTXT" | LC_ALL=C tr -d '\r'
fi
cat <<MEOF
$MSGEXEC_MSGID
$MSGEXEC_MSGID_PLURAL
$MSGEXEC_PLURAL_FORM
$MSGEXEC_PREV_MSGID
$MSGEXEC_PREV_MSGID_PLURAL
---
MEOF
cat
echo | LC_ALL=C tr -d '\r'
exit 0
EOF
chmod a+x mex-test5.sh

: ${MSGEXEC=msgexec}
LC_ALL=C \
${MSGEXEC} -i mex-test5.po ./mex-test5.sh > mex-test5.out 2> mex-test5.err
result=$?
cat mex-test5.err | grep -v 'warning: Locale charset' | grep -v '^ '
test $result = 0 || { Exit 1; }

cat <<\EOF > mex-test5.ok
========================= mex-test5.po:2 =========================





---
Content-Type: text/plain; charset=ASCII
Plural-Forms: nplurals=2; plural=(n > 1);

========================= mex-test5.po:8 =========================
'Your command, please?', asked the waiter.




---
'Votre commande, s'il vous plait', dit le garcon.
========================= mex-test5.po:16 =========================
a piece of cake
%d pieces of cake
0
a piece of bread
%d pieces of bread
---
un morceau de gateau
========================= mex-test5.po:16 =========================
a piece of cake
%d pieces of cake
1
a piece of bread
%d pieces of bread
---
%d morceaux de gateau
========================= mex-test5.po:22 =========================
%s is replaced by %s.




---
%2$s remplace %1$s.
EOF

: ${DIFF=diff}
${DIFF} mex-test5.ok mex-test5.out
result=$?

exit $result