Quote:
Originally Posted by Nicolas F
Actually you just have to click on update in the toolbar or you can use update from POT file when you are in the PO file. (to configure the source you need to go to catalogue -> properties -> sources paths and add the path to the .py files to translate, but I've done it)
|
This small script generates the new Trad.pot file automatically, so it can be included without having to open poedit all the times:
Code:
ls *.py > salida
xgettext -f salida
rm salida
if [ -f messages.po ]
then
mv messages.po translations/Trad.pot
fi
Quote:
Originally Posted by Nicolas F
For future updates I can update the translations if you like (I will follow this thread but feel free to PM me here or on github). The easiest thing is probably to update the .po files so that translators just have to add the missing strings.
|
I think everybody can do this from poedit if the pot file is updated, no need you modify all of them, but as you prefer.