أقدم لكم اليوم اخواني شرح طريقة إستبدال صيغة الوقت من AM - PM الى صباح - مساء لنسخة 4.0.4
قم بفتح ملف includes/functions.php
ابحث عن :
رمز Code:
if (!empty($userinfo['lang_locale'])) { setlocale(LC_TIME, $currentlocale); if (substr($currentlocale, 0, 5) != 'tr_TR') { setlocale(LC_CTYPE, $currentlocale); } } return $returndate; }
واستبدله بـ :
رمز Code:
if (!empty($userinfo['lang_locale'])) { setlocale(LC_TIME, $currentlocale); if (substr($currentlocale, 0, 5) != 'tr_TR') { setlocale(LC_CTYPE, $currentlocale); } } $mwadahtra=$datefunc($format, $timestamp_adjusted); $mwadahtra=preg_replace('/AM/', 'صباحاً', $mwadahtra); $mwadahtra=preg_replace('/PM/', 'مساءً', $mwadahtra); return $mwadahtra; }
وسيكون الناتج كالتالي
ختاماَ هذا الموضوع مجهود شخصي ..
لا تنسوني من خالص الدعاء بظهر الغيب ،،
وأي إستفسار أنا بخدمتكم ..
