#! /bin/sh # Verify that msgcat doesn't introduce alternative syntax if all translations # have the same msgstr. tmpfiles="" trap 'rm -fr $tmpfiles' 1 2 3 15 tmpfiles="$tmpfiles mcat-test1.in1 mcat-test1.in2" cat < mcat-test1.in1 msgid "" msgstr "" "Project-Id-Version: GNU one 1.2.3\n" "POT-Creation-Date: 2000-12-11 20:49+0100\n" "PO-Revision-Date: 2000-03-18 15:25+01:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" #: first.c:123 msgid "1" msgstr "eins" EOF cat < mcat-test1.in2 msgid "" msgstr "" "Project-Id-Version: GNU one 1.2.3\n" "POT-Creation-Date: 2000-12-11 20:49+0100\n" "PO-Revision-Date: 2000-03-18 15:25+01:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" #: hunt.c:759 msgid "1" msgstr "eins" EOF tmpfiles="$tmpfiles mcat-test1.out" : ${MSGCAT=msgcat} ${MSGCAT} -o mcat-test1.out mcat-test1.in1 mcat-test1.in2 test $? = 0 || { rm -fr $tmpfiles; exit 1; } tmpfiles="$tmpfiles mcat-test1.ok" cat << EOF > mcat-test1.ok msgid "" msgstr "" "Project-Id-Version: GNU one 1.2.3\n" "POT-Creation-Date: 2000-12-11 20:49+0100\n" "PO-Revision-Date: 2000-03-18 15:25+01:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" #: first.c:123 hunt.c:759 msgid "1" msgstr "eins" EOF : ${DIFF=diff} ${DIFF} mcat-test1.ok mcat-test1.out result=$? rm -fr $tmpfiles exit $result