3 # Test Shell support: --add-comments option.
6 trap 'rm -fr $tmpfiles' 1 2 3 15
8 tmpfiles
="$tmpfiles xg-sh-2.sh"
10 # This comment will not be extracted.
12 # TRANSLATORS: This is an extracted comment.
14 # Not extracted either.
17 # Nickname of the Beatles
18 gettext "The Fabulous Four"
21 tmpfiles
="$tmpfiles xg-sh-2.po"
22 : ${XGETTEXT=xgettext}
23 ${XGETTEXT} --omit-header --no-location --add-comments=TRANSLATORS
: \
25 test $?
= 0 ||
{ rm -fr $tmpfiles; exit 1; }
27 tmpfiles
="$tmpfiles xg-sh-2.ok"
28 cat <<EOF > xg-sh-2.ok
32 #. TRANSLATORS: This is an extracted comment.
40 #. Nickname of the Beatles
41 msgid "The Fabulous Four"
46 ${DIFF} xg-sh-2.ok xg-sh-2.po