Ticket #4036: es_regions.py

File es_regions.py, 600 bytes (added by Marc Garcia, 17 years ago)

contrib/localflavor/es/es_regions.py (Spain regions file)

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