How i can add phing task for automated parsing my project and creating a PO for translation?
Asked
Active
Viewed 133 times
1 Answers
0
You can use xgettext to collect all gettext-translatable strings:
$ xgettext -kT_ngettext:1,2 -kT_ -L PHP -o data/locales/messages.po src/
Execute that from your phing task.

cweiske
- 30,033
- 14
- 133
- 194