Default Language (and/or disable English)

Did you edit your locale in Admin->Locale area?
Then reset user preferences?
You can also edit the config.php file
Back it up first so you can recover it. If you mess it up.

array (
‘en_us’ => ‘US English’,
‘fr_fr’ => ‘French’,
‘ge_ge’ => ‘German’,
‘es_es’ => ‘Spanish’,
)

To

array (
‘ge_ge’ => ‘German’,
‘en_us’ => ‘US English’,
‘fr_fr’ => ‘French’,
‘es_es’ => ‘Spanish’,
)

Effectively changing the order languages will appear on the login page.

You can also manually set your default language in the config.php file to ge_ge

find

‘default_language’ => ‘en_us’,

and edit it directly to

‘default_language’ => ‘ge_ge’,

Chad