7 # Extract strings from all the Perl code
8 xgettext --keyword=_ --from-code=utf-8 -o templates/messages.pot -L Perl *.{pm,pl}
10 # ...from the database
11 perl ../intl/make-season-pot.pl > templates/seasons.pot
13 # ...and from all the TT templates
14 for FILE in templates/*.tmpl; do
16 perl -I../intl ../intl/make-pot.pl $FILE | msguniq > $FILE.pot
19 msgcat templates/*.pot > po/templates.pot
22 for FILE in po/*.po; do
23 msgmerge -U $FILE po/templates.pot