zhylon/laravel-translate

This package can be used to translate your Laravel application.

1.0.1 2025-03-10 22:09 UTC

This package is auto-updated.

Last update: 2025-03-11 23:30:45 UTC


README

Zhylon Translatable

Latest Version on Packagist MIT Licensed Total Downloads Support me on Patreon

This package is build on top of spatie/laravel-translatable. We strongly recommend you to check the original package before using this one.

The key difference is that this package uses Zhylon Translation to translate the content. So you don't need to provide the translations, the package will do it for you.

Installation

You can install the package via composer:

composer require zhylon/laravel-translate

If you only want to translate your language files, you can use the --dev flag to install the package as a development dependency:

composer require --dev zhylon/laravel-translate

Configuration

You can publish the config file with:

php artisan vendor:publish --provider="Zhylon\LaravelTranslator\LaravelTranslatorServiceProvider" --tag="config"

This is the contents of the published config file:

return [
    'zhylon_translate' => [
        'key'   => env('ZHYLON_TRANSLATE_KEY'), // Your Zhylon Translate API key
        'model' => env('ZHYLON_TRANSLATE_MODEL', 'zhylon'), // The name of the model to translate
    ],
];

Zhylon Translate API Key

You need an active account on Zhylon Translate to get the API key. You can get the API key from the API Key page.

Please note, that this is not a free service, you need to have a subscription to use the service. More information about the pricing can be found in the Docs.

Usage

You can translate your language files using the following command:

# Translate single file
php artisan lang:translate en --file=billing.php

# Using path
php artisan lang:translate en --file=Module/billing.php

# Translate all files
php artisan lang:translate en --all

Also, all your translation files can be translated using Zhylon Translation.

use Illuminate\Database\Eloquent\Model;
use Zhylon\LaravelTranslator\Support\Traits\HasAutoTranslations;

class NewsItem extends Model
{
    use HasAutoTranslations;
    
    public $translatable = ['name']; // translatable attributes

    // ...
}

WARNING !

Currently, the package only supports english and german languages. This is because also the Zhylon Translation API only supports these languages. We are working on adding more languages to the API, so please check the Zhylon Translation page for updates.

Original Package

You can still use all the features of the original package, but you don't need to provide the translations. For more information, please check the original package documentation: spatie/laravel-translatable

Changelog

Please see CHANGELOG for more information on what has changed recently.

Security Vulnerabilities

If you've found a bug regarding security please mail security@zhylon.net instead of using the issue tracker.

Support me

ko-fi
Support me on Patreon

Credits

License

The MIT License (MIT). Please see License File for more information.