20 lines
No EOL
695 B
HTML
20 lines
No EOL
695 B
HTML
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Redirecting…</title>
|
|
<meta http-equiv="refresh" content="0; url=/en/">
|
|
<script>
|
|
const userLang = navigator.language ?. substring(0, 2) || "en";
|
|
const supported = ["be","de","en","et","fi","fy","gl","lv","nb_NO","nl","ta","uz"]; // z. B. ["en","de"] Fallback auf Englisch, falls Sprache nicht unterstützt
|
|
const targetLang = supported.includes(userLang)
|
|
? userLang
|
|
: "en";
|
|
window.location.replace(`/${targetLang}/`);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>Redirecting…</p>
|
|
</body>
|
|
</html> |