Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv20516/chat/lib
Modified Files:
welcome.lib.php3
Log Message:
Add a spanish translation
Index: welcome.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/welcome.lib.php3,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** welcome.lib.php3 2001/04/03 20:17:40 1.1
--- welcome.lib.php3 2001/04/10 17:41:27 1.2
***************
*** 27,36 ****
switch ($dbSessionVars['lang'])
{
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;
--- 27,40 ----
switch ($dbSessionVars['lang'])
{
+ 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;
+
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 'spanish': // Para usuarios en Español
! define('WELCOME_MSG', 'Bienvenidos a nuestro chat. El objetivo es conocernos, intercambiar ideas y <i>especialmente, pasar un momento agradable</i>.');
break;
|