post->permalink . '#comment-' . $comment->id;
if ( $comment->url != '' ):
printf( _t( 'Comment by ' .
'%3$s ' .
'posted on %5$s ' .
'at %6$s ' .
'on %7$s' ),
$view_url,
$comment->url,
$comment->name,
$comment->post->permalink,
$comment->post->title,
$comment->date->get( HabariDateTime::get_default_time_format() ),
$comment->date->get( HabariDateTime::get_default_date_format() )
);
else:
printf( _t( 'Comment by ' .
'%2$s ' .
'posted on %4$s ' .
'at %5$s ' .
'on %6$s' ),
$view_url,
$comment->name,
$comment->post->permalink,
$comment->post->title,
$comment->date->get( HabariDateTime::get_default_time_format() ),
$comment->date->get( HabariDateTime::get_default_date_format() )
);
endif;
?>