From a1fba4e843901eb35820c14d83a5d7d5622432fe Mon Sep 17 00:00:00 2001 From: Petter Reinholdtsen Date: Sat, 16 Jan 2016 11:24:57 +0100 Subject: [PATCH] Corrected English name of nb language. --- django/conf/global_settings.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index cbcf5b4ba0..5128a28079 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -1,3 +1,6 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + # Default Django settings. Override these with settings in the module # pointed-to by the DJANGO_SETTINGS_MODULE environment variable. @@ -104,7 +107,7 @@ LANGUAGES = [ ('mn', gettext_noop('Mongolian')), ('mr', gettext_noop('Marathi')), ('my', gettext_noop('Burmese')), - ('nb', gettext_noop('Norwegian Bokmal')), + ('nb', gettext_noop('Norwegian Bokmål')), ('ne', gettext_noop('Nepali')), ('nl', gettext_noop('Dutch')), ('nn', gettext_noop('Norwegian Nynorsk')),