I downloaded the Locale folder of the Project and pasted it inside src to do a multilanguage test. The controller is this: `
namespace App\Controller;
use Cake\I18n\I18n;
class PruebasController extends AppController
{
//////////////////////////////////SEARCH CUSTOMERS ///////////////////////////////////////////////
function index(){
I18n::locale(‘es’);
}
}
And his template is:
<?php echo __('Home'); ?>`
When I execute it does not translate. Can you tell me what I’m missing?.
Thanks