From ba937e55aeb1328458f1e16f9bca4137512a6fec Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Tue, 19 Aug 2008 20:27:41 +0000 Subject: [PATCH] Fixed #8415 -- Fixed a typo in the localflavor for the Netherlands. Thanks, Niels Poppe. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8443 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/localflavor/nl/nl_provinces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/localflavor/nl/nl_provinces.py b/django/contrib/localflavor/nl/nl_provinces.py index 8964adfac0..602917debc 100644 --- a/django/contrib/localflavor/nl/nl_provinces.py +++ b/django/contrib/localflavor/nl/nl_provinces.py @@ -1,7 +1,7 @@ from django.utils.translation import ugettext_lazy as _ PROVINCE_CHOICES = ( - ('DR', _('Drente')), + ('DR', _('Drenthe')), ('FL', _('Flevoland')), ('FR', _('Friesland')), ('GL', _('Gelderland')),