Set default language for model/form translation strings. Have to changed for English installation!
(Template strings are translated automatically by selected browser language)
This commit is contained in:
parent
8c8a3e9fc2
commit
412e672ea1
@ -4,20 +4,22 @@
|
|||||||
openslides.default.settings
|
openslides.default.settings
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
Global settings file.
|
Global Django settings file for OpenSlides.
|
||||||
|
|
||||||
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
||||||
:license: GNU GPL, see LICENSE for more details.
|
:license: GNU GPL, see LICENSE for more details.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# Django settings for openslides project.
|
|
||||||
from openslides_settings import *
|
from openslides_settings import *
|
||||||
|
|
||||||
|
# Use 'DEBUG = True' to get more details for server errors (Default for relaeses: 'False')
|
||||||
DEBUG = True
|
DEBUG = True
|
||||||
TEMPLATE_DEBUG = DEBUG
|
TEMPLATE_DEBUG = DEBUG
|
||||||
|
|
||||||
TIME_ZONE = 'Europe/Berlin'
|
TIME_ZONE = 'Europe/Berlin'
|
||||||
|
|
||||||
|
# Default language for model/form translation strings
|
||||||
|
LANGUAGE_CODE = 'de'
|
||||||
|
|
||||||
# Make this unique, and don't share it with anybody.
|
# Make this unique, and don't share it with anybody.
|
||||||
SECRET_KEY = '=(v@$58k$fcl4y8t2#q15y-9p=^45y&!$!ap$7xo6ub$akg-!5'
|
SECRET_KEY = '=(v@$58k$fcl4y8t2#q15y-9p=^45y&!$!ap$7xo6ub$akg-!5'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user