You can install this plugin into your application using composer.
The recommended way to install composer packages is:
composer require bedita/i18n-microsoft
Note: php version supported is >= 8.3.
This plugin uses Microsoft Translator TEXT API to translate texts.
Usage example:
use BEdita\I18n\Microsoft\Core\Translator;
$translator = new Translator();
$translator->setup([
'auth_key' => 'your-auth-key', // Microsoft Translator KEY 1
'location' => 'your-location', // Microsoft Translator Location/Region i.e. westeurope
]);
$result = $translator->translate(['Hello world!'], 'en', 'it');
// $result is an array, i.e ['translation' => ['Ciao mondo!']]