Hello,

First of all, I apologize if I post this in the wrong forum. It just
seems to me like something which requires design decisions, and not a
simple bug. If I am wrong, please correct me.

I'm making a site which will be in Hebrew. I have a model with lines
like these:

    telephone = CharField(maxlength=30)

I changed my settings so that the admin interface is in Hebrew, and it
looks very nice, but of course "Telephone" is displayed in English. So
I made the obvious change:

    telephone = CharField(u'טלפון', maxlength=30)

However, it causes the admin app to fail with a nasty
UnicodeDecodeError.

I assume that I can use the translation system to solve this, but I'm
certain that it shouldn't be that way - I shouldn't have to learn
about the translation system if I make a site which will be in only
one language.

Have a good day, (and sorry if I post this in the wrong forum),
Noam


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django developers" 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-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to