summaryrefslogtreecommitdiff
path: root/includes/language.inc
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-12-10 22:27:08 +0100
committerMinteck <contact@minteck.org>2022-12-10 22:27:08 +0100
commit30303a3ad0d0f31d93c25f42bfd10d70e8277b72 (patch)
tree622964e7895c759232aff28230394aa5cc747be9 /includes/language.inc
parentf850a8a53efd719fef6c8784c5af7b89dd9a6a2f (diff)
downloadpluralconnect-30303a3ad0d0f31d93c25f42bfd10d70e8277b72.tar.gz
pluralconnect-30303a3ad0d0f31d93c25f42bfd10d70e8277b72.tar.bz2
pluralconnect-30303a3ad0d0f31d93c25f42bfd10d70e8277b72.zip
Update
Diffstat (limited to 'includes/language.inc')
-rw-r--r--includes/language.inc14
1 files changed, 14 insertions, 0 deletions
diff --git a/includes/language.inc b/includes/language.inc
new file mode 100644
index 0000000..ddeee3b
--- /dev/null
+++ b/includes/language.inc
@@ -0,0 +1,14 @@
+<?php
+
+if ($_SERVER['HTTP_HOST'] === "fr.equestria.horse") {
+ $default = "fr";
+} else {
+ $default = "en";
+}
+
+$lf = $_COOKIE['PEH2_LANGUAGE'] ?? $default;
+
+if (str_contains("/", $lf)) $lf = "en";
+if (!file_exists($_SERVER['DOCUMENT_ROOT'] . "/i18n/" . $lf . ".json")) $lf = "en";
+
+$lang = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/i18n/" . $lf . ".json"), true); \ No newline at end of file