NetBSD/gnu/dist/gettext/gettext-tools/tests/msgattrib-5

108 lines
2.1 KiB
Plaintext
Raw Normal View History

2005-04-29 19:05:03 +04:00
#! /bin/sh
# Test --no-obsolete option.
tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15
tmpfiles="$tmpfiles ma-test5.po"
cat <<\EOF > ma-test5.po
# HEADER.
#
msgid ""
msgstr ""
"Project-Id-Version: Bonnie Tyler\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
#: married-men:4
#, fuzzy
msgid "The world is full of married men"
msgstr "So viele verheiratete M<>nner"
#: married-men:5
msgid "with wives who never understand"
msgstr "und ihre Frauen verstehen sie nicht"
#: married-men:6
msgid "They're looking for someone to share"
msgstr ""
# schwer zu <20>bersetzen...
#: married-men:7
msgid "the excitement of a love affair"
msgstr ""
#: married-men:8
msgid "Just as soon as they find you"
msgstr ""
#: married-men:9
msgid "They warn you and darn you"
msgstr ""
#~ msgid "You fly on the wings of romance"
#~ msgstr "Die Fl<46>gel der frischen Liebe heben dich zum Himmel"
#, fuzzy
#~ msgid "In the eyes of the world"
#~ msgstr "F<>r die anderen"
# Etwas freie <20>bersetzung.
#~ msgid "You're just another crazy girl"
#~ msgstr "bist du blo<6C> ein verr<72>cktes dummes Ding"
#~ msgid "Who loves a married man"
#~ msgstr "das einen verheirateten Mann liebt"
EOF
tmpfiles="$tmpfiles ma-test5.out"
: ${MSGATTRIB=msgattrib}
${MSGATTRIB} --no-obsolete ma-test5.po -o ma-test5.out
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
tmpfiles="$tmpfiles ma-test5.ok"
cat <<\EOF > ma-test5.ok
# HEADER.
#
msgid ""
msgstr ""
"Project-Id-Version: Bonnie Tyler\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
#: married-men:4
#, fuzzy
msgid "The world is full of married men"
msgstr "So viele verheiratete M<>nner"
#: married-men:5
msgid "with wives who never understand"
msgstr "und ihre Frauen verstehen sie nicht"
#: married-men:6
msgid "They're looking for someone to share"
msgstr ""
# schwer zu <20>bersetzen...
#: married-men:7
msgid "the excitement of a love affair"
msgstr ""
#: married-men:8
msgid "Just as soon as they find you"
msgstr ""
#: married-men:9
msgid "They warn you and darn you"
msgstr ""
EOF
: ${DIFF=diff}
${DIFF} ma-test5.ok ma-test5.out
result=$?
rm -fr $tmpfiles
exit $result