/django/contrib/localflavor/be/be_provinces.py
https://code.google.com/p/mango-py/ · Python · 16 lines · 14 code · 1 blank · 1 comment · 0 complexity · cc9ab89a7dcc8d35762850b5ebb5f577 MD5 · raw file
- from django.utils.translation import ugettext_lazy as _
- # ISO codes
- PROVINCE_CHOICES = (
- ('VAN', _('Antwerp')),
- ('BRU', _('Brussels')),
- ('VOV', _('East Flanders')),
- ('VBR', _('Flemish Brabant')),
- ('WHT', _('Hainaut')),
- ('WLG', _('Liege')),
- ('VLI', _('Limburg')),
- ('WLX', _('Luxembourg')),
- ('WNA', _('Namur')),
- ('WBR', _('Walloon Brabant')),
- ('VWV', _('West Flanders'))
- )