Hi William,
Thanks for writing in!
In order to translate those strings, you can simply use following code in your child theme’s functions.php file:
add_filter('gettext', 'x_translate_text' , 20, 3);
function x_translate_text ( $translated_text, $text, $domain ) {
$translation = array (
'Apply Coupon' => 'Your new text'
);
if( isset( $translation[$text] ) ) {
return $translation[$text];
}
return $translated_text;
}
Hope it helps.