Currently we use Djapian + Xapian in our Django-based multi-language projects for full text search. In order to use stemming for each language, we create a different search index for each language. Inside Django, we decide based on the user's language, which stemming and which search index to use. That works fine, however, Djapian doesn't seem to be maintained any more and the code breaks up more and more. So we switched to haystack, but haystack doesn't seem to offer that kind of dynamic stemming that we need.
Is there any way of integrating this possibility, either in haystack version 1.x, version 2.x or in any other Python/Django-based backend?