mirror of
https://github.com/DanWin/mail-hosting.git
synced 2024-11-21 15:10:25 +00:00
4 lines
228 B
Bash
4 lines
228 B
Bash
|
#!/bin/bash
|
||
|
xgettext -o locale/mail-hosting.pot `find . -iname '*.php'`
|
||
|
for translation in `find locale -iname '*.po'`; do msgmerge -U "$translation" locale/mail-hosting.pot; msgfmt -o ${translation:0:-2}mo "$translation"; done
|