PHP Classes

File: Script/_server/app/languages/en.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   H2OGame PHP Game Engine   Script/_server/app/languages/en.php   Download  
File: Script/_server/app/languages/en.php
Role: Example script
Content type: text/plain
Description: Example script
Class: H2OGame PHP Game Engine
Application to manage an online games platform
Author: By
Last change:
Date: 2 years ago
Size: 1,160 bytes
 

Contents

Class file image Download
<?php
/**
 * @author Pierre-Henry Soria <ph7software@gmail.com>
 * @copyright (c) 2014-2015, 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',
);