OK - o problema encontrado e corrigido. Ele será incluído na próxima versão.
Para solução rápida por favor:
1. Aberto / Includes / vbenterprisetranslator_class_translator.php
2. Pesquisar:
PHP Code:
return vbet_translateEncodedText($toTranslate, $this->realFrom, $this->realTo, $serie, $this);
3. Substituir por:
PHP Code:
return vbet_translateEncodedText($toTranslate, $this->from, $this->to, $serie, $this);
4. Pesquisar:
PHP Code:
return vbet_translateEncodedText(substr($toTranslate, 0, $point), $this->realFrom, $this->realTo, $serie, $this)
5. Substituir por:
PHP Code:
return vbet_translateEncodedText(substr($toTranslate, 0, $point), $this->from, $this->to, $serie, $this)