Add the sample code below to your child theme's functions.php file or in a site specific plugin. Then change REPLACE ME to the new messaging that you would like to display.
<?php
//* Do NOT include the opening php tag
//* Change the sold out messaging in the events table view template to something else
function ee_custom_messaging_sold_out( $translated, $original, $domain ) {
$strings = array(
'Sold Out' => 'REPLACE ME',
);
if ( isset( $strings[$original] ) ) {
$translations = get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'ee_custom_messaging_sold_out', 10, 3 );