No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gettext / gettext-tools / tests / msgcat-10
blobada0a564c8c1f19ba9a5ec61a05db044e65317f7
1 #! /bin/sh
3 # Verify msgcat of two files, when the header entries have different comments
4 # but the same contents. The resulting header entry is not marked fuzzy,
5 # because the #-#-#-#-# are only in comments and do not necessarily require
6 # translator attention; in other words, an msgstr which is valid in both input
7 # files is also valid in the result.
9 tmpfiles=""
10 trap 'rm -fr $tmpfiles' 1 2 3 15
12 tmpfiles="$tmpfiles mcat-test10.in1 mcat-test10.in2"
13 cat <<\EOF > mcat-test10.in1
14 # German message file for xyz.
15 # Copyright (C) 1999, 2000, 2001 xyz.
16 # Kab Def <ke@zzz.uucp>, 2000.
17 # Def Kab <dk@zzz.uucp>, 2001.
19 msgid ""
20 msgstr ""
21 "Project-Id-Version: xyz\n"
22 "POT-Creation-Date: 2001-11-11 12:51:34+0200\n"
23 "PO-Revision-Date: 2001-11-11 13:02+02:00\n"
24 "Last-Translator: Kab Def <ke@zzz.uucp>\n"
25 "Language-Team: German <i18n@zzz.uucp>\n"
26 "MIME-Version: 1.0\n"
27 "Content-Type: text/plain; charset=ISO-8859-1\n"
28 "Content-Transfer-Encoding: 8bit\n"
30 #. Help text (HTML-like) START
31 #: clients/inst_ask_config.ycp:119
32 msgid ""
33 "Congratulations!"
34 msgstr ""
35 "Glückwunsch!"
36 EOF
38 cat <<\EOF > mcat-test10.in2
39 # German message file for xyz.
40 # Copyright (C) 1999, 2000, 2001 xyz.
41 # Kab Def <ke@zzz.uucp>, 2000.
43 msgid ""
44 msgstr ""
45 "Project-Id-Version: xyz\n"
46 "POT-Creation-Date: 2001-11-11 12:51:34+0200\n"
47 "PO-Revision-Date: 2001-11-11 13:02+02:00\n"
48 "Last-Translator: Kab Def <ke@zzz.uucp>\n"
49 "Language-Team: German <i18n@zzz.uucp>\n"
50 "MIME-Version: 1.0\n"
51 "Content-Type: text/plain; charset=ISO-8859-1\n"
52 "Content-Transfer-Encoding: 8bit\n"
54 #. Help text (HTML-like) START
55 #: clients/inst_ask_config.ycp:119
56 msgid ""
57 "Congratulations!"
58 msgstr ""
59 "Glückwunsch!"
60 EOF
62 tmpfiles="$tmpfiles mcat-test10.out"
63 rm -f mcat-test10.out
65 : ${MSGCAT=msgcat}
66 ${MSGCAT} --more-than=0 -o mcat-test10.out \
67 mcat-test10.in1 mcat-test10.in2
68 test $? = 0 || { rm -fr $tmpfiles; exit 1; }
70 tmpfiles="$tmpfiles mcat-test10.ok"
71 cat <<\EOF > mcat-test10.ok
72 # #-#-#-#-# mcat-test10.in1 (xyz) #-#-#-#-#
73 # German message file for xyz.
74 # Copyright (C) 1999, 2000, 2001 xyz.
75 # Kab Def <ke@zzz.uucp>, 2000.
76 # Def Kab <dk@zzz.uucp>, 2001.
78 # #-#-#-#-# mcat-test10.in2 (xyz) #-#-#-#-#
79 # German message file for xyz.
80 # Copyright (C) 1999, 2000, 2001 xyz.
81 # Kab Def <ke@zzz.uucp>, 2000.
83 msgid ""
84 msgstr ""
85 "Project-Id-Version: xyz\n"
86 "POT-Creation-Date: 2001-11-11 12:51:34+0200\n"
87 "PO-Revision-Date: 2001-11-11 13:02+02:00\n"
88 "Last-Translator: Kab Def <ke@zzz.uucp>\n"
89 "Language-Team: German <i18n@zzz.uucp>\n"
90 "MIME-Version: 1.0\n"
91 "Content-Type: text/plain; charset=ISO-8859-1\n"
92 "Content-Transfer-Encoding: 8bit\n"
94 #. Help text (HTML-like) START
95 #: clients/inst_ask_config.ycp:119
96 msgid "Congratulations!"
97 msgstr "Glückwunsch!"
98 EOF
100 : ${DIFF=diff}
101 ${DIFF} mcat-test10.ok mcat-test10.out
102 result=$?
104 rm -fr $tmpfiles
106 exit $result