fix settings: no tabs, moved malfunctioning docstring to a comment above

This commit is contained in:
Thomas Waldmann 2014-06-06 23:37:27 +02:00
parent 077b91c0dd
commit 5c4f8203eb
2 changed files with 7 additions and 11 deletions

View File

@ -29,13 +29,9 @@ INSTALLED_APPS += (
'debug_toolbar',
)
# For language translations
LANGUAGES = (
# translations - for details, see:
# https://docs.djangoproject.com/en/dev/topics/i18n/translation/#message-files and
# https://docs.djangoproject.com/en/dev/topics/i18n/translation/#how-django-discovers-language-preference
LANGUAGES += (
('fr', gettext_noop('French')),
"""
see https://docs.djangoproject.com/en/dev/topics/i18n/translation/#message-files and
https://docs.djangoproject.com/en/dev/topics/i18n/translation/#how-django-discovers-language-preference
for details
('de', _('German')),
"""
) + LANGUAGES
)