Hi,
I use the translation api in PHP:
$ggl = new \Google\Cloud\Translate\V2\TranslateClient(['key' => 'the_api_key.....']);
$ggl->translate("computer", ['source' => 'en', 'target' => 'et', 'format' => 'html']);
The word "computer" consists of 8 symbols, and in Estonian "arvuti" 6 symbols. How can I get the information how many symbols it counted? Does it count source language (8 symbols) or destination language (6 symbols)?
Thank you