02/07/2013 at 4:25 pm
#250985
Keymaster
@ aaron
Droppping this in your theme’s functions.php file should do the trick.
function aaron_gettext( $translated_text , $text , $domain ) {
if ( $domain == 'connections' && $translated_text == 'Work Phone' ) {
$translated_text = 'Pager';
}
return $translated_text;
}
add_filter( 'gettext', 'aaron_gettext', 20, 3 );