~ubuntu-branches/debian/sid/python-django/sid

« back to all changes in this revision

Viewing changes to django/contrib/localflavor/ro/ro_counties.py

  • Committer: Package Import Robot
  • Author(s): Luke Faraone
  • Date: 2013-11-07 15:33:49 UTC
  • mfrom: (1.3.12)
  • Revision ID: package-import@ubuntu.com-20131107153349-e31sc149l2szs3jb
Tags: 1.6-1
* New upstream version. Closes: #557474, #724637.
* python-django now also suggests the installation of ipython,
  bpython, python-django-doc, and libgdal1.
  Closes: #636511, #686333, #704203
* Set package maintainer to Debian Python Modules Team.
* Bump standards version to 3.9.5, no changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: utf-8 -*-
2
 
"""
3
 
A list of Romanian counties as `choices` in a formfield.
4
 
 
5
 
This exists as a standalone file so that it's only imported into memory when
6
 
explicitly needed.
7
 
"""
8
 
from __future__ import unicode_literals
9
 
 
10
 
COUNTIES_CHOICES = (
11
 
    ('AB', 'Alba'),
12
 
    ('AR', 'Arad'),
13
 
    ('AG', 'Argeş'),
14
 
    ('BC', 'Bacău'),
15
 
    ('BH', 'Bihor'),
16
 
    ('BN', 'Bistriţa-Năsăud'),
17
 
    ('BT', 'Botoşani'),
18
 
    ('BV', 'Braşov'),
19
 
    ('BR', 'Brăila'),
20
 
    ('B',  'Bucureşti'),
21
 
    ('BZ', 'Buzău'),
22
 
    ('CS', 'Caraş-Severin'),
23
 
    ('CL', 'Călăraşi'),
24
 
    ('CJ', 'Cluj'),
25
 
    ('CT', 'Constanţa'),
26
 
    ('CV', 'Covasna'),
27
 
    ('DB', 'Dâmboviţa'),
28
 
    ('DJ', 'Dolj'),
29
 
    ('GL', 'Galaţi'),
30
 
    ('GR', 'Giurgiu'),
31
 
    ('GJ', 'Gorj'),
32
 
    ('HR', 'Harghita'),
33
 
    ('HD', 'Hunedoara'),
34
 
    ('IL', 'Ialomiţa'),
35
 
    ('IS', 'Iaşi'),
36
 
    ('IF', 'Ilfov'),
37
 
    ('MM', 'Maramureş'),
38
 
    ('MH', 'Mehedinţi'),
39
 
    ('MS', 'Mureş'),
40
 
    ('NT', 'Neamţ'),
41
 
    ('OT', 'Olt'),
42
 
    ('PH', 'Prahova'),
43
 
    ('SM', 'Satu Mare'),
44
 
    ('SJ', 'Sălaj'),
45
 
    ('SB', 'Sibiu'),
46
 
    ('SV', 'Suceava'),
47
 
    ('TR', 'Teleorman'),
48
 
    ('TM', 'Timiş'),
49
 
    ('TL', 'Tulcea'),
50
 
    ('VS', 'Vaslui'),
51
 
    ('VL', 'Vâlcea'),
52
 
    ('VN', 'Vrancea'),
53
 
)