~canonical-django/canonical-django/project-template

« back to all changes in this revision

Viewing changes to trunk/python-packages/django/contrib/localflavor/es/es_regions.py

  • Committer: Matthew Nuzum
  • Date: 2008-11-13 05:46:03 UTC
  • Revision ID: matthew.nuzum@canonical.com-20081113054603-v0kvr6z6xyexvqt3
adding to version control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 Leon')),
 
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