Updated string files for translations

This commit is contained in:
o9000
2015-07-12 17:24:43 +02:00
parent 90805cb526
commit f61f2af2f4
8 changed files with 7554 additions and 8083 deletions

View File

@@ -0,0 +1,11 @@
Updating pot file:
find .. -name '*.c' | xargs xgettext --keyword=_ --language=C --output=updated.pot -
Followed by manual editing of updated.pot to make sure the header is OK. Then:
cat updated.pot > tint2conf.pot && rm -f updated.pot
Then update the po files:
for f in *.po ; do lang=$(basename $f .po); echo $lang ; msgmerge -i -o $lang.pox $lang.po tint2conf.pot ; cat ${lang}.pox > ${lang}.po ; rm ${lang}.pox ; done