X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/78a1c41c40bb216e3879220fc544f8ae816d3c1b..463c260d3cf16d2fa2fbcba04bac446165d1a618:/lib/lang.php?ds=sidebyside diff --git a/lib/lang.php b/lib/lang.php index bd7478c..abba168 100644 --- a/lib/lang.php +++ b/lib/lang.php @@ -1,7 +1,9 @@ * Copyright (C) 2015 Jerome Jutteau + * Copyright (C) 2024 Jirafeau project (see AUTHORS.md) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -40,13 +42,15 @@ function t($string_id) return "FIX ME"; } -function t_visitor_langs() { +function t_visitor_langs() +{ $visitor_langs = t_parse_accept_language(); array_push($visitor_langs, "en"); return $visitor_langs; } -function t_parse_accept_language() { +function t_parse_accept_language() +{ if (!isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { return []; } @@ -63,7 +67,8 @@ function t_parse_accept_language() { return $langs; } -function t_in($string_id, $lang) { +function t_in($string_id, $lang) +{ $trans = t_get_json($lang); if ($trans === false) { return false; @@ -74,7 +79,8 @@ function t_in($string_id, $lang) { return $trans[$string_id]; } -function t_get_raw_json($lang) { +function t_get_raw_json($lang) +{ $filename = str_replace("-", "_", $lang); if (preg_match('/[^A-Za-z_\w]/', $filename)) { return false; @@ -90,7 +96,8 @@ function t_get_raw_json($lang) { return $json; } -function t_get_json($lang) { +function t_get_json($lang) +{ $raw_j = t_get_raw_json($lang); $array = json_decode($raw_j, true); if ($array === null) { @@ -99,14 +106,15 @@ function t_get_json($lang) { return $array; } -function json_lang_generator($lang) { +function json_lang_generator($lang) +{ $r = false; if ($lang === null) { $lang_config = $GLOBALS['cfg']['lang']; if ($lang_config != "auto") { $r = t_get_raw_json($lang_config); } else { - foreach(t_visitor_langs() as $lang) { + foreach (t_visitor_langs() as $lang) { $r = t_get_raw_json($lang); if (!($r === false)) { break;