1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 09:35:55 +00:00
Files
tt-rss/update-translations.sh
Andrew Dolgov 1025ad8763 more I18N work
2007-03-05 10:04:55 +01:00

20 lines
387 B
Bash

#!/bin/sh
TEMPLATE=messages.pot
xgettext -kT_ngettext:1,2 -k__ -L PHP -o $TEMPLATE *.php modules/*.php
if [ "$1" = "-p" ]; then
msgfmt --statistics $TEMPLATE
else
if [ -f $1.po ]; then
TMPFILE=/tmp/update-translations.$$
msgmerge -o $TMPFILE $1.po $TEMPLATE
mv $TMPFILE $1.po
msgfmt --statistics $1.po
msgfmt -o $1.mo $1.po
else
echo "Usage: $0 [-p|<basename>]"
fi
fi