All the SDK’s text and strings are customizable. Every string has its own unique key which you can use to override it.
You can use the fs_override_i18n()
function as following:
1 2 3 4 | fs_override_i18n( array ( 'opt-in-connect' => __( "Yes - I'm in!" , '{your-text_domain}' ), 'skip' => __( 'Not today' , '{your-text_domain}' ), ), '{your_slug}' ); |
Or the override_i18n()
public method of the Freemius
class:
1 2 3 4 | my_freemius->override_i18n( array ( 'opt-in-connect' => __( "Yes - I'm in!" , '{your-text_domain}' ), 'skip' => __( 'Not today' , '{your-text_domain}' ), ) ); |