Skip to content

Instantly share code, notes, and snippets.

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 KaineLabs/1cf72b45be06cd3b57183a9182811552 to your computer and use it in GitHub Desktop.
Save KaineLabs/1cf72b45be06cd3b57183a9182811552 to your computer and use it in GitHub Desktop.
Change "Widgets Settings" to "Overview Settings"
<?php
/**
* Translate Text
*/
function yz_translate_youzer_text( $translated_text ) {
switch ( $translated_text ) {
case 'widgets settings' :
$translated_text = __( 'Overview Settings', 'youzer' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'yz_translate_youzer_text', 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment