mirror of
https://github.com/php-win-ext/gettext.git
synced 2026-03-25 01:22:05 +01:00
43 lines
722 B
Bash
43 lines
722 B
Bash
#!/bin/sh
|
|
|
|
# Test Python support: --add-comments option.
|
|
|
|
tmpfiles=""
|
|
trap 'rm -fr $tmpfiles' 1 2 3 15
|
|
|
|
tmpfiles="$tmpfiles xg-py-4.py"
|
|
cat <<\EOF > xg-py-4.py
|
|
# a
|
|
string = # b
|
|
# c
|
|
_( # d
|
|
"hello " "world" # e
|
|
);
|
|
EOF
|
|
|
|
tmpfiles="$tmpfiles xg-py-4.tmp.po xg-py-4.po"
|
|
: ${XGETTEXT=xgettext}
|
|
${XGETTEXT} --add-comments --omit-header --no-location --keyword=_ \
|
|
-d xg-py-4.tmp xg-py-4.py
|
|
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
|
|
LC_ALL=C tr -d '\r' < xg-py-4.tmp.po > xg-py-4.po
|
|
test $? = 0 || { rm -fr $tmpfiles; exit 1; }
|
|
|
|
tmpfiles="$tmpfiles xg-py-4.ok"
|
|
cat <<EOF > xg-py-4.ok
|
|
#. a
|
|
#. b
|
|
#. c
|
|
#. d
|
|
msgid "hello world"
|
|
msgstr ""
|
|
EOF
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} xg-py-4.ok xg-py-4.po
|
|
result=$?
|
|
|
|
rm -fr $tmpfiles
|
|
|
|
exit $result
|