Having started off with an incomplete gettext .pot file, the resulting .po translations file now includes a large number of translation strings that were not originally in the .pot file.

How can I backwards generate a .pot file for other languages (strings with blank translation entries) from a translated .po file?

Thanks for your help.

link|improve this question
Why do you want to get an outdated pot file, if you have the final one? Shouldn't you only merge changes to your translate .po file? – Groo May 9 '11 at 15:29
feedback

3 Answers

You don't. You generate the .pot file from the source code. msgmerge then takes the new .pot file and the existing .po file, and merges old entries into the new file.

link|improve this answer
@ignacio-vazquez-abrams: Unfortunately this isn't a great option since generating the .pot file from source code also pulls in thousands of strings which should not be translated and mixes them all in together. It's taken considerable work to clean the originally generated .pot file and the source code hasn't changed. I realise this isn't the normal way of working with gettext but still this is what I'm looking to achieve, perhaps with a sed command or something like that. – richhallstoke May 10 '11 at 8:07
feedback

This took ages to figure out a way of doing it, but in the end I found a solution using Notepad++. From the Search|Replace... menu I was able to Replace All with a regular expression.

Find: msgstr ".*"

Replace with: msgstr ""

link|improve this answer
feedback

You can use something like this:

msgfilter -i xx.po -o new.pot true

msgfilter applies a program to all translations in a file, and true is just some program that doesn't output anything for any input.

You will probably need to massage the header comment a bit after this to make it really look like a fresh POT file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.