| author | ymh <ymh.work@gmail.com> |
| Tue, 25 May 2010 19:06:11 +0200 | |
| changeset 31 | a727d83c8f88 |
| parent 0 | 0d40e90630ef |
| permissions | -rw-r--r-- |
| 0 | 1 |
from django.utils.translation import ugettext_lazy as _ |
2 |
||
3 |
PROVINCE_CHOICES = ( |
|
4 |
('DR', _('Drenthe')), |
|
5 |
('FL', _('Flevoland')), |
|
6 |
('FR', _('Friesland')), |
|
7 |
('GL', _('Gelderland')), |
|
8 |
('GR', _('Groningen')), |
|
9 |
('LB', _('Limburg')), |
|
10 |
('NB', _('Noord-Brabant')), |
|
11 |
('NH', _('Noord-Holland')), |
|
12 |
('OV', _('Overijssel')), |
|
13 |
('UT', _('Utrecht')), |
|
14 |
('ZE', _('Zeeland')), |
|
15 |
('ZH', _('Zuid-Holland')), |
|
16 |
) |