Created
December 23, 2019 18:12
-
-
Save femiyb/126c10e8281761630a16a5b9a3575a48 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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