Created
August 26, 2015 15:33
-
-
Save tjhole/6531d386ec2b480be561 to your computer and use it in GitHub Desktop.
iThemes Postcode Zip State
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
/* ======================================================================================================================== | |
iThemes Postcode | |
======================================================================================================================== */ | |
function my_translated_text_strings( $translated_text, $untranslated_text, $domain ) { | |
$translated_text = $untranslated_text; | |
if ( 'LION' === $domain || 'it-l10n-ithemes-exchange' === $domain ) { | |
switch ( $untranslated_text ) { | |
case 'Zip Code' : | |
$translated_text = 'Post Code'; | |
break; | |
case 'State' : | |
$translated_text = 'County'; | |
break; | |
} | |
} | |
return $translated_text; | |
} | |
add_filter( 'gettext', 'my_translated_text_strings', 10, 3 ); | |
add_filter( 'ngettext', 'my_translated_text_strings', 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment