| 1 | # -*- coding: utf-8 -*-
|
|---|
| 2 | from django.utils.translation import ugettext_lazy as _
|
|---|
| 3 |
|
|---|
| 4 | REGION_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 |
|
|---|