<?php
/**
* This is the the Test File for Language_Convert.clss.php. It shows how to create and used
* the website based on Language
* @package Language_Convert_Class
* @subpackage Language_Convert
* @author Asokan Sivasubramanian <asokanstar@gmail.com>
* @version 1.0
*/
/*
* Array handler setup as key & value
* Key represent the displayed values
* This file used to manage french language
*/
$lang_array = array(
'HELLO' => 'Bonjour,',
'WELCOME' => 'Bienvenue sur notre site,',
'THANKS' => 'Merci & Observe',
'DEVELOPER' => 'Développeurs'
);
?>
|