Author |
Default web page is German...why? |
Dwarden Cadet CHIMERA
Joined: June 07, 2001 Posts: 1072 From: Czech Republic
| Posted: 2001-09-26 15:22  
I selected english i let it english but any reload ends on German !
_________________ ... Ideas? ... that's Ocean w/o borders !
|
Chromix Cadet
Joined: June 29, 2001 Posts: 3052
| Posted: 2001-10-04 12:01  
Well.. depends on which language version of IE you´ve installed I guess...
switch (XLang) {
case "DE":
document.URL = "http://www.darkspace.net/de/index_lobby.htm?sid=";
break;
case "EN":
document.URL = "http://www.darkspace.net/en/index_lobby.htm?sid=";
break;
default:
if (navigator.language == "de") {
document.URL = "http://www.darkspace.net/de?sid=";
} else {
document.URL = "http://www.darkspace.net/en?sid=";
}
break;
}
_________________
|
Dwarden Cadet CHIMERA
Joined: June 07, 2001 Posts: 1072 From: Czech Republic
| Posted: 2001-10-04 13:45  
English was this !
and it's already fixed!
Locking!
_________________ ... Ideas? ... that's Ocean w/o borders !
|