|
Revision 8443, 421 bytes
(checked in by mtredinnick, 2 months ago)
|
Fixed #8415 -- Fixed a typo in the localflavor for the Netherlands. Thanks,
Niels Poppe.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 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 |
) |
|---|