/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
- from django.utils.translation import ugettext_lazy as _
- PROVINCE_CHOICES = (
- ('DR', _('Drenthe')),
- ('FL', _('Flevoland')),
- ('FR', _('Friesland')),
- ('GL', _('Gelderland')),
- ('GR', _('Groningen')),
- ('LB', _('Limburg')),
- ('NB', _('Noord-Brabant')),
- ('NH', _('Noord-Holland')),
- ('OV', _('Overijssel')),
- ('UT', _('Utrecht')),
- ('ZE', _('Zeeland')),
- ('ZH', _('Zuid-Holland')),
- )