12 lines
363 B
Bash
Executable file
12 lines
363 B
Bash
Executable file
#!/bin/sh
|
|
XGETTEXT_OPTIONS="--keyword=_ -keyword=N_ --default-domain=demo --no-location"
|
|
|
|
# Allows controlling language option
|
|
# (gettext v.0.10.40 = -C, gettext 0.11+ = -L php).
|
|
if [ $SM_OLD_GETTEXT ] ; then
|
|
XGETTEXT_OPTIONS="${XGETTEXT_OPTIONS} -C";
|
|
else
|
|
XGETTEXT_OPTIONS="${XGETTEXT_OPTIONS} -L php";
|
|
fi
|
|
|
|
xgettext ${XGETTEXT_OPTIONS} *.php --output=demo.pot
|