Question

I've got a python project with internationalized strings. I've modified the source codes and the lines of the strings are changed, i.e. in pot and po files lines of he strings are not pointing to correct lines.

So how to update the po and pot files to new string locations in files.

Was it helpful?

Solution

You could have a look to this script to update your po files with new code. It use xgettext and msgmerge.

echo '' > messages.po # xgettext needs that file, and we need it empty
find . -type f -iname "*.py" | xgettext -j -f - # this modifies messages.po
msgmerge -N existing.po messages.po > new.po
mv new.po existing.po
rm messages.po

OTHER TIPS

Using autoconf and automake you can simply change into the po subdirectory and run:

make update-po

or:

make update-gmo
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top