/django/contrib/localflavor/cz/cz_regions.py
Python | 22 lines | 17 code | 2 blank | 3 comment | 0 complexity | bca8ec967ff3e3c0e9fb1ae783466795 MD5 | raw file
Possible License(s): BSD-3-Clause
- """
- Czech regions, translations get from http://www.crwflags.com/fotw/Flags/cz-re.html
- """
- from django.utils.translation import ugettext_lazy as _
- REGION_CHOICES = (
- ('PR', _('Prague')),
- ('CE', _('Central Bohemian Region')),
- ('SO', _('South Bohemian Region')),
- ('PI', _('Pilsen Region')),
- ('CA', _('Carlsbad Region')),
- ('US', _('Usti Region')),
- ('LB', _('Liberec Region')),
- ('HK', _('Hradec Region')),
- ('PA', _('Pardubice Region')),
- ('VY', _('Vysocina Region')),
- ('SM', _('South Moravian Region')),
- ('OL', _('Olomouc Region')),
- ('ZL', _('Zlin Region')),
- ('MS', _('Moravian-Silesian Region')),
- )