app/django/contrib/localflavor/at/at_states.py
author Lennard de Rijk <ljvderijk@gmail.com>
Tue, 03 Feb 2009 13:26:34 +0000
changeset 1199 4e69a5f30a9a
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Fixed whitespace in /soc/models/group_app.py Patch by: Lennard de Rijk Reviewed by: to-be-reviewed

# -*- coding: utf-8 -*
from django.utils.translation import ugettext_lazy as _

STATE_CHOICES = (
    ('BL', _('Burgenland')),
    ('KA', _('Carinthia')),
    ('NO', _('Lower Austria')),
    ('OO', _('Upper Austria')),
    ('SA', _('Salzburg')),
    ('ST', _('Styria')),
    ('TI', _('Tyrol')),
    ('VO', _('Vorarlberg')),
    ('WI', _('Vienna')),
)