OK - problém našel a opravil. To bude zahrnuta v příští verzi.
Pro rychlou opravu, prosím:
1. Otevřeno / Includes / vbenterprisetranslator_class_translator.php
2. Hledat:
PHP Code:
return vbet_translateEncodedText($toTranslate, $this->realFrom, $this->realTo, $serie, $this);
3. Nahradit:
PHP Code:
return vbet_translateEncodedText($toTranslate, $this->from, $this->to, $serie, $this);
4. Hledat:
PHP Code:
return vbet_translateEncodedText(substr($toTranslate, 0, $point), $this->realFrom, $this->realTo, $serie, $this)
5. Nahradit:
PHP Code:
return vbet_translateEncodedText(substr($toTranslate, 0, $point), $this->from, $this->to, $serie, $this)