Ticket #8415: nl_provinces.patch

File nl_provinces.patch, 543 bytes (added by Niels Poppe, 16 years ago)

correct spelling of the province 'Drenthe'

  • django/trunk/django/contrib/localflavor/nl/nl_provinces.py

     
    11from django.utils.translation import ugettext_lazy as _
    22
    33PROVINCE_CHOICES = (
    4     ('DR', _('Drente')),
     4    ('DR', _('Drenthe')),
    55    ('FL', _('Flevoland')),
    66    ('FR', _('Friesland')),
    77    ('GL', _('Gelderland')),
Back to Top