# -*- 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
COUNTY_CHOICES = (
('AB', _(u'Stockholm')),
('AC', _(u'Vsterbotten')),
('BD', _(u'Norrbotten')),
('C', _(u'Uppsala')),
('D', _(u'Sdermanland')),
('E', _(u'stergtland')),
('F', _(u'Jnkping')),
('G', _(u'Kronoberg')),
('H', _(u'Kalmar')),
('I', _(u'Gotland')),
('K', _(u'Blekinge')),
('M', _(u'Skne')),
('N', _(u'Halland')),
('O', _(u'Vstra Gtaland')),
('S', _(u'Vrmland')),
('T', _(u'rebro')),
('U', _(u'Vstmanland')),
('W', _(u'Dalarna')),
('X', _(u'Gvleborg')),
('Y', _(u'Vsternorrland')),
('Z', _(u'Jmtland')),
)
|