script sh to run xgettext on code and prepare messages.mo file

This commit is contained in:
fabrixxm 2011-03-11 00:20:03 +01:00
parent 8a40c718fb
commit a44f5653bf
1 changed files with 19 additions and 0 deletions

19
util/run_xgettext.sh Normal file
View File

@ -0,0 +1,19 @@
#!/bin/bash
cd $(dirname $0)
KEYWORDS="-k -kt -ktt:1,2"
find .. -name "*.php" | xargs xgettext $KEYWORDS --from-code=UTF-8
F9KVERSION=$(sed -n "s/.*'FRIENDIKA_VERSION'.*'\([0-9.]*\)'.*/\1/p" ../boot.php);
sed -i "s/SOME DESCRIPTIVE TITLE./FRIENDIKA Distribuited Social Network/g" messages.po
sed -i "s/YEAR THE PACKAGE'S COPYRIGHT HOLDER/2010, 2011 Mike Macgirvin/g" messages.po
sed -i "s/FIRST AUTHOR <EMAIL@ADDRESS>, YEAR./Mike Macgirvin, 2010/g" messages.po
sed -i "s/PACKAGE VERSION/$F9KVERSION/g" messages.po
sed -i "s/PACKAGE/Friendika/g" messages.po
sed -i "s/CHARSET/UTF-8/g" messages.po
sed -i "s|#: \.\./|#: ../../|g" messages.po