2023-05-19 21:52:06 +00:00
|
|
|
#!/usr/bin/env bash
|
2023-05-02 17:14:16 +00:00
|
|
|
|
|
|
|
xgettext --from-code=UTF-8 --no-wrap -d messages -p locales/ *.php */*.php */*/*.php
|
|
|
|
|
|
|
|
mv locales/messages.po locales/messages.pot
|
|
|
|
|
|
|
|
msgmerge --no-wrap locales/fr/C/LC_MESSAGES/messages.po locales/messages.pot -o locales/fr/C/LC_MESSAGES/messages.po
|
|
|
|
|
|
|
|
msgfmt locales/fr/C/LC_MESSAGES/messages.po -o locales/fr/C/LC_MESSAGES/messages.mo
|