PHP Classes

File: app/Languages/App.en.php

Recommend this page to a friend!
  Classes of Ujah Chigozie peter   Luminova Framework   app/Languages/App.en.php   Download  
File: app/Languages/App.en.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Luminova Framework
PHP Luminova framework: simple, powerful MVC/HMVC.
Author: By
Last change:
Date: 1 month ago
Size: 323 bytes
 

Contents

Class file image Download
<?php
/**
 * @example locale('en') set local to english
 *
 * @example lang('App.error')
 * @example lang('App.invalid_user', null, null, [
 * 'name' => 'Peter',
 * 'email' => 'peter@example.com'
 * ])
*/

return [
   
'error' => 'An error has occurred',
   
'invalid_user' => 'Invalid user name {0} and email {1}'
];