Fixed translations

This commit is contained in:
Sergio Costas 2025-01-18 21:35:43 +01:00
parent 887e0b17c0
commit 13a38f5e76
27 changed files with 18925 additions and 10307 deletions

8
po/update_po_files.sh Executable file
View file

@ -0,0 +1,8 @@
#!/bin/sh
rm -f devede.pot
xgettext -f POTFILES.in -o devede.pot
for pofile in *.po; do
msgmerge -N "${pofile}" devede.pot > tmp.po
mv tmp.po "${pofile}"
done