You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
458 B
17 lines
458 B
|
13 years ago
|
"""
|
||
|
|
Slovak regions according to http://sk.wikipedia.org/wiki/Administrat%C3%ADvne_%C4%8Dlenenie_Slovenska
|
||
|
|
"""
|
||
|
|
|
||
|
|
from django.utils.translation import ugettext_lazy as _
|
||
|
|
|
||
|
|
REGION_CHOICES = (
|
||
|
|
('BB', _('Banska Bystrica region')),
|
||
|
|
('BA', _('Bratislava region')),
|
||
|
|
('KE', _('Kosice region')),
|
||
|
|
('NR', _('Nitra region')),
|
||
|
|
('PO', _('Presov region')),
|
||
|
|
('TN', _('Trencin region')),
|
||
|
|
('TT', _('Trnava region')),
|
||
|
|
('ZA', _('Zilina region')),
|
||
|
|
)
|