Add link to weblate

This commit is contained in:
2023-01-22 20:37:07 +01:00
parent 55da3b38a4
commit 8e3d7d003a
2 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,3 @@
#!/bin/bash
xgettext -o locale/mail-hosting.pot `find . -iname '*.php'`
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