Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv32436/chat/lib
Added Files:
welcome.lib.php3
Log Message:
This file was missing in the CVS tree!
***** Bogus filespec: -
***** Bogus filespec: 0.14/chat/lib
--- NEW FILE ---
<?php
// Define the welcome message to be used when the 'C_WELCOME' switch is set
// to 1 inside the 'chat/config/config.lib.php3' file
switch ($L)
{
case 'french': // For french users
define('WELCOME_MSG', "Bienvenu(e) sur notre chat. N\'oubliez pas les <I>règles de politesse élémentaire</I> au cours de vos discussions.");
break;
case 'english': // For english users
define('WELCOME_MSG', "Welcome to our chat. Please obey the net etiquette while chatting: <I>try to be pleasant and polite</I>.");
break;
default: // When there is no translation for the language of the user
define('WELCOME_MSG', "Welcome to our chat. Please obey the net etiquette while chatting: <I>try to be pleasant and polite</I>.");
};
?>
|