/django/contrib/localflavor/es/es_regions.py

https://code.google.com/p/mango-py/ · Python · 23 lines · 20 code · 2 blank · 1 comment · 0 complexity · a70b62eb5fe313ff31df6826e5007cac MD5 · raw file

  1. # -*- coding: utf-8 -*-
  2. from django.utils.translation import ugettext_lazy as _
  3. REGION_CHOICES = (
  4. ('AN', _('Andalusia')),
  5. ('AR', _('Aragon')),
  6. ('O', _('Principality of Asturias')),
  7. ('IB', _('Balearic Islands')),
  8. ('PV', _('Basque Country')),
  9. ('CN', _('Canary Islands')),
  10. ('S', _('Cantabria')),
  11. ('CM', _('Castile-La Mancha')),
  12. ('CL', _('Castile and Leon')),
  13. ('CT', _('Catalonia')),
  14. ('EX', _('Extremadura')),
  15. ('GA', _('Galicia')),
  16. ('LO', _('La Rioja')),
  17. ('M', _('Madrid')),
  18. ('MU', _('Region of Murcia')),
  19. ('NA', _('Foral Community of Navarre')),
  20. ('VC', _('Valencian Community')),
  21. )