From d512219fb0d0918ede1f03fd6103fbf97f5a0fcd Mon Sep 17 00:00:00 2001 From: billz Date: Mon, 19 Nov 2018 16:44:15 +0000 Subject: [PATCH] Added support for Russian, thanks Betep --- includes/locale.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/locale.php b/includes/locale.php index 6e44f9ca..584fc326 100755 --- a/includes/locale.php +++ b/includes/locale.php @@ -41,6 +41,9 @@ if (empty($_SESSION['locale']) && strlen($_SERVER['HTTP_ACCEPT_LANGUAGE']) >= 2) case "cs": $locale = "cs_CZ.UTF-8"; break; + case "ru": + $locale = "ru_RU.UTF-8"; + break; default: $locale = "en_GB.UTF-8"; break;