From 540616fdf3b3a5ab4675a1b1eab2c262491dc1e6 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 24 Aug 2014 23:59:22 +0200 Subject: [PATCH] fix LANGUAGES in dev settings - they are ADDITIONAL to the base settings, remove duplicates --- nsupdate/settings/dev.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/nsupdate/settings/dev.py b/nsupdate/settings/dev.py index 1ef5540..8c21cc8 100644 --- a/nsupdate/settings/dev.py +++ b/nsupdate/settings/dev.py @@ -34,9 +34,5 @@ INSTALLED_APPS += ( # https://docs.djangoproject.com/en/dev/topics/i18n/translation/#how-django-discovers-language-preference LANGUAGES += ( # note: for the development install we also offer unfinished translations: - ('en', gettext_noop('English')), - ('de', gettext_noop('German')), - ('fr', gettext_noop('French')), - ('it', gettext_noop('Italian')), ('pl', gettext_noop('Polish')), )