Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I found this cool js gettext library -> http://code.google.com/p/gettext-js/ but I don't understand how to implement it. I am using poedit to edit the translations and I can see that it works when I checkout the project and run the demo file but when I make changes to the text, the .po files don't get updated and I can't see the new text. Does anybody have any idea? Thanks!

share|improve this question

3 Answers

up vote 7 down vote accepted

"I also had to force python in the gettext command":

  1. File|Preferences|Parsers
  2. Edit Python
  3. Edit "List of extensions..":
  4. *.py;*.js
  5. Edit "Parser commend:"
  6. xgettext --language=Python --force-po -o %o %C %K %F

Done.

Thanks for leading me there Kentor :)

share|improve this answer

I think xgettext --language=perl --force-po -o %o %C %K %F (using perl rather than python) shall be a better options, as python cause problem with javascript comment which contains a single quote (unterminated string error).

share|improve this answer
I've tried your solution and warnings were not showed. But some translations were not found in js files (for Python version they were found)... So I prefer Python version, even with warnings... :( – Andron Apr 1 at 14:27

You must invoke xgettext in order to extract the strings into a .pot file, and then run msgmerge to update the .po files. The gettext manual has all the gory details.

share|improve this answer
I was able to figure out the problem I was having. The thing is that when making changes to the language I had to rescan all the files with Poedit. So I had to first add the correct paths for that project and then I had to use Python's parser for *.js files. I also had to force python in the gettext command otherwise Poedit will complain that .js files are not understood and will try to use C/C++ to parse them. – Kentor Jan 29 '10 at 18:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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