This work is licensed under the Creative Commons Attribution-ShareAlike License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/2.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
*********************************************************************
* Multilanguage
***************************************
Description:
	This pas describe the multilanguage mechanism used in Configurateur project.

Authors Logs:
	2004-07-08 Nicolas Dufresne <nicolas@revolutionlinux.com}
	- added licence and Data	
	2004-07-08 Nicolas Dufresne <nicolas@revolutionlinux.com}
	- Creation
****************************************

All texts are stored in files called text-<lang>.php.  <lang> is the parameter
to pass to configuration file (config.php) to use the page.  All texts are 
accessed by the function getMessage from the function library called 
functions.php.  To traduce you can copy text-en.php to text-<lang>.php.  Then 
change the line :
	$lang = "en";
For :
	$lang = "<lang";
And finaly traduce the text. We are planing to build a module to test language
files syntax.
	
