coswat/translater

Langauge translater package for PHP.

Fund package maintenance!
coswat

v1.0.0 2023-06-24 19:09 UTC

This package is auto-updated.

Last update: 2025-03-24 22:53:39 UTC


README

  • coswat translater is php package to translate langauges easily without having any Api Key.
  • it uses a free open source api url to translate langauges

Installation

  • Install via Composer
composer require coswat/translater

Supported Langauges

  • English
  • Spanish
  • Russian
  • Arabic
  • Portuguese
  • German
  • Hindi
  • French
  • Italian
  • Indoneasian
  • Vietnamese

Usage

Example of translating english to spanish

<?php

require_once 'vendor/autoload.php';

use Coswat\Translater\Translate;

$t = new Translate();

$translated = $t->string('Hello')->convert('en','es');
echo $translated; // show Hola.

License

The translater package is open-sourced software licensed under the MIT license.