Translate the “No results found” text

<?php

add_filter( 'gettext', function( $translated_text, $text, $domain ) {
    if ( 'fwp-front' == $domain && 'No results found' == $text ) {
        $translated_text = 'Add your own message here';
    }
    return $translated_text;
}, 10, 3 );