On 1/23/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I have a form that is incomplete. Error messages are displayed > correctly. However, if I set LANGUAGE_CODE to 'sv-se' I get the > following (no other code is altered): > > UnicodeEncodeError at /gs/admin/pages/create/ > 'ascii' codec can't encode character u'\xe4' in position 31: ordinal > not in range(128)
I'm guessing the problem is that Django's internationalization strings are pulled in as bytestrings (if I remember correctly), whereas the newforms library expects Unicode strings. If this indeed is the problem, one solution would be to change django/newforms/fields.py to wrap every occurrence of gettext() in smart_unicode(), like so: smart_unicode(gettext(u'Some characters')) Would you be willing to test this out in your local copy of Django, and report back? Adrian -- Adrian Holovaty holovaty.com | djangoproject.com --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---