mail-hosting-mirror/update-translation.sh
2023-01-22 20:37:27 +01:00

4 lines
246 B
Bash
Executable file

#!/bin/bash
xgettext --from-code UTF-8 -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