OK - la questione rilevate e corrette. Saranno incluse nella prossima release.
Per la soluzione rapida per favore:
1. Aperto / Includes / vbenterprisetranslator_class_translator.php
2. Cerca:
PHP Code:
return vbet_translateEncodedText($toTranslate, $this->realFrom, $this->realTo, $serie, $this);
3. Sostituire con:
PHP Code:
return vbet_translateEncodedText($toTranslate, $this->from, $this->to, $serie, $this);
4. Cerca:
PHP Code:
return vbet_translateEncodedText(substr($toTranslate, 0, $point), $this->realFrom, $this->realTo, $serie, $this)
5. Sostituire con:
PHP Code:
return vbet_translateEncodedText(substr($toTranslate, 0, $point), $this->from, $this->to, $serie, $this)