You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
421 B
17 lines
421 B
|
13 years ago
|
from django.utils.translation import ugettext_lazy as _
|
||
|
|
|
||
|
|
PROVINCE_CHOICES = (
|
||
|
|
('DR', _('Drenthe')),
|
||
|
|
('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')),
|
||
|
|
)
|