Social Share Buttons

// Add Social Sharing after the single post content
// =============================================================================

function x_add_social_sharing ( $content ) {
if ( is_singular(‘post’) ) {
echo do_shortcode(’[share title=“Share this Post” facebook=“true” twitter=“true” google_plus=“true” linkedin=“true” pinterest=“true” reddit=“true” email=“true”]’);
}
}
add_action(‘x_before_the_content_end’, ‘x_add_social_sharing’);

I use this code to have social sharing buttons in my posts. However, I would like to change (translate to german) the text in the email (‘Hey, thought you might enjoy this! Check it out when you have a chance: ’) and the rollover text on the Sahtre buttons (‘Share on Facebook’). I suspect the right place would be in LocoTranslate’s theme, but unfortunately I can’t find the relevant section. Can you help me?

Hello Jan,

Thanks for writing in! You will have to use the gettext() PHP function to be able to translate those keywords. You can check out this old thread for your reference:

If this is not working for you, please provide us with the English keyword and the equivalent German word so we can copy and modify the code from that old thread that I suggested.

Kindly let us know how it goes.