Hi There,
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 (
'Attribute' => 'Your new Russian language',
'Color' => 'Your new Russian language',
);
if( isset( $translation[$text] ) ) {
return $translation[$text];
}
return $translated_text;
}
You can add more English texts to the code above.
Hope it helps.