summaryrefslogtreecommitdiffstats
path: root/webapp/django/contrib/localflavor/nl/nl_provinces.py
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/django/contrib/localflavor/nl/nl_provinces.py')
-rw-r--r--webapp/django/contrib/localflavor/nl/nl_provinces.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/webapp/django/contrib/localflavor/nl/nl_provinces.py b/webapp/django/contrib/localflavor/nl/nl_provinces.py
new file mode 100644
index 0000000000..602917debc
--- /dev/null
+++ b/webapp/django/contrib/localflavor/nl/nl_provinces.py
@@ -0,0 +1,16 @@
+from django.utils.translation import ugettext_lazy as _
+
+PROVINCE_CHOICES = (
+ ('DR', _('Drenthe')),
+ ('FL', _('Flevoland')),
+ ('FR', _('Friesland')),
+ ('GL', _('Gelderland')),
+ ('GR', _('Groningen')),
+ ('LB', _('Limburg')),
+ ('NB', _('Noord-Brabant')),
+ ('NH', _('Noord-Holland')),
+ ('OV', _('Overijssel')),
+ ('UT', _('Utrecht')),
+ ('ZE', _('Zeeland')),
+ ('ZH', _('Zuid-Holland')),
+)