Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JudeRosario/93211944b37339ab4bdb to your computer and use it in GitHub Desktop.
Save JudeRosario/93211944b37339ab4bdb to your computer and use it in GitHub Desktop.
Dutch Fix
function custom_wp_dutch_fix( $translated_text, $untranslated_text, $domain ) {
switch ( $untranslated_text ) {
case 'This field is required.' :
$translated_text = 'verplicht veld';
break;
}
return $translated_text ;
}
add_filter( 'gettext', 'custom_wp_dutch_fix', 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment