On Tue, 2008-03-04 at 02:31 -0800, Jonas Christian wrote: > Hi everybody, > > I really enjoy writing applications in Django but I ran into something > very strange while doing my first internationalized app. I'm using the > newforms-admin branch, revision 7192. All translations work fine, > except in these cases: > > When I mark a string that spans multiple lines to be translated with > {% blocktrans %}, make-messages.py shows the string and compile- > messages.py works fine but the translation simply does not appear in > the output. This does not work: > > {% blocktrans %} > This is a test string > {% endblocktrans %} > > This, however, does: > > {% blocktrans %}This is a test string{% endblocktrans %}
This one's just a silly restriction in blocktrans. We'll fix it one day. > > I found this - possibly related - bug, but it has been closed as > "worksforme": http://code.djangoproject.com/ticket/4535 > > This would be easy to work around, though. I'd just put everything in > one line. What's worse is the behaviour when using bound variables: > > {% blocktrans with item.count as xyz %}This is the count: {{ xyz }} > {% endblocktrans %} > > This works at first. When I add another variable, it stops working: > > {% blocktrans with item.count as xyz and item.name as abc %}This is > {{ abc }}'s count: {{ xyz }}{% endblocktrans %} > > It appars in the .po file just fine but again, the translated string > does not appear in the output. And the final straw: when I go back to > > {% blocktrans with item.count as xyz %}This is the count: {{ xyz }} > {% endblocktrans %} > > it doesn't work anymore! Does anyone have any idea what might cause > this behaviour? Are you sure you haven't inadvertently introduced newlines into the strings here? Can show us what the corresponding lines in the PO file look like (include the comments before the msgid bit as well). I'm assuming by "not working" you mean the string is being displayed in English rather than, say, German. You're not saying the string doesn't display at all, right? My bet is that the last problems are human error, but I'd like to understand them to see if we can bullet-proof this a bit more. Malcolm -- Depression is merely anger without enthusiasm. 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 -~----------~----~----~----~------~----~------~--~---