summaryrefslogtreecommitdiffstats
path: root/webapp/django/contrib/localflavor/za/za_provinces.py
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/django/contrib/localflavor/za/za_provinces.py')
-rw-r--r--webapp/django/contrib/localflavor/za/za_provinces.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/webapp/django/contrib/localflavor/za/za_provinces.py b/webapp/django/contrib/localflavor/za/za_provinces.py
new file mode 100644
index 0000000000..0bc6fe14b3
--- /dev/null
+++ b/webapp/django/contrib/localflavor/za/za_provinces.py
@@ -0,0 +1,13 @@
+from django.utils.translation import gettext_lazy as _
+
+PROVINCE_CHOICES = (
+ ('EC', _('Eastern Cape')),
+ ('FS', _('Free State')),
+ ('GP', _('Gauteng')),
+ ('KN', _('KwaZulu-Natal')),
+ ('LP', _('Limpopo')),
+ ('MP', _('Mpumalanga')),
+ ('NC', _('Northern Cape')),
+ ('NW', _('North West')),
+ ('WC', _('Western Cape')),
+)