Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRok Jaklič <rokj@rasca.net>2022-09-24 10:13:38 +0300
committerGitHub <noreply@github.com>2022-09-24 10:13:38 +0300
commit0077d7a52dc18719bc9fca4a2d6c8150f56abfcd (patch)
tree0520492ddc1cff889a340513ab24a0a0738c4b8e
parentba5ea75f4609ae8587620b7ac750e6e231a0eac9 (diff)
Added prioritized charsets for Slovenian language (#8701)
-rw-r--r--program/lib/Roundcube/rcube_charset.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/program/lib/Roundcube/rcube_charset.php b/program/lib/Roundcube/rcube_charset.php
index 660856064..22f6b351d 100644
--- a/program/lib/Roundcube/rcube_charset.php
+++ b/program/lib/Roundcube/rcube_charset.php
@@ -501,6 +501,10 @@ class rcube_charset
case 'tr_TR':
$prio = ['UTF-8', 'ISO-8859-9', 'WINDOWS-1254'];
break;
+
+ case 'sl_SI':
+ $prio = ['UTF-8', 'ISO-8859-2', 'WINDOWS-1251'];
+ break;
}
// mb_detect_encoding() is not reliable for some charsets (#1490135)