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

/django/contrib/localflavor/nl/nl_provinces.py

https://code.google.com/p/mango-py/
Python | 16 lines | 15 code | 1 blank | 0 comment | 0 complexity | 3240b6cabbc578229d213d3833cb4d28 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. from django.utils.translation import ugettext_lazy as _
  2. PROVINCE_CHOICES = (
  3. ('DR', _('Drenthe')),
  4. ('FL', _('Flevoland')),
  5. ('FR', _('Friesland')),
  6. ('GL', _('Gelderland')),
  7. ('GR', _('Groningen')),
  8. ('LB', _('Limburg')),
  9. ('NB', _('Noord-Brabant')),
  10. ('NH', _('Noord-Holland')),
  11. ('OV', _('Overijssel')),
  12. ('UT', _('Utrecht')),
  13. ('ZE', _('Zeeland')),
  14. ('ZH', _('Zuid-Holland')),
  15. )