/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

  1. from django.utils.translation import ugettext_lazy as _
  2. # ISO codes
  3. PROVINCE_CHOICES = (
  4. ('VAN', _('Antwerp')),
  5. ('BRU', _('Brussels')),
  6. ('VOV', _('East Flanders')),
  7. ('VBR', _('Flemish Brabant')),
  8. ('WHT', _('Hainaut')),
  9. ('WLG', _('Liege')),
  10. ('VLI', _('Limburg')),
  11. ('WLX', _('Luxembourg')),
  12. ('WNA', _('Namur')),
  13. ('WBR', _('Walloon Brabant')),
  14. ('VWV', _('West Flanders'))
  15. )