Move parameter construction into a seperate module
This is part of an effort to make base.py less bloated
and have it's methods be more cohesive.
Patch by: Sverre Rabbelier
+ − # -*- coding: utf-8 -*
+ − from django.utils.translation import ugettext_lazy as _
+ −
+ − STATE_CHOICES = (
+ − ('BW', _('Baden-Wuerttemberg')),
+ − ('BY', _('Bavaria')),
+ − ('BE', _('Berlin')),
+ − ('BB', _('Brandenburg')),
+ − ('HB', _('Bremen')),
+ − ('HH', _('Hamburg')),
+ − ('HE', _('Hessen')),
+ − ('MV', _('Mecklenburg-Western Pomerania')),
+ − ('NI', _('Lower Saxony')),
+ − ('NW', _('North Rhine-Westphalia')),
+ − ('RP', _('Rhineland-Palatinate')),
+ − ('SL', _('Saarland')),
+ − ('SN', _('Saxony')),
+ − ('ST', _('Saxony-Anhalt')),
+ − ('SH', _('Schleswig-Holstein')),
+ − ('TH', _('Thuringia')),
+ − )