Target Text in Browser and Return New Value
// Target Text in Browser and Return New Value
function remove_lostpassword_text ( $text ) {
if ($text == 'Username'){$text = 'hello';}
return $text;
}
add_filter( 'gettext', 'remove_lostpassword_text' );