PageRenderTime 35ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/django/contrib/localflavor/za/za_provinces.py

https://code.google.com/p/mango-py/
Python | 13 lines | 12 code | 1 blank | 0 comment | 0 complexity | 188e770aea069460f49f2e547d09e78c MD5 | raw file
Possible License(s): BSD-3-Clause
  1. from django.utils.translation import gettext_lazy as _
  2. PROVINCE_CHOICES = (
  3. ('EC', _('Eastern Cape')),
  4. ('FS', _('Free State')),
  5. ('GP', _('Gauteng')),
  6. ('KN', _('KwaZulu-Natal')),
  7. ('LP', _('Limpopo')),
  8. ('MP', _('Mpumalanga')),
  9. ('NC', _('Northern Cape')),
  10. ('NW', _('North West')),
  11. ('WC', _('Western Cape')),
  12. )