summaryrefslogtreecommitdiffstats
path: root/webapp/django/contrib/localflavor/de/de_states.py
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/django/contrib/localflavor/de/de_states.py')
-rw-r--r--webapp/django/contrib/localflavor/de/de_states.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/webapp/django/contrib/localflavor/de/de_states.py b/webapp/django/contrib/localflavor/de/de_states.py
new file mode 100644
index 0000000000..2872a7871a
--- /dev/null
+++ b/webapp/django/contrib/localflavor/de/de_states.py
@@ -0,0 +1,21 @@
+# -*- 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')),
+)