blob: 862a412202a6c0f4d9eeec29e7461518923f6098 (
plain)
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
|
#! /bin/sh
# Test extraction of non-ASCII msgids.
tmpfiles=""
trap 'rm -fr $tmpfiles' 1 2 3 15
tmpfiles="$tmpfiles xg-test23.c"
cat <<EOF > xg-test23.c
void foo (int option)
{
printf (_("%s: neznámý přepínač -- %c\n"), option);
printf (_("%s: přepínač vyľaduje argument -- %c\n"), option);
}
EOF
tmpfiles="$tmpfiles xg-test23.po"
: ${XGETTEXT=xgettext}
${XGETTEXT} --no-location -k_ -o xg-test23.po xg-test23.c 2>/dev/null
test $? = 1 || { rm -fr $tmpfiles; exit 1; }
${XGETTEXT} --no-location -k_ --from-code=iso-8859-2 -o xg-test23.po xg-test23.c
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
tmpfiles="$tmpfiles xg-test23.pot"
sed -e '/POT-Creation-Date/d' < xg-test23.po > xg-test23.pot
tmpfiles="$tmpfiles xg-test23.ok"
cat <<EOF > xg-test23.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-test23.ok xg-test23.pot
result=$?
rm -fr $tmpfiles
exit $result
|