diefenbach / django-lfs

An online-shop based on Django
http://www.getlfs.com
BSD 3-Clause "New" or "Revised" License
622 stars 222 forks source link

It's better to use `ugettext_` or even `pgettext_` instead of `gettext_` #44

Closed baffolobill closed 11 years ago

baffolobill commented 12 years ago

.. and will replace it AFAP.

Sometimes I'm too lazy to make a translation 'by the rules' or need different meaning of a word in the context, so I insert the desired values directly in the code. In this case, I needed to make replacement of the Order States (https://github.com/diefenbach/django-lfs/blob/master/lfs/order/settings.py) and faced with UnicodeEncodeError Exception when I did it.

This is not quite a bug, but just in case.