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

# Test msgcat on a PO file with previous msgids.

cat <<\EOF > mcat-test15.in
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. TRANSLATORS: An error message.
#: src/args.c:242
#, fuzzy, c-format
#| msgid "too many arguments"
msgid "Too many arguments."
msgstr "zu viele Argumente"

#. TRANSLATORS: An error message.
#: src/args.c:247
#, fuzzy, c-format
#| msgid "too many arguments"
msgid "Too few arguments."
msgstr "zu viele Argumente"

# Oder besser "fehlende Argumente"?
#. TRANSLATORS: An error message.
#: src/args.c:273
#, c-format
#| msgid "missing arguments"
msgid "Missing arguments."
msgstr "Argumente fehlen."

#, fuzzy
#~| msgid "%s: invalid option -- %c\n"
#~ msgid "%s: illegal option -- %c\n"
#~ msgstr "%s: ungültige Option -- %c\n"

#~ msgid "%s: invalid option -- %c\n"
#~ msgstr "%s: ungültige Option -- %c\n"
EOF

rm -f mcat-test15.tmp1
: ${MSGCAT=msgcat}
${MSGCAT} -o mcat-test15.tmp1 mcat-test15.in || Exit 1
LC_ALL=C tr -d '\r' < mcat-test15.tmp1 > mcat-test15.out1 || Exit 1

: ${DIFF=diff}
${DIFF} mcat-test15.in mcat-test15.out1
result=$?

rm -f mcat-test15.tmp2
: ${MSGCAT=msgcat}
${MSGCAT} --indent -o mcat-test15.tmp2 mcat-test15.in || Exit 1
LC_ALL=C tr -d '\r' < mcat-test15.tmp2 > mcat-test15.out2 || Exit 1

cat <<\EOF > mcat-test15.ok
msgid   ""
msgstr  "Report-Msgid-Bugs-To: \n"
        "Content-Type: text/plain; charset=UTF-8\n"
        "Content-Transfer-Encoding: 8bit\n"

#. TRANSLATORS: An error message.
#: src/args.c:242
#, fuzzy, c-format
#| msgid        "too many arguments"
msgid           "Too many arguments."
msgstr          "zu viele Argumente"

#. TRANSLATORS: An error message.
#: src/args.c:247
#, fuzzy, c-format
#| msgid        "too many arguments"
msgid           "Too few arguments."
msgstr          "zu viele Argumente"

# Oder besser "fehlende Argumente"?
#. TRANSLATORS: An error message.
#: src/args.c:273
#, c-format
#| msgid        "missing arguments"
msgid           "Missing arguments."
msgstr          "Argumente fehlen."

#, fuzzy
#~| msgid       "%s: invalid option -- %c\n"
#~ msgid        "%s: illegal option -- %c\n"
#~ msgstr       "%s: ungültige Option -- %c\n"

#~ msgid        "%s: invalid option -- %c\n"
#~ msgstr       "%s: ungültige Option -- %c\n"
EOF

: ${DIFF=diff}
${DIFF} mcat-test15.ok mcat-test15.out2
result=$?

exit $result