dev-master
9999999-devLazy translations for cakephp
MIT
The Requires
- php >=7.1.0
- cakephp/cakephp 3.4.*
- mobiledetect/mobiledetectlib 2.*
- cakephp/migrations ~1.0
- cakephp/plugin-installer *
Lazy translations for cakephp
A CakePHP 3 plugin that overrides the default __
translation function to enable lazy evaluation., (*2)
For now this is only a prototype/proof of concept., (*3)
Let's say you define some translations in a configuration file which is loaded in the bootstrap.php
.
But afterwards in the code the locale in the I18n
class is changed., (*4)
Result: The translations in the config are in a different locale than those evaluated after changing the locale., (*5)
__
now returns an object that contains everything needed to create the translation but is only evaluated
when cast to a string., (*6)
composer.json
"require": { "jonathan-neugber/cake-lazytranslations": "dev-master", }
Open a terminal in your project-folder and run, (*7)
$ composer update
config/functions.php
Now here it gets a bit tricky.
As you can't yet set the order of loaded files in the composer.json
you need it manually add it in the index.php
file BEFORE the autoloader.php
(Same applies for the bin/cake.php
file for the shell)., (*8)
require dirname(__DIR__) . '/vendor/jonathan-neugber/cake-lazytranslations/config/functions.php'; require dirname(__DIR__) . '/vendor/autoload.php';
Lazy translations for cakephp
MIT