10 lines
388 B
Bash
10 lines
388 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
xgettext --add-comments templates/*.php -o locale/rhythm.pot
|
||
|
|
||
|
msgmerge --update locale/de/LC_MESSAGES/rhythm.po locale/rhythm.pot
|
||
|
msgmerge --update locale/en/LC_MESSAGES/rhythm.po locale/rhythm.pot
|
||
|
|
||
|
msgfmt locale/de/LC_MESSAGES/rhythm.po --output-file=locale/de/LC_MESSAGES/rhythm.mo
|
||
|
msgfmt locale/en/LC_MESSAGES/rhythm.po --output-file=locale/en/LC_MESSAGES/rhythm.mo
|