1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00

Added locale support for Türkçe. Thanks Cuqer!

This commit is contained in:
billz 2019-06-10 09:27:17 +00:00
parent 2435e0e639
commit 6866cfb266

View File

@ -51,6 +51,9 @@ if (empty($_SESSION['locale']) && strlen($_SERVER['HTTP_ACCEPT_LANGUAGE']) >= 2)
case "si":
$locale = "si_LK.UTF-8";
break;
case "tr":
$locale = "tr_TR.UTF-8";
break;
default:
$locale = "en_GB.UTF-8";
break;