2007-09-14 06:16:59 +08:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
|
|
PROVINCE_CHOICES = (
|
2008-08-20 04:27:41 +08:00
|
|
|
('DR', _('Drenthe')),
|
2007-09-14 06:16:59 +08:00
|
|
|
('FL', _('Flevoland')),
|
|
|
|
('FR', _('Friesland')),
|
|
|
|
('GL', _('Gelderland')),
|
|
|
|
('GR', _('Groningen')),
|
|
|
|
('LB', _('Limburg')),
|
|
|
|
('NB', _('Noord-Brabant')),
|
|
|
|
('NH', _('Noord-Holland')),
|
|
|
|
('OV', _('Overijssel')),
|
|
|
|
('UT', _('Utrecht')),
|
|
|
|
('ZE', _('Zeeland')),
|
|
|
|
('ZH', _('Zuid-Holland')),
|
|
|
|
)
|