2007-05-01 11:10:10 +08:00
|
|
|
# -*- coding: utf-8 -*
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2007-05-01 11:10:10 +08:00
|
|
|
|
|
|
|
STATE_CHOICES = (
|
|
|
|
('AG', _('Aargau')),
|
|
|
|
('AI', _('Appenzell Innerrhoden')),
|
|
|
|
('AR', _('Appenzell Ausserrhoden')),
|
|
|
|
('BS', _('Basel-Stadt')),
|
|
|
|
('BL', _('Basel-Land')),
|
|
|
|
('BE', _('Berne')),
|
|
|
|
('FR', _('Fribourg')),
|
|
|
|
('GE', _('Geneva')),
|
|
|
|
('GL', _('Glarus')),
|
|
|
|
('GR', _('Graubuenden')),
|
|
|
|
('JU', _('Jura')),
|
|
|
|
('LU', _('Lucerne')),
|
|
|
|
('NE', _('Neuchatel')),
|
|
|
|
('NW', _('Nidwalden')),
|
|
|
|
('OW', _('Obwalden')),
|
|
|
|
('SH', _('Schaffhausen')),
|
|
|
|
('SZ', _('Schwyz')),
|
|
|
|
('SO', _('Solothurn')),
|
|
|
|
('SG', _('St. Gallen')),
|
|
|
|
('TG', _('Thurgau')),
|
|
|
|
('TI', _('Ticino')),
|
|
|
|
('UR', _('Uri')),
|
|
|
|
('VS', _('Valais')),
|
|
|
|
('VD', _('Vaud')),
|
|
|
|
('ZG', _('Zug')),
|
|
|
|
('ZH', _('Zurich'))
|
|
|
|
)
|