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