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
|
#! /bin/sh
# Test extraction of non-ASCII msgids.
tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15
tmpfiles="$tmpfiles xg-test5.c"
cat <<EOF > xg-test5.c
void foo (int option)
{
printf (_("%s: neznm pepna -- %c\n"), option);
printf (_("%s: pepna vyaduje argument -- %c\n"), option);
}
EOF
tmpfiles="$tmpfiles xg-test5.tmp xg-test5.po"
: ${XGETTEXT=xgettext}
${XGETTEXT} --no-location -k_ -o xg-test5.po xg-test5.c 2>/dev/null
test $? = 1 || { rm -fr $tmpfiles; exit 1; }
${XGETTEXT} --no-location -k_ --from-code=iso-8859-2 -o xg-test5.tmp xg-test5.c
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
tr -d '\r' < xg-test5.tmp > xg-test5.po
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
tmpfiles="$tmpfiles xg-test5.pot"
sed -e '/POT-Creation-Date/d' < xg-test5.po > xg-test5.pot
tmpfiles="$tmpfiles xg-test5.ok"
cat <<EOF > xg-test5.ok
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#, c-format
msgid "%s: neznámý přepínač -- %c\n"
msgstr ""
#, c-format
msgid "%s: přepínač vyžaduje argument -- %c\n"
msgstr ""
EOF
: ${DIFF=diff}
${DIFF} xg-test5.ok xg-test5.pot
result=$?
rm -fr $tmpfiles
exit $result
|