tryed ans still nothing
<?php
// Determine what locale to use
switch (PHP_OS)
{
case 'WINNT':
case 'WIN32':
$locale = 'swedish';
break;
case 'FreeBSD':
case 'NetBSD':
case 'OpenBSD':
$locale = 'utf8';<--- changed this after the two down
break;
default:
$locale = 'utf8';<--- changed this after the one down
break;
}
// Attempt to set the locale
setlocale(LC_CTYPE, $locale);
// Language definitions for frequently used strings
$lang_common = array(
// Text orientation and encoding
'lang_direction' => 'ltr', // ltr (Left-To-Right) or rtl (Right-To$
'lang_encoding' => 'utf8', <---changed this first
'lang_multibyte' => false,