On Thu, 2008-01-31 at 07:47 -0800, patrickk wrote:
> when typing "/bin/make-messages.py -l de" from within my app-
> directory, I get this error:
> 
> errors happened while running xgettext on __init__.py
> /bin/sh: line 1: xgettext: command not found
> 
> "which gettext" tells me that gettext is installed.

"gettext" is not the same as "xgettext". The different spelling is a
clue. :-)

"gettext" is a program for actually performing string translations,
given a message catalog and a source string (msgid). It's of no interest
in this case.

"xgettext" is a program for extracting strings from the source files and
is what we use to construct the message catalogs (the PO files). So you
need to have xgettext installed to run make-messages.py.

Maybe your distro of choice has split the two programs into different
packages. Or maybe your gettext package installation is hosed somehow.
In any case, that's the problem you need to fix: install xgettext.

Regards,
Malcolm

-- 
No one is listening until you make a mistake. 
http://www.pointy-stick.com/blog/


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to