I have french date on all events category list but not in this :
http://www.tekguyane.fr/category/events-list-2/

I don't know why!
Best regards
Antonio
<time class="entry-date" datetime="<?php echo $date_start->format('c'); ?>">
<?php echo $date_start->format('D'); ?>
<span><?php echo $date_start->format('M j'); ?></span>
</time>
$dateweekday = $wp_locale->get_weekday( $date_start->format('w') );
$dateweekday_abbrev = $wp_locale->get_weekday_abbrev( $dateweekday );
$datemonth = $wp_locale->get_month($date_start->format('m') );
$datemonth_abbrev = $wp_locale->get_month_abbrev( $datemonth );
<time class="entry-date" datetime="<?php echo esc_attr(get_the_date('c')); ?>">
<?php echo $dateweekday_abbrev; ?>
<span><?php echo $datemonth_abbrev .' '. $date_start->format('j'); ?></span>
</time>
</h><?php echo (is_singular()) ? '1' : '2'; ?>>