Plugin Author
WPZOOM
(@wpzoom)
Hi and thank you for your answer. I’ve tried to translate with Poedit, it does not work.
Isn’t there a simple code to translate ? Because I do not want to download a multilingual plugin just for WP Zoom and for one world, it’s not useful for me as I’ve many activated plugins already.
Thank you.
Plugin Author
WPZOOM
(@wpzoom)
@marie999 You can use the following custom PHP function instead:
function wpz_change_strings( $translated_text, $text, $domain ) {
$translated_text = str_replace('Follow', 'Suivre', $translated_text);
return $translated_text;
}
add_filter( 'gettext', 'wpz_change_strings', 100, 3 );
Hi and thank you very much.
It works ! :-))))
I’m closing the topic.