jackjoe/yaml-translation
| Install | |
|---|---|
composer require jackjoe/yaml-translation |
|
| Latest Version: | 2.1.5 |
| PHP: | ^7.1 |
| License: | MIT |
| Last Updated: | Sep 24, 2019 |
| Links: | GitHub · Packagist |
Yaml Translation
Add Yaml file support for Laravel 5 TranslationServiceProvider
This package uses Symfony/Yaml parser, and is forked from Devitek/laravel-yaml-translation
Installation
Composer
Add Laravel Localization to your composer.json file.
"jackjoe/yaml-translation": "*"
Run composer install to get the latest version of the package.
Manually
It's recommended that you use Composer, however you can download and install from this repository.
Add support in Laravel
You have to replace
'Illuminate\Translation\TranslationServiceProvider',
with
'JackJoe\Core\Translation\TranslationServiceProvider',
in config/app.php.
How to use
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
Important!
When you want to use the yaml files, be sure to delete the php files!
License
Copyright © 2019 Jack + Joe. This is free software, and may be redistributed under the terms specified in the LICENSE file.