I have write this function and not work…
function tribe_custom_theme_text ( $translation, $text, $domain ) {
$custom_text = array(
‘Quantity’ => ‘Plazas’,
‘Get Tickets’ => ‘Reservar’,
);
if( (strpos($domain, ‘tribe-‘) === 0 || strpos($domain, ‘the-events-‘) === 0 || strpos($domain, ‘event-‘) === 0) && array_key_exists($translation, $custom_text) ) {
$translation = $custom_text[$translation];
}
return $translation;
}
add_filter(‘gettext’, ‘tribe_custom_theme_text’, 20, 3);