PDA

View Full Version : Mini Mods - how to change the word AM and PM


hazem_aliraqi
06-03-2015, 09:00 PM
hello

how to change the word AM and PM




1- open functions.php in folder includes

2- fine



if (!empty($userinfo['lang_locale']))
{
setlocale(LC_TIME, $currentlocale);
if (substr($currentlocale, 0, 5) != 'tr_TR')
{
setlocale(LC_CTYPE, $currentlocale);
}
}
return $returndate;
}



3- replace with




if (!empty($userinfo['lang_locale']))
{
setlocale(LC_TIME, $currentlocale);
if (substr($currentlocale, 0, 5) != 'tr_TR')
{
setlocale(LC_CTYPE, $currentlocale);
}
}

$returndate=preg_replace('/AM/', 'صباحاً',$returndate);
$returndate=preg_replace('/PM/', 'مساء ً',$returndate);

return $returndate;

}





that was for arabic word (صباحاً , مساءً)


and that keep your Detailed time like last post since one second

3saltoot
10-08-2015, 04:39 PM
thank you ...