1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-24 11:56:36 +02:00
ttrss/utils/rebase-translations.sh

36 lines
1.0 KiB
Bash
Raw Normal View History

2007-03-05 09:37:13 +01:00
#!/bin/sh
TEMPLATE=messages.pot
xgettext -kT_sprintf -kT_nsprintf:1,2 -k_ngettext:1,2 -kT_ngettext:1,2 -k__ \
2021-03-08 17:07:05 +01:00
-L PHP -o $TEMPLATE *.php `find classes plugins include -iname '*.php' -type f -not -path '*/vendor/*'`
2007-03-05 09:37:13 +01:00
2021-02-26 11:07:31 +01:00
xgettext --from-code utf-8 -k__ -kNotify.info -kNotify.error -kNotify.progress \
2021-03-08 17:07:05 +01:00
-kngettext:1,2 -L Java -j -o $TEMPLATE `find js plugins -iname '*.js' -type f -not -path '*/vendor/*'`
2021-02-26 11:07:31 +01:00
xgettext --from-code utf-8 -k__ -kNotify.info -kNotify.error -kNotify.progress \
2021-03-08 17:07:05 +01:00
-kngettext:1,2 -L JavaScript -j -o $TEMPLATE `find js plugins -iname '*.js' -type f -not -path '*/vendor/*'`
# leave weblate to deal with .po/.mo files
exit 0
2007-03-05 10:50:25 +01:00
update_lang() {
2007-03-05 09:37:13 +01:00
if [ -f $1.po ]; then
msgmerge --no-wrap --width 1 -U $1.po $TEMPLATE
msgfmt --statistics $1.po -o $1.mo
2007-03-05 09:37:13 +01:00
else
echo "Usage: $0 [-p|<basename>]"
fi
2007-03-05 10:50:25 +01:00
}
2021-02-26 11:26:31 +01:00
compile_po() {
msgfmt --statistics $1.po -o $1.mo
}
2007-03-05 10:50:25 +01:00
LANGS=`find locale -name 'messages.po'`
for lang in $LANGS; do
echo Updating $lang...
PO_BASENAME=`echo $lang | sed s/.po//`
2021-02-26 11:26:31 +01:00
compile_po $PO_BASENAME
2007-03-05 10:50:25 +01:00
done