dizatech / yaml-translation
Add YAML file support to Laravel TranslationServiceProvider
v4.1.1
2024-02-17 03:23 UTC
Requires
- php: >=7.0
- symfony/yaml: 5.*
This package is auto-updated.
Last update: 2024-10-17 04:40:49 UTC
README
This package uses Symfony/Yaml parser.
Installing
Add "devitek/yaml-translation": "4.*"
to your composer.json by running :
composer require devitek/yaml-translation
And select version: 4.*
Finally, publish all vendor assets to create a yaml-translation.php
:
php artisan vendor:publish
Add support in Laravel
You have to replace
'Illuminate\Translation\TranslationServiceProvider',
with
'Devitek\Core\Translation\TranslationServiceProvider',
in app/config/app.php.
How to use
Just use regular php files or use yml or yaml files instead.
PHP :
<?php return [ 'hello' => 'Hello :name', 'author' => 'Devitek', ];
Will be equivalent to :
YAML
hello: Hello :name author: Devitek
Enjoy it ! Feel free to fork :) !