add_filter( ‘gettext’, function( $translated_text, $text, $domain ) {
if ( trim($translated_text) === ‘Hello’ ) {
return ‘¡Hola!’;
}
if ( trim($translated_text) === ‘Search’ ) {
return ‘Buscar’;
}
if ( trim($translated_text) === ‘Next’ ) {
return ‘Siguiente’;
}
if ( trim($translated_text) === ‘Previons’ ) { // Corrigiendo typo aquí
return ‘Anterior’;
}
if ( trim($translated_text) === ‘Main’ ) {
return ‘Principal’;
}
if ( trim($translated_text) === ‘Filter’ ) {
return ‘Filtros’;
}
if ( trim($translated_text) === ‘Hide’ ) {
return ‘Ocultar’;
}
return $translated_text;
}, 20, 3 );