Thanks, but the format is not the problem.
I need to change the translation from example april (EN) to Abril(ES)
I view the code involved, but i try many things, but without success:
ja_conf/html/layouts/field/render.php
<span class="field-value">
<!-- <?php echo ($field->type == 'calendar') ? date('d.M.Y', strtotime($value)) : $value; ?> -->
<?php if ($field->type == 'calendar'): ?>
<span><?php echo date('d', strtotime($value)); ?></span>
<?php echo date('M', strtotime($value)); ?>,
<?php echo date('Y', strtotime($value)); ?>
<?php else: ?>
<?php echo $value; ?>
<?php endif; ?>
</span>
I need to translate "M"
Best regards.