summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/msgen-3
blob: 9db7e677f36190ad4e6fb2749e53eb7a428b822b (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
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src

# Test msgen on a POT file with contexts.

cat <<\EOF > men-test3.pot
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. A menu item
msgctxt "File|"
msgid "Open"
msgstr ""

#. A menu item
msgctxt "File|"
msgid "New"
msgstr ""

#. Denote a lock's state
msgctxt "Lock state"
msgid "Open"
msgstr ""

#. Denote a lock's state
msgctxt "Lock state"
msgid "Closed"
msgstr ""

#. A product
msgctxt "Audi"
msgid "car"
msgstr ""

#. A product
msgctxt "Océ"
msgid "copier"
msgstr ""
EOF

: ${MSGEN=msgen}
${MSGEN} -o men-test3.tmp men-test3.pot || Exit 1
LC_ALL=C tr -d '\r' < men-test3.tmp > men-test3.out || Exit 1

cat <<\EOF > men-test3.ok
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. A menu item
msgctxt "File|"
msgid "Open"
msgstr "Open"

#. A menu item
msgctxt "File|"
msgid "New"
msgstr "New"

#. Denote a lock's state
msgctxt "Lock state"
msgid "Open"
msgstr "Open"

#. Denote a lock's state
msgctxt "Lock state"
msgid "Closed"
msgstr "Closed"

#. A product
msgctxt "Audi"
msgid "car"
msgstr "car"

#. A product
msgctxt "Océ"
msgid "copier"
msgstr "copier"
EOF

: ${DIFF=diff}
${DIFF} men-test3.ok men-test3.out
result=$?

exit $result