/django/contrib/localflavor/se/se_counties.py
Python | 36 lines | 24 code | 1 blank | 11 comment | 0 complexity | 248dc2120d1b54c07008a51989b097c2 MD5 | raw file
Possible License(s): BSD-3-Clause
- # -*- coding: utf-8 -*-
- """
- An alphabetical list of Swedish counties, sorted by codes.
- http://en.wikipedia.org/wiki/Counties_of_Sweden
- This exists in this standalone file so that it's only imported into memory
- when explicitly needed.
- """
- from django.utils.translation import ugettext_lazy as _
- COUNTY_CHOICES = (
- ('AB', _(u'Stockholm')),
- ('AC', _(u'Västerbotten')),
- ('BD', _(u'Norrbotten')),
- ('C', _(u'Uppsala')),
- ('D', _(u'Södermanland')),
- ('E', _(u'Östergötland')),
- ('F', _(u'Jönköping')),
- ('G', _(u'Kronoberg')),
- ('H', _(u'Kalmar')),
- ('I', _(u'Gotland')),
- ('K', _(u'Blekinge')),
- ('M', _(u'Skĺne')),
- ('N', _(u'Halland')),
- ('O', _(u'Västra Götaland')),
- ('S', _(u'Värmland')),
- ('T', _(u'Örebro')),
- ('U', _(u'Västmanland')),
- ('W', _(u'Dalarna')),
- ('X', _(u'Gävleborg')),
- ('Y', _(u'Västernorrland')),
- ('Z', _(u'Jämtland')),
- )