Re: special characters in model

2007-01-02 Thread Robert Slotboom
Hi Ramiro, In BBedit I saved the file as utf8 and the problem was solved. Thanks Rob Op 31-dec-06 om 19:27 heeft Ramiro Morales het volgende geschreven: Try encoding the models.py file using utf-8 (use iconv to re-encode it if it is encoded in ASCII or ISO 8859-x) and flag the encodig expli

Re: special characters in model

2006-12-31 Thread Ramiro Morales
Rob, On 12/31/06, Rob Slotboom <[EMAIL PROTECTED]> wrote: In my model I need a special character for the verbose_name_plural. I need an ë but admin gives a questionmark. What do I need to do? The folowing things don't work. verbose_name_plural = 'categoriën' verbose_name_plural = 'categorië

special characters in model

2006-12-31 Thread Rob Slotboom
In my model I need a special character for the verbose_name_plural. I need an ë but admin gives a questionmark. What do I need to do? The folowing things don't work. verbose_name_plural = 'categoriën' verbose_name_plural = 'categoriën' verbose_name_plural = 'categori%sn' % chr(235) --~--~---