Hi There,
All the keywords that needs to be translated including reply and read more keywords are there in the default .po file.
You can also translate those keywords using the code below. Please insert this code in your child theme’s functions.php:
add_filter('gettext', 'x_translate_text' , 20, 3);
function x_translate_text ( $translated_text, $text, $domain ) {
$translation = array(
'Reply' => 'Reply translation here',
'AT' => 'Your text here',
'Read More' => 'Your text here'
);
if( isset( $translation[$text] ) ) {
return $translation[$text];
}
return $translated_text;
}
Hope this helps.