bedita / i18n-microsoft
BEdita I18n Microsoft 插件支持 PHP >= 7.4
v0.0.3
2024-04-17 11:46 UTC
Requires
- php: >=7.4
- bedita/i18n: ^4.4.3
- cakephp/utility: ^4.4
Requires (Dev)
- cakephp/cakephp: ^4.4
- cakephp/cakephp-codesniffer: ~4.7.0
- phpstan/phpstan: ^1.10
- phpunit/phpunit: ^9.3
README
安装
您可以使用 composer 将此插件安装到您的应用程序中。
安装 composer 包的推荐方法是
composer require bedita/i18n-microsoft
注意:支持的 php 版本为 >= 7.4。
Microsoft Translator TEXT API
此插件使用 Microsoft Translator TEXT API 进行文本翻译。
使用示例
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!']]