Initial commit

This commit is contained in:
2022-12-18 16:03:43 +01:00
commit a342968da1
59 changed files with 6887 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
#!/bin/bash
xgettext -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