mirror of
https://github.com/openharmony/third_party_gettext.git
synced 2026-07-19 13:17:36 -04:00
34 lines
590 B
Bash
Executable File
34 lines
590 B
Bash
Executable File
#!/bin/sh
|
|
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
|
|
|
|
# Test Java support: --add-comments option.
|
|
|
|
cat <<\EOF > xg-j-6.java
|
|
/* a */
|
|
/* b */ String string = /* c */
|
|
/* d */
|
|
/* e */ _( /* f */ "hello " /* g */ + /* h */ "world" /* i */ );
|
|
EOF
|
|
|
|
: ${XGETTEXT=xgettext}
|
|
${XGETTEXT} --add-comments --omit-header --no-location --keyword=_ \
|
|
-d xg-j-6.tmp xg-j-6.java || exit 1
|
|
LC_ALL=C tr -d '\r' < xg-j-6.tmp.po > xg-j-6.po || exit 1
|
|
|
|
cat <<EOF > xg-j-6.ok
|
|
#. a
|
|
#. b
|
|
#. c
|
|
#. d
|
|
#. e
|
|
#. f
|
|
msgid "hello world"
|
|
msgstr ""
|
|
EOF
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} xg-j-6.ok xg-j-6.po
|
|
result=$?
|
|
|
|
exit $result
|