Hello Karin,
To change ‘posted on’ to say ‘dutch’, just add the below codes in ‘functions.php’ of child theme.
add_filter( 'gettext', 'theme_change_postedon_field_names', 20, 3 );
function theme_change_postedon_field_names( $translated_text, $text, $domain ) {
if ( is_singular() ) {
switch ( $translated_text ) {
case 'posted on' :
$translated_text = __( 'dutch', 'zerif-pro' );
break;
}
}
return $translated_text;
}
Note: This function translates all the matching text to the translating text allover the theme.
Also,It is recommended to create child theme if you are going for the coding option else your changes won’t be saved when you update the theme. For that: https://codex.www.ads-software.com/Child_Themes#How_to_Create_a_Child_Theme
Let me know how it goes!!