On Fri, Dec 12, 2008 at 8:24 AM, Dafidov <[email protected]> wrote: > > Hello. > I didn't found in Internet any comments in this subject thats why I'm > writing. I don't know why but after moving to django 1.0.2 I have a > problem with creating po files in Russian language. The German and > Polish work fine but when I'm trying do it on Russian the process > suspends and don't react. > {{{ > make-messages.py -l ru > }}} > {{{ > make-messages.py -a > }}} > Both are not suspending reaching Russian language. > Before update all worked fine. > Does anyone have idea why it doesn't work - had any one same problem ? > Any suggestions, solutions :) ? >
(You don't say what level "before update" was. That might have been useful information.) You shouldn't be using make-messages.py with Django 1.0.2, as that function was moved to a django-admin.py command (see http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#Translationtoolsnowpartofdjango-admin.py). If you were using the 1.0.2 version of make-messages.py you'd just get an error message since the 1.0.2 version of that script just prints out that you should be using the other command. There's another change listed on that page that you should be aware of: http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#POfilesmustbeUTF-8encoded I do not know that either of these could cause makemessages to hang; if you switch to using the correct command and verify that the 2nd change I noted isn't a problem and still have an issue with the command hanging for Russian please re-post and inslude the OS you are using and the gettext utilities version you have installed (output of xgettext --version). Karen --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---

