~ubuntu-branches/ubuntu/jaunty/python-django/jaunty

« back to all changes in this revision

Viewing changes to django/contrib/localflavor/es/es_provinces.py

  • Committer: Bazaar Package Importer
  • Author(s): Scott James Remnant, Eddy Mulyono
  • Date: 2008-09-16 12:18:47 UTC
  • mfrom: (1.1.5 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080916121847-mg225rg5mnsdqzr0
Tags: 1.0-1ubuntu1
* Merge from Debian (LP: #264191), remaining changes:
  - Run test suite on build.

[Eddy Mulyono]
* Update patch to workaround network test case failures.

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
PROVINCE_CHOICES = (
 
5
    ('01', _('Arava')),
 
6
    ('02', _('Albacete')),
 
7
    ('03', _('Alacant')),
 
8
    ('04', _('Almeria')),
 
9
    ('05', _('Avila')),
 
10
    ('06', _('Badajoz')),
 
11
    ('07', _('Illes Balears')),
 
12
    ('08', _('Barcelona')),
 
13
    ('09', _('Burgos')),
 
14
    ('10', _('Caceres')),
 
15
    ('11', _('Cadiz')),
 
16
    ('12', _('Castello')),
 
17
    ('13', _('Ciudad Real')),
 
18
    ('14', _('Cordoba')),
 
19
    ('15', _('A Coruna')),
 
20
    ('16', _('Cuenca')),
 
21
    ('17', _('Girona')),
 
22
    ('18', _('Granada')),
 
23
    ('19', _('Guadalajara')),
 
24
    ('20', _('Guipuzkoa')),
 
25
    ('21', _('Huelva')),
 
26
    ('22', _('Huesca')),
 
27
    ('23', _('Jaen')),
 
28
    ('24', _('Leon')),
 
29
    ('25', _('Lleida')),
 
30
    ('26', _('La Rioja')),
 
31
    ('27', _('Lugo')),
 
32
    ('28', _('Madrid')),
 
33
    ('29', _('Malaga')),
 
34
    ('30', _('Murcia')),
 
35
    ('31', _('Navarre')),
 
36
    ('32', _('Ourense')),
 
37
    ('33', _('Asturias')),
 
38
    ('34', _('Palencia')),
 
39
    ('35', _('Las Palmas')),
 
40
    ('36', _('Pontevedra')),
 
41
    ('37', _('Salamanca')),
 
42
    ('38', _('Santa Cruz de Tenerife')),
 
43
    ('39', _('Cantabria')),
 
44
    ('40', _('Segovia')),
 
45
    ('41', _('Seville')),
 
46
    ('42', _('Soria')),
 
47
    ('43', _('Tarragona')),
 
48
    ('44', _('Teruel')),
 
49
    ('45', _('Toledo')),
 
50
    ('46', _('Valencia')),
 
51
    ('47', _('Valladolid')),
 
52
    ('48', _('Bizkaia')),
 
53
    ('49', _('Zamora')),
 
54
    ('50', _('Zaragoza')),
 
55
    ('51', _('Ceuta')),
 
56
    ('52', _('Melilla')),
 
57
)
 
58