#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src

# Test of gettext facilities in the Emacs Lisp language.

cat <<\EOF > prog.el
(textdomain "prog")
(bindtextdomain "prog" "l-elisp")

(format standard-output "%s\n" (_ "'Your command, please?', asked the waiter."))

(format standard-output "%s\n"
        (format nil (_ "%s is replaced by %s.") "FF" "EUR"))
EOF

: ${XGETTEXT=xgettext}
${XGETTEXT} -o l-elisp-prog.tmp --omit-header --no-location prog.el || exit 1
LC_ALL=C tr -d '\r' < l-elisp-prog.tmp > l-elisp-prog.pot || exit 1

cat <<EOF > l-elisp-prog.ok
msgid "'Your command, please?', asked the waiter."
msgstr ""

#, elisp-format
msgid "%s is replaced by %s."
msgstr ""
EOF

: ${DIFF=diff}
${DIFF} l-elisp-prog.ok l-elisp-prog.pot || exit 1

cat <<\EOF > l-elisp-fr.po
msgid ""
msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"

msgid "'Your command, please?', asked the waiter."
msgstr "Votre commande, s'il vous plait, dit le garon."

# Reverse the arguments.
#, elisp-format
msgid "%s is replaced by %s."
msgstr "%2$s remplace %1$s."
EOF

: ${MSGMERGE=msgmerge}
${MSGMERGE} -q -o l-elisp-fr.po.tmp l-elisp-fr.po l-elisp-prog.pot || exit 1
LC_ALL=C tr -d '\r' < l-elisp-fr.po.tmp > l-elisp-fr.po.new || exit 1

: ${DIFF=diff}
${DIFF} l-elisp-fr.po l-elisp-fr.po.new || exit 1

test -d l-elisp || mkdir l-elisp
test -d l-elisp/fr || mkdir l-elisp/fr
test -d l-elisp/fr/LC_MESSAGES || mkdir l-elisp/fr/LC_MESSAGES

: ${MSGFMT=msgfmt}
${MSGFMT} -o l-elisp/fr/LC_MESSAGES/prog.mo l-elisp-fr.po

exit 0
