~ubuntu-branches/ubuntu/quantal/python-django/quantal-security

« back to all changes in this revision

Viewing changes to django/contrib/localflavor/ie/ie_counties.py

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2010-05-21 07:52:55 UTC
  • mfrom: (1.3.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 28.
  • Revision ID: james.westby@ubuntu.com-20100521075255-ii78v1dyfmyu3uzx
Tags: upstream-1.2
ImportĀ upstreamĀ versionĀ 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""
 
2
Sources:
 
3
    Irish Counties: http://en.wikipedia.org/wiki/Counties_of_Ireland    
 
4
"""
 
5
from django.utils.translation import ugettext_lazy as _
 
6
 
 
7
IE_COUNTY_CHOICES = (
 
8
    ('antrim', _('Antrim')),
 
9
    ('armagh', _('Armagh')),
 
10
    ('carlow', _('Carlow')),
 
11
    ('cavan', _('Cavan')),
 
12
    ('clare', _('Clare')),
 
13
    ('cork', _('Cork')),
 
14
    ('derry', _('Derry')),
 
15
    ('donegal', _('Donegal')),
 
16
    ('down', _('Down')),
 
17
    ('dublin', _('Dublin')),
 
18
    ('fermanagh', _('Fermanagh')),
 
19
    ('galway', _('Galway')),
 
20
    ('kerry', _('Kerry')),
 
21
    ('kildare', _('Kildare')),
 
22
    ('kilkenny', _('Kilkenny')),
 
23
    ('laois', _('Laois')),
 
24
    ('leitrim', _('Leitrim')),
 
25
    ('limerick', _('Limerick')),
 
26
    ('longford', _('Longford')),
 
27
    ('louth', _('Louth')),
 
28
    ('mayo', _('Mayo')),
 
29
    ('meath', _('Meath')),
 
30
    ('monaghan', _('Monaghan')),
 
31
    ('offaly', _('Offaly')),
 
32
    ('roscommon', _('Roscommon')),
 
33
    ('sligo', _('Sligo')),
 
34
    ('tipperary', _('Tipperary')),
 
35
    ('tyrone', _('Tyrone')),
 
36
    ('waterford', _('Waterford')),
 
37
    ('westmeath', _('Westmeath')),
 
38
    ('wexford', _('Wexford')),
 
39
    ('wicklow', _('Wicklow')),
 
40
)