| 
<?php/**
 * @author           Pierre-Henry Soria <[email protected]>
 * @copyright        (c) 2014, Pierre-Henry Soria. All Rights Reserved.
 * @license          See H2O.LICENSE.txt and H2O.COPYRIGHT.txt in the root directory.
 * @link             http://hizup.com
 */
 
 namespace H2O;
 defined('H2O') or exit('Access denied');
 
 Registry::getInstance()->aCoreLang = array
 (
 'lang' => 'en',
 'charset' => 'utf-8',
 'Powered by' => 'Powered by',
 'Error occurred' => 'Oops! An error has occurred. Please try again later.',
 'The following error was found' => 'The following error was found:',
 'The following %0% errors were found' => 'The following %0% errors were found:',
 'Error: this %element% must contain %0% character(s) or more' => 'Error: this %element% must contain %0% character(s) or more.',
 'Error: this %element% must contain %0% character(s) or less' => 'Error: this %element% must contain %0% character(s) or less.',
 'Please enter a string' => 'Please enter a string.',
 'Not Found' => 'Content Not Found!',
 'Privacy Policy' => 'Privacy Policy',
 'About' => 'About',
 'Contact' => 'Contact',
 );
 |