Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
2007-03-31 17:14:37 +08:00
|
|
|
"""
|
|
|
|
An alphabetical list of Norwegian municipalities (fylker) fro use as `choices`
|
|
|
|
in a formfield.
|
|
|
|
|
|
|
|
This exists in this standalone file so that it's on ly imported into memory
|
|
|
|
when explicitly needed.
|
|
|
|
"""
|
|
|
|
|
|
|
|
MUNICIPALITY_CHOICES = (
|
|
|
|
('akershus', u'Akershus'),
|
|
|
|
('austagder', u'Aust-Agder'),
|
|
|
|
('buskerud', u'Buskerud'),
|
|
|
|
('finnmark', u'Finnmark'),
|
|
|
|
('hedmark', u'Hedmark'),
|
|
|
|
('hordaland', u'Hordaland'),
|
|
|
|
('janmayen', u'Jan Mayen'),
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
('moreogromsdal', u'Møre og Romsdal'),
|
|
|
|
('nordtrondelag', u'Nord-Trøndelag'),
|
2007-03-31 17:14:37 +08:00
|
|
|
('nordland', u'Nordland'),
|
|
|
|
('oppland', u'Oppland'),
|
|
|
|
('oslo', u'Oslo'),
|
|
|
|
('rogaland', u'Rogaland'),
|
|
|
|
('sognogfjordane', u'Sogn og Fjordane'),
|
|
|
|
('svalbard', u'Svalbard'),
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
('sortrondelag', u'Sør-Trøndelag'),
|
2007-03-31 17:14:37 +08:00
|
|
|
('telemark', u'Telemark'),
|
|
|
|
('troms', u'Troms'),
|
|
|
|
('vestagder', u'Vest-Agder'),
|
|
|
|
('vestfold', u'Vestfold'),
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
('ostfold', u'Østfold')
|
2007-03-31 17:14:37 +08:00
|
|
|
)
|