PageRenderTime 61ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://code.google.com/p/mango-py/
Python | 16 lines | 11 code | 2 blank | 3 comment | 0 complexity | d091849f5aa973e3a24f1dc8e04d036d MD5 | raw file
Possible License(s): BSD-3-Clause
  1. """
  2. Slovak regions according to http://sk.wikipedia.org/wiki/Administrat%C3%ADvne_%C4%8Dlenenie_Slovenska
  3. """
  4. from django.utils.translation import ugettext_lazy as _
  5. REGION_CHOICES = (
  6. ('BB', _('Banska Bystrica region')),
  7. ('BA', _('Bratislava region')),
  8. ('KE', _('Kosice region')),
  9. ('NR', _('Nitra region')),
  10. ('PO', _('Presov region')),
  11. ('TN', _('Trencin region')),
  12. ('TT', _('Trnava region')),
  13. ('ZA', _('Zilina region')),
  14. )