I właśnie odkrył jeden błąd w tłumaczeniu Microsoft na naszym forum. Nie wiem, czy to ten sam problem jak ty, bo nie dostalismy dane dostępu i nie mógł go sprawdzić. Jeszcze proszę daniele poniżej instrukcje.

. Tłumaczeń Microsoft tekstów, w tym "łamie charakter w tej chwili Na szybko naprawić proszę:
1. Otwórz plik / Includes / vbenterprisetranslator_class_translator.php
2. Znajdź:
PHP Code:
$translationURL $this->translationURL.'%22'.$toTranslate.'%22]'
3. Zamień na:
PHP Code:
$translationURL $this->translationURL.'%22'.str_replace('%22','%5C%22',$toTranslate).'%22]'
4. Znajdź:
PHP Code:
$toTranslate $toTranslateTable[$i]; 
5. Zamień na:
PHP Code:
$toTranslate str_replace('%22','%5C%22',$toTranslateTable[$i]); 
Będzie to uwzględnione w następnym wydaniu.

Proszę potwierdzić to ten sam problem na forum.