Hi @ptahaua
Thank you for your interest in the Filter Everything plugin.
There is no possibility to translate it to prevent any workability issues. But the function that responsible for it is laying in the src -> Settings -> Container.php on the line 76:
public function getFilterService()
{
if (!isset($this->services['filterservice'])) {
$this->addService('filterservice', new Filter( array( 'or' => '-or-', 'and' => '-and-' ) ));
}
return $this->getService('filterservice');
}
You can change it to your needs.
Best Regards – Victor