es_regions.py 650 B

1234567891011121314151617181920212223
  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. )