I’ve translated these strings to Spanish and it worked!
TRADUCIR THE EVENTS CALENDAR
****************************
Cambiar las siguientes líneas:
(Esto cambia “Eventos for Junio”, por “Eventos en Junio”)
…/plugins/the-events-calendar/src/functions/template-tags/loop.php (LINEA 160)
esc_html_x( ‘%1$s for %2$s’, ‘month view’, ‘the-events-calendar’ ),
por
esc_html_x( ‘%1$s en %2$s’, ‘month view’, ‘the-events-calendar’ ),
(Esto cambia “Eventos for 03/11/2017”, por “Eventos de 03/11/2017”)
…/plugins/the-events-calendar/src/functions/template-tags/loop.php (LINEA 171)
esc_html_x( ‘%1$s for %2$s’, ‘day_view’, ‘the-events-calendar’ ),
por
esc_html_x( ‘%1$s el %2$s’, ‘day_view’, ‘the-events-calendar’ ),
…/plugins/the-events-calendar/src/Tribe/iCal.php (LINEA 108)
$text = apply_filters( ‘tribe_events_ical_export_text’, esc_html__( ‘Export Events’, ‘the-events-calendar’ ) );
por
$text = apply_filters( ‘tribe_events_ical_export_text’, esc_html__( ‘Exportar Eventos’, ‘the-events-calendar’ ) );