Initial commit

This commit is contained in:
2022-12-10 20:40:42 +01:00
commit a342968da1
59 changed files with 6887 additions and 0 deletions

3
update-translation.sh Executable file
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