OK - o problema atopado e corrixido. Esta será incluído na próxima versión.
Para solución rápida por favor:
1. Aberto / Includes / vbenterprisetranslator_class_translator.php
2. Buscar:
PHP Code:
return vbet_translateEncodedText($toTranslate, $this->realFrom, $this->realTo, $serie, $this);
3. Substituír por:
PHP Code:
return vbet_translateEncodedText($toTranslate, $this->from, $this->to, $serie, $this);
4. Buscar:
PHP Code:
return vbet_translateEncodedText(substr($toTranslate, 0, $point), $this->realFrom, $this->realTo, $serie, $this)
5. Substituír por:
PHP Code:
return vbet_translateEncodedText(substr($toTranslate, 0, $point), $this->from, $this->to, $serie, $this)