Google is my friend ??
found the answer, I pasted this in functions.php and now it is working.
/*
* Translate custom strings
*/
add_filter(‘gettext’, ‘translate_text’);
add_filter(‘ngettext’, ‘translate_text’);
function translate_text($translated) {
$translated = str_ireplace(‘Read More’, ‘Kontakta oss’, $translated);
return $translated;
}