diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-08-19 20:27:41 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-08-19 20:27:41 +0000 |
| commit | ba937e55aeb1328458f1e16f9bca4137512a6fec (patch) | |
| tree | ca6c37f52c488e1c8d696fc5f9c920b6967288b9 | |
| parent | f748fa27629b8824d30866e4687bb91c264dfb65 (diff) | |
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
| -rw-r--r-- | django/contrib/localflavor/nl/nl_provinces.py | 2 |
1 files changed, 1 insertions, 1 deletions
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')), |
