Hello,
It is possible to force the language setting into the admin login form?
I've:
deutsch, english, dutch
And I wish to have english selected by default.
How can I make this?
I'm a little lost with the english setting in this page....
Many thanks in advance for your help.
Dominique
Force admin language?
there should be two possibilities...
1.
contenido/includes/functions.i18n.php
you'll find something link this
change the places like this
2.
something i noticed when i tried mozilla
change the way the browser accepts the languages
on mozilla it should be (standard) en_US
(on mozilla there is always en_US selected by default when i try to login into contenido )
there must be something similar in internet explorer...(a similar configuration option)
1.
contenido/includes/functions.i18n.php
you'll find something link this
Code: Alles auswählen
'de_DE' => array('German', 'Germany', 'ISO8859-1', 'de', 'de'),
'en_US' => array('English', 'United States', 'ISO8859-1', 'en', 'en'),
Code: Alles auswählen
'en_US' => array('English', 'United States', 'ISO8859-1', 'en', 'en'),
'de_DE' => array('German', 'Germany', 'ISO8859-1', 'de', 'de'),
something i noticed when i tried mozilla
change the way the browser accepts the languages
on mozilla it should be (standard) en_US
(on mozilla there is always en_US selected by default when i try to login into contenido )
there must be something similar in internet explorer...(a similar configuration option)