Allowing users to search content in their language increases engagement and improves the overall usability of your site.
add_filter('pre_get_posts', function ($query) {
if ($query->is_search && !is_admin()) {
$query->set('lang', ICL_LANGUAGE_CODE);
}
});