/django/contrib/localflavor/be/be_regions.py

https://code.google.com/p/mango-py/ · Python · 8 lines · 6 code · 1 blank · 1 comment · 0 complexity · da4638117c7c0609c1729070cc9cc1ff MD5 · raw file

  1. from django.utils.translation import ugettext_lazy as _
  2. # ISO codes
  3. REGION_CHOICES = (
  4. ('BRU', _('Brussels Capital Region')),
  5. ('VLG', _('Flemish Region')),
  6. ('WAL', _('Wallonia'))
  7. )