/django/contrib/localflavor/cz/cz_regions.py

https://code.google.com/p/mango-py/ · Python · 22 lines · 17 code · 2 blank · 3 comment · 0 complexity · bca8ec967ff3e3c0e9fb1ae783466795 MD5 · raw file

  1. """
  2. Czech regions, translations get from http://www.crwflags.com/fotw/Flags/cz-re.html
  3. """
  4. from django.utils.translation import ugettext_lazy as _
  5. REGION_CHOICES = (
  6. ('PR', _('Prague')),
  7. ('CE', _('Central Bohemian Region')),
  8. ('SO', _('South Bohemian Region')),
  9. ('PI', _('Pilsen Region')),
  10. ('CA', _('Carlsbad Region')),
  11. ('US', _('Usti Region')),
  12. ('LB', _('Liberec Region')),
  13. ('HK', _('Hradec Region')),
  14. ('PA', _('Pardubice Region')),
  15. ('VY', _('Vysocina Region')),
  16. ('SM', _('South Moravian Region')),
  17. ('OL', _('Olomouc Region')),
  18. ('ZL', _('Zlin Region')),
  19. ('MS', _('Moravian-Silesian Region')),
  20. )