diff options
author | momo-i <momo-i@ampache> | 2008-12-26 01:31:26 +0000 |
---|---|---|
committer | momo-i <momo-i@ampache> | 2008-12-26 01:31:26 +0000 |
commit | c37b82bb77e7e857e419e0493b234ffe44301fb8 (patch) | |
tree | 39b3a656dd42e9b67d6f1e0ffd1ad957e98558da /lib/gettext.php | |
parent | 7a31fe3fbe5478f61b72ebd1bfb3da5c9e3a6184 (diff) | |
download | ampache-c37b82bb77e7e857e419e0493b234ffe44301fb8.tar.gz ampache-c37b82bb77e7e857e419e0493b234ffe44301fb8.tar.bz2 ampache-c37b82bb77e7e857e419e0493b234ffe44301fb8.zip |
Fixed: All languages Charsets are using UTF-8
Diffstat (limited to 'lib/gettext.php')
-rw-r--r-- | lib/gettext.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gettext.php b/lib/gettext.php index 9b62368d..17285262 100644 --- a/lib/gettext.php +++ b/lib/gettext.php @@ -32,10 +32,10 @@ function load_gettext() { /* Try lang, lang + charset and lang + utf-8 */ setlocale(LC_ALL, $lang, - $lang . '.'. Config::get('site_charset'), + $lang . '.UTF-8', //. Config::get('site_charset'), $lang . '.UTF-8', - $lang . '.utf-8', - $lang . '.' . Config::get('lc_charset')); + $lang . '.UTF-8', + $lang . '.UTF-8' // . Config::get('lc_charset')); /* Bind the Text Domain */ bindtextdomain('messages', Config::get('prefix') . "/locale/"); |