Skip to content

Instantly share code, notes, and snippets.

@andrewlimaza
Created March 18, 2019 08:10
Show Gist options
  • Save andrewlimaza/390ff00953dd4c63c83378dc2468ef1a to your computer and use it in GitHub Desktop.
Save andrewlimaza/390ff00953dd4c63c83378dc2468ef1a to your computer and use it in GitHub Desktop.
Translate PMPro to French
<?php
// Please add this code to your PMPro Customizations Plugin - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
function my_pmpro_translate_to_french($translated_text, $original_text, $domain) {
switch ( $translated_text ) {
case 'Security Code (CVC)' :
$translated_text = __( 'Change this.', 'paid-memberships-pro' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'my_pmpro_translate_to_french', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment