Hello right now google translates non braking spaces to normal spaces what can damage some layouts. To change this behaviour edit vb Global Translator hook
and replace:
Code:
require_once("translate.php");
$output=callback($output);
to:
Code:
$output = str_replace(" ", "< >", $output);
require_once("translate.php");
$output=callback($output);
$output = str_replace("< >", " ", $output);
Thanks