app/django/contrib/localflavor/za/za_provinces.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Wed, 04 Mar 2009 17:33:48 +0000
changeset 1632 73a9bc6a85d9
parent 54 03e267d67478
permissions -rw-r--r--
Remove unused imports and rename too short variable names in soc.views.helper.decorators module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed

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')),
)