jackjoe / laravel-yaml-translation by jeroenbourgois
forked from Devitek/laravel-yaml-translation

Add YAML file support to Laravel TranslationServiceProvider, fork of devitek/yaml-translation
23,537
1
4
Package Data
Maintainer Username: jeroenbourgois
Maintainer Contact: hello@jackjoe.be (Jack + Joe)
Package Create Date: 2015-03-17
Package Last Update: 2019-10-01
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-03-26 15:03:41
Package Statistics
Total Downloads: 23,537
Monthly Downloads: 184
Daily Downloads: 5
Total Stars: 1
Total Watchers: 4
Total Forks: 2
Total Open Issues: 0

Yaml Translation

Latest Version Monthly Downloads

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 &copy;

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 © 2018 Jack + Joe. This is free software, and may be redistributed under the terms specified in the LICENSE file.