// 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?