PageRenderTime 7ms CodeModel.GetById 6ms RepoModel.GetById 0ms app.codeStats 0ms

/django/contrib/localflavor/at/at_states.py

https://code.google.com/p/mango-py/
Python | 14 lines | 12 code | 1 blank | 1 comment | 0 complexity | 5be7854b366f4ad67091d8fa73f10de0 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. # -*- coding: utf-8 -*
  2. from django.utils.translation import ugettext_lazy as _
  3. STATE_CHOICES = (
  4. ('BL', _('Burgenland')),
  5. ('KA', _('Carinthia')),
  6. ('NO', _('Lower Austria')),
  7. ('OO', _('Upper Austria')),
  8. ('SA', _('Salzburg')),
  9. ('ST', _('Styria')),
  10. ('TI', _('Tyrol')),
  11. ('VO', _('Vorarlberg')),
  12. ('WI', _('Vienna')),
  13. )