App Engine Python SDK version 1.7.4 (2)
[gae.git] / python / lib / django_1_4 / django / contrib / localflavor / mx / mx_states.py
blob2aba63ef2611a5b39b1b4be1c35bfb6d7d0cb8cb
1 # -*- coding: utf-8 -*-
2 """
3 A list of Mexican states for use as `choices` in a formfield.
5 This exists in this standalone file so that it's only imported into memory
6 when explicitly needed.
7 """
9 from django.utils.translation import ugettext_lazy as _
11 # All 31 states, plus the `Distrito Federal`.
12 STATE_CHOICES = (
13 ('AGU', _(u'Aguascalientes')),
14 ('BCN', _(u'Baja California')),
15 ('BCS', _(u'Baja California Sur')),
16 ('CAM', _(u'Campeche')),
17 ('CHH', _(u'Chihuahua')),
18 ('CHP', _(u'Chiapas')),
19 ('COA', _(u'Coahuila')),
20 ('COL', _(u'Colima')),
21 ('DIF', _(u'Distrito Federal')),
22 ('DUR', _(u'Durango')),
23 ('GRO', _(u'Guerrero')),
24 ('GUA', _(u'Guanajuato')),
25 ('HID', _(u'Hidalgo')),
26 ('JAL', _(u'Jalisco')),
27 ('MEX', _(u'Estado de México')),
28 ('MIC', _(u'Michoacán')),
29 ('MOR', _(u'Morelos')),
30 ('NAY', _(u'Nayarit')),
31 ('NLE', _(u'Nuevo León')),
32 ('OAX', _(u'Oaxaca')),
33 ('PUE', _(u'Puebla')),
34 ('QUE', _(u'Querétaro')),
35 ('ROO', _(u'Quintana Roo')),
36 ('SIN', _(u'Sinaloa')),
37 ('SLP', _(u'San Luis Potosí')),
38 ('SON', _(u'Sonora')),
39 ('TAB', _(u'Tabasco')),
40 ('TAM', _(u'Tamaulipas')),
41 ('TLA', _(u'Tlaxcala')),
42 ('VER', _(u'Veracruz')),
43 ('YUC', _(u'Yucatán')),
44 ('ZAC', _(u'Zacatecas')),