OK - problema găsite şi corectate. Vor fi incluse în următoarea lansare.
Pentru soluţie rapidă vă rugăm să:
1. Deschis / Include / vbenterprisetranslator_class_translator.php
2. Căutare:
PHP Code:
return vbet_translateEncodedText($toTranslate, $this->realFrom, $this->realTo, $serie, $this);
3. Înlocuiţi de:
PHP Code:
return vbet_translateEncodedText($toTranslate, $this->from, $this->to, $serie, $this);
4. Căutare:
PHP Code:
return vbet_translateEncodedText(substr($toTranslate, 0, $point), $this->realFrom, $this->realTo, $serie, $this)
5. Înlocuiţi de:
PHP Code:
return vbet_translateEncodedText(substr($toTranslate, 0, $point), $this->from, $this->to, $serie, $this)