I have solved a problem of
russian search.
In function_search.php there is a function split_words which does not pass Russian letters because of regular expression:
preg_match_all('/(\*?[a-z0-9]+\*?)|\b([a-z0-9]+)\b/', $entry, $split_entries);
I have replaced this line on:
preg_match_all('/(\*?[а-яa-z0-9]+\*?)|\b([а-яa-z0-9]+)\b/', $entry, $split_entries);
I.e in 2 places I have added the first and last letter of the Russian alphabet in expression
I Think that with other languages it too should work