app/django/contrib/localflavor/za/za_provinces.py
changeset 54 03e267d67478
equal deleted inserted replaced
53:57b4279d8c4e 54:03e267d67478
       
     1 from django.utils.translation import gettext_lazy as _
       
     2 
       
     3 PROVINCE_CHOICES = (
       
     4     ('EC', _('Eastern Cape')),
       
     5     ('FS', _('Free State')),
       
     6     ('GP', _('Gauteng')),
       
     7     ('KN', _('KwaZulu-Natal')),
       
     8     ('LP', _('Limpopo')),
       
     9     ('MP', _('Mpumalanga')),
       
    10     ('NC', _('Northern Cape')),
       
    11     ('NW', _('North West')),
       
    12     ('WC', _('Western Cape')),
       
    13 )