Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bedita/i18n-deepl

DeepL translator plugin
https://github.com/bedita/i18n-deepl

Last synced: about 1 month ago
JSON representation

DeepL translator plugin

Awesome Lists containing this project

README

        

# BEdita I18n Deepl plugin

[![Github Actions](https://github.com/bedita/i18n-deepl/workflows/php/badge.svg)](https://github.com/bedita/i18n-deepl/actions?query=workflow%3Aphp)
[![codecov](https://codecov.io/gh/bedita/i18n-deepl/branch/main/graph/badge.svg)](https://codecov.io/gh/bedita/i18n-deepl)
[![phpstan](https://img.shields.io/badge/PHPStan-level%205-brightgreen.svg)](https://phpstan.org)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/bedita/i18n-deepl/badges/quality-score.png?b=main)](https://scrutinizer-ci.com/g/bedita/i18n-deepl/?branch=main)
[![image](https://img.shields.io/packagist/v/bedita/i18n-deepl.svg?label=stable)](https://packagist.org/packages/bedita/i18n-deepl)
[![image](https://img.shields.io/github/license/bedita/i18n-deepl.svg)](https://github.com/bedita/i18n-deepl/blob/main/LICENSE.LGPL)

## Installation

You can install this plugin into your application using [composer](https://getcomposer.org).

The recommended way to install composer packages is:

```
composer require bedita/i18n-deepl
```

Note: php version supported is >= 7.4.

## DeepL Translator

This plugin uses [DeepL Translator](https://www.deepl.com/translator) to translate texts, via [deepl-php](https://github.com/DeepLcom/deepl-php).

Usage example:
```php
use BEdita\I18n\Deepl\Core\Translator;

$translator = new Translator();
$translator->setup(['auth_key' => 'your-auth-key']);
$result = $translator->translate(['Hello world!'], 'en', 'it');
// $result is an array, i.e ['translation' => ['Ciao mondo!']]
```