/django/contrib/localflavor/za/za_provinces.py
Python | 13 lines | 12 code | 1 blank | 0 comment | 0 complexity | 188e770aea069460f49f2e547d09e78c MD5 | raw file
Possible License(s): BSD-3-Clause
- 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')),
- )