<?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()->aLang = array 
( 
    'Admin Panel' => 'Welcome to your Admin Panel', 
    'Welcome to your Admin Panel' => 'Welcome to your Admin Panel!', 
    'Login to your Admin Panel' => 'Login to your Admin Panel!', 
    'Your Account' => 'Your Account', 
    'Change your Password' => 'Change your Password', 
    'Advertising' => 'Advertising', 
    'Update' => 'Update', 
    'Save' => 'Save', 
    'Login' => 'Login', 
    'Ad Slot %0%:' => 'Ad Slot %0%:', 
    'Email' => 'Email:', 
    'Name' => 'Name:', 
    'Language preference ' => 'Language preference:', 
    'Password' => 'Password:', 
    'Your current Password' => 'Your current Password:', 
    'Your new Password' => 'Your new Password:', 
    'Repeat your new Password' => 'Repeat your new Password:', 
    'Change' => 'Change', 
    'The ad has been successfully updated' => 'The ad has been successfully updated!', 
    'Your profile has been successfully updated' => 'Your profile has been successfully updated!', 
    'You have successfully logged in' => 'You have successfully logged in!', 
    'Email or Password is invalid' => 'Your Email or Password is invalid', 
    'Different Password' => 'Passwords do not match', 
    'Current Password is wrong' => 'Your current Password is wrong', 
    'Password has been changed with success' => 'Your Password has been changed with success!', 
    'You have been successfully logged out' => 'You have been successfully logged out!', 
    'Hi %0%! How are you doing today?' => 'Hi %0%! How are you doing today?', 
    'Admin Home' => 'Admin Home', 
    'Index Games' => 'Index Games', 
    'Edit and Delete any game' => 'Edit and Delete any Games', 
    'Add Game' => 'Add a Game', 
    'Advertising Management' => 'Advertising Management', 
    'Pages Management' => 'Pages Management', 
    'Analytics Code' => 'Analytics Code', 
    'Your Analytics Code' => 'Your Analytics Code', 
    'The Analytics code has been successfully updated' => 'The Analytics code has been successfully updated!', 
    'Edit my Account' => 'Edit my Account', 
    'Change my Password' => 'Change my Password', 
    'Logout' => 'Logout', 
    'For your security, your password must be different than your name' => 'For your security, your password must be different than your name.', 
    'Unable to load data! Please check that the reading ID is correct' => 'Unable to load data! Please check that the reading ID is correct.', 
); 
 
 |