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.
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.
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"
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
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.
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"
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
62 tmpfiles
="$tmpfiles mcat-test10.out"
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.
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"
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!"
101 ${DIFF} mcat-test10.ok mcat-test10.out