Hi, sorry…too difficult for me. Where I will add it in the function.php file? In the end? What else I need than just the translation?
Last time I added this:
add_filter( 'gettext', 'x_translate_these_strings', 20, 3 );
function x_translate_these_strings( $translated_text, $text, $domain ) {
$locale = get_locale();
$string_table = array (
'fi' => array (
'Post Archive by Month' => 'your translation here',
'Read More' => 'your translation here',
'Below you\'ll find a list of all posts from ' => 'your translation here',
)
);
$translation = $string_table[ $locale ][ $translated_text ];
return !empty( $translation ) ? $translation : $translated_text;
}
I don´t know, do I need to copy all this above again, or just add the new translation in somewhere in the middle. I am sorry, I am not familiar with the code at all — with copy-pasting - yes