4 lines
246 B
Bash
Executable File
4 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
xgettext --from-code UTF-8 -o locale/main-website.pot `find . -iname '*.php'`
|
|
for translation in `find locale -iname '*.po'`; do msgmerge -U "$translation" locale/main-website.pot; msgfmt -o ${translation:0:-2}mo "$translation"; done
|