loadPlugin('smarty_modifier_tiki_date_format'); $date = smarty_modifier_tiki_date_format($string, $prefs['short_date_format']); $time = smarty_modifier_tiki_date_format($string, $prefs['short_time_format']); $intro = ! empty($intro) ? tra($intro) . ' ' : ''; if ($prefs['jquery_timeago'] === 'y' && $same === 'y') { TikiLib::lib('header')->add_jq_onready('$("time.timeago").timeago();'); return ''; } elseif ($same != 'n' && $prefs['tiki_same_day_time_only'] == 'y' && $date == smarty_modifier_tiki_date_format(time(), $prefs['short_date_format'])) { //tra('on') tra('on:') tra('at') tra('at:') return str_replace(['on', 'On'], ['at', 'At'], $intro) . $time; } else { // if you change the separator do not forget to change the translation instruction in lib/prefs/short.php $time = $date . ' ' . $time; return $intro . ' ' . $time; } }