You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
602 B
22 lines
602 B
|
13 years ago
|
# -*- 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')),
|
||
|
|
)
|