app/django/contrib/localflavor/za/za_provinces.py
author Todd Larsen <tlarsen@google.com>
Thu, 20 Nov 2008 18:06:43 +0000
changeset 511 52557918ec8f
parent 54 03e267d67478
permissions -rw-r--r--
Ignore "dot" directories like .hg and .svn by default. Patch by: Todd Larsen

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