Skip to content

Instantly share code, notes, and snippets.

@femiyb
Created December 23, 2019 18:12
Show Gist options
  • Save femiyb/126c10e8281761630a16a5b9a3575a48 to your computer and use it in GitHub Desktop.
Save femiyb/126c10e8281761630a16a5b9a3575a48 to your computer and use it in GitHub Desktop.
<?php
function my_pmpro_translate_to_german($translated_text, $original_text, $domain) {
switch ( $translated_text ) {
case 'Check Out with a Credit Card Here' :
$translated_text = __( 'Translation in German Here', 'paid-memberships-pro' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'my_pmpro_translate_to_german', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment