Add YAML file support to Laravel TranslationServiceProvider, fork of devitek/laravel-yaml-translation
mydnic/laravel-yaml-translation is a Laravel package for add yaml file support to laravel translationserviceprovider, fork of devitek/laravel-yaml-translation.
It currently has 1 GitHub stars and 71 downloads on Packagist (latest version v1.2.0).
Install it with composer require mydnic/laravel-yaml-translation.
Discover more Laravel packages by mydnic
or browse all Laravel packages to compare alternatives.
Last updated
Based and forked from https://github.com/jackjoe/laravel-yaml-translation
This package uses Symfony/Yaml parser, and is forked from Devitek/laravel-yaml-translation
composer require mydnic/laravel-yaml-translation
You have to replace
Illuminate\Translation\TranslationServiceProvider::class,
with
Mydnic\Core\Translation\TranslationServiceProvider::class,
in config/app.php.
Instead of using the regular php files to input your translation, use yml or yaml files instead.
PHP:
<?php
return [
'hello' => 'Hello :name',
'author' => 'Devitek',
];
Will in YAML be equivalent to:
hello: Hello :name
author: Jack + Joe
A more complex example:
title: My Website
copyright: |
2015 ©
team:
- name: Foo
age: 18
- name: Bar
age: 20
When you want to use the yaml files, be sure to delete the php files!
This is free software, and may be redistributed under the terms specified in the LICENSE file.