Django

Code

root/django/trunk/django/contrib/localflavor/sk/sk_regions.py

Revision 5876, 458 bytes (checked in by mtredinnick, 1 year ago)

Fixed #5111 -- Set svn:eol-style to 'native' on files that didn't have it
already.

  • Property svn:eol-style set to native
Line 
1 """
2 Slovak regions according to http://sk.wikipedia.org/wiki/Administrat%C3%ADvne_%C4%8Dlenenie_Slovenska
3 """
4
5 from django.utils.translation import ugettext_lazy as _
6
7 REGION_CHOICES = (
8     ('BB', _('Banska Bystrica region')),
9     ('BA', _('Bratislava region')),
10     ('KE', _('Kosice region')),
11     ('NR', _('Nitra region')),
12     ('PO', _('Presov region')),
13     ('TN', _('Trencin region')),
14     ('TT', _('Trnava region')),
15     ('ZA', _('Zilina region')),
16 )
Note: See TracBrowser for help on using the browser.