Skip to content

Instantly share code, notes, and snippets.

@sethshoultes
Forked from joshfeck/filter_gettext.php
Created May 25, 2013 20:59
Show Gist options
  • Save sethshoultes/5650757 to your computer and use it in GitHub Desktop.
Save sethshoultes/5650757 to your computer and use it in GitHub Desktop.
function mycustom_filter_gettext( $translated, $original, $domain ) {
// This is an array of original strings
// and what they should be replaced with
$strings = array(
'Register' => 'Sign up',
'Confirm and go to payment page' => 'Complete registration',
// Add some more strings here
);
// See if the current string is in the $strings array
// If so, replace it's translation
if ( isset( $strings[$original] ) ) {
// This accomplishes the same thing as __()
// but without running it through the filter again
$translations = &get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'mycustom_filter_gettext', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment