22 lines
No EOL
576 B
HTML
22 lines
No EOL
576 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", "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> |