You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
(51) |
Apr
(688) |
May
(260) |
Jun
(108) |
Jul
(42) |
Aug
|
Sep
(2) |
Oct
|
Nov
(74) |
Dec
(217) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
(3) |
Jun
(6) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2004 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
(8) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: Lo?c C. <lo...@us...> - 2001-04-11 21:10:53
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib In directory usw-pr-cvs1:/tmp/cvs-serv14937/lib Modified Files: index.lib.php3 Log Message: 'C_BAD_WORDS' directive become 'C_NO_SWEAR' ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/lib Index: index.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib/index.lib.php3,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** index.lib.php3 2001/04/10 17:39:34 1.7 --- index.lib.php3 2001/04/11 21:10:51 1.8 *************** *** 156,160 **** { $relog = false; ! if (C_BAD_WORDS == 1) include("./${ChatPath}lib/swearing.lib.php3"); // Check for no nick entered in if ($U == "") --- 156,160 ---- { $relog = false; ! if (C_NO_SWEAR == 1) include("./${ChatPath}lib/swearing.lib.php3"); // Check for no nick entered in if ($U == "") *************** *** 168,172 **** } // Check for swear words in the nick ! elseif (C_BAD_WORDS == 1 && checkwords($U, true)) { $Error = L_ERR_USR_18; --- 168,172 ---- } // Check for swear words in the nick ! elseif (C_NO_SWEAR == 1 && checkwords($U, true)) { $Error = L_ERR_USR_18; *************** *** 263,267 **** } // Check for swear words in room name ! else if(C_BAD_WORDS == 1 && checkwords($R2, true)) { $Error = L_ERR_ROM_2; --- 263,267 ---- } // Check for swear words in room name ! else if(C_NO_SWEAR == 1 && checkwords($R2, true)) { $Error = L_ERR_ROM_2; |
From: Lo?c C. <lo...@us...> - 2001-04-11 21:10:53
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat In directory usw-pr-cvs1:/tmp/cvs-serv14937 Modified Files: setup.php3 register.php3 input.php3 handle_inputH.php3 edituser.php3 Log Message: 'C_BAD_WORDS' directive become 'C_NO_SWEAR' ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat Index: setup.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/setup.php3,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** setup.php3 2001/03/23 18:44:46 1.4 --- setup.php3 2001/04/11 21:10:50 1.5 *************** *** 158,162 **** if (!isset($C_HTML_TAGS_SHOW)) $C_HTML_TAGS_SHOW = 0; if (!isset($C_BANISH) || $C_BANISH == "") $C_BANISH = 0; ! if (!isset($C_BAD_WORDS)) $C_BAD_WORDS = 0; if (trim($C_SAVE) == "") $C_SAVE = "*"; if (!isset($C_NOTIFY)) $C_NOTIFY = 0; --- 158,162 ---- if (!isset($C_HTML_TAGS_SHOW)) $C_HTML_TAGS_SHOW = 0; if (!isset($C_BANISH) || $C_BANISH == "") $C_BANISH = 0; ! if (!isset($C_NO_SWEAR)) $C_NO_SWEAR = 0; if (trim($C_SAVE) == "") $C_SAVE = "*"; if (!isset($C_NOTIFY)) $C_NOTIFY = 0; Index: register.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/register.php3,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** register.php3 2001/03/23 18:44:46 1.3 --- register.php3 2001/04/11 21:10:50 1.4 *************** *** 46,50 **** if (isset($FORM_SEND) && stripslashes($submit_type) == L_REG_3) { ! if (C_BAD_WORDS == 1) include("./lib/swearing.lib.php3"); if (trim($U) == "") { --- 46,50 ---- if (isset($FORM_SEND) && stripslashes($submit_type) == L_REG_3) { ! if (C_NO_SWEAR == 1) include("./lib/swearing.lib.php3"); if (trim($U) == "") { *************** *** 55,59 **** $Error = L_ERR_USR_16; } ! else if(C_BAD_WORDS == 1 && checkwords($U, true)) { $Error = L_ERR_USR_18; --- 55,59 ---- $Error = L_ERR_USR_16; } ! else if(C_NO_SWEAR == 1 && checkwords($U, true)) { $Error = L_ERR_USR_18; Index: input.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/input.php3,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** input.php3 2001/04/10 17:39:34 1.9 --- input.php3 2001/04/11 21:10:50 1.10 *************** *** 220,224 **** if (isset($M) && trim($M) != "" && (!isset($M0) || ($M != $M0)) && !($IsCommand || isset($Error))) { ! if (C_BAD_WORDS == 1) { include("./lib/swearing.lib.php3"); --- 220,224 ---- if (isset($M) && trim($M) != "" && (!isset($M0) || ($M != $M0)) && !($IsCommand || isset($Error))) { ! if (C_NO_SWEAR == 1) { include("./lib/swearing.lib.php3"); Index: handle_inputH.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/handle_inputH.php3,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** handle_inputH.php3 2001/04/10 17:39:34 1.6 --- handle_inputH.php3 2001/04/11 21:10:50 1.7 *************** *** 222,226 **** if (isset($M) && trim($M) != "" && (!isset($M0) || ($M != $M0)) && !($IsCommand || isset($Error))) { ! if (C_BAD_WORDS == 1) { include("./lib/swearing.lib.php3"); --- 222,226 ---- if (isset($M) && trim($M) != "" && (!isset($M0) || ($M != $M0)) && !($IsCommand || isset($Error))) { ! if (C_NO_SWEAR == 1) { include("./lib/swearing.lib.php3"); Index: edituser.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/edituser.php3,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** edituser.php3 2001/03/23 18:44:46 1.3 --- edituser.php3 2001/04/11 21:10:50 1.4 *************** *** 44,48 **** if (isset($FORM_SEND) && stripslashes($submit_type) == L_REG_16) { ! if (C_BAD_WORDS == 1) include("./lib/swearing.lib.php3"); if (trim($U) == "") { --- 44,48 ---- if (isset($FORM_SEND) && stripslashes($submit_type) == L_REG_16) { ! if (C_NO_SWEAR == 1) include("./lib/swearing.lib.php3"); if (trim($U) == "") { *************** *** 53,57 **** $Error = L_ERR_USR_16; } ! else if(C_BAD_WORDS == 1 && checkwords($U, true)) { $Error = L_ERR_USR_18; --- 53,57 ---- $Error = L_ERR_USR_16; } ! else if(C_NO_SWEAR == 1 && checkwords($U, true)) { $Error = L_ERR_USR_18; |
From: Lo?c C. <lo...@us...> - 2001-04-11 21:10:53
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/install In directory usw-pr-cvs1:/tmp/cvs-serv14937/install Modified Files: setup3.php3 setup2.php3 preconfig.php3 Log Message: 'C_BAD_WORDS' directive become 'C_NO_SWEAR' ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/install Index: setup3.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/install/setup3.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** setup3.php3 2001/02/28 20:01:40 1.2 --- setup3.php3 2001/04/11 21:10:50 1.3 *************** *** 74,78 **** <INPUT TYPE=hidden NAME="C_VERSION" VALUE="<?php echo($C_VERSION); ?>"> <INPUT TYPE=hidden NAME="C_BANISH" VALUE="<?php echo($C_BANISH); ?>"> ! <INPUT TYPE=hidden NAME="C_BAD_WORDS" VALUE="<?php echo($C_BAD_WORDS); ?>"> <INPUT TYPE=hidden NAME="C_SAVE" VALUE="<?php echo($C_SAVE); ?>"> <INPUT TYPE=hidden NAME="C_NOTIFY" VALUE="<?php echo($C_NOTIFY); ?>"> --- 74,78 ---- <INPUT TYPE=hidden NAME="C_VERSION" VALUE="<?php echo($C_VERSION); ?>"> <INPUT TYPE=hidden NAME="C_BANISH" VALUE="<?php echo($C_BANISH); ?>"> ! <INPUT TYPE=hidden NAME="C_NO_SWEAR" VALUE="<?php echo($C_NO_SWEAR); ?>"> <INPUT TYPE=hidden NAME="C_SAVE" VALUE="<?php echo($C_SAVE); ?>"> <INPUT TYPE=hidden NAME="C_NOTIFY" VALUE="<?php echo($C_NOTIFY); ?>"> Index: setup2.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/install/setup2.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** setup2.php3 2001/02/28 20:01:40 1.2 --- setup2.php3 2001/04/11 21:10:50 1.3 *************** *** 40,44 **** $C_HTML_TAGS_KEEP = (C_HTML_TAGS_KEEP == "simple"); $C_HTML_TAGS_SHOW = C_HTML_TAGS_SHOW; ! $C_BAD_WORDS = C_BAD_WORDS; $C_NOTIFY = C_NOTIFY; $C_WELCOME = C_WELCOME; --- 40,44 ---- $C_HTML_TAGS_KEEP = (C_HTML_TAGS_KEEP == "simple"); $C_HTML_TAGS_SHOW = C_HTML_TAGS_SHOW; ! $C_NO_SWEAR = C_NO_SWEAR; $C_NOTIFY = C_NOTIFY; $C_WELCOME = C_WELCOME; *************** *** 231,236 **** <TR> <TD COLSPAN=2 VALIGN=TOP><BR> ! <INPUT TYPE="checkbox" NAME="C_BAD_WORDS" VALUE="1" ! <?php if ($C_BAD_WORDS) echo("CHECKED"); ?>> <?php echo(S_SETUP2_36); ?> </TD> </TR> --- 231,236 ---- <TR> <TD COLSPAN=2 VALIGN=TOP><BR> ! <INPUT TYPE="checkbox" NAME="C_NO_SWEAR" VALUE="1" ! <?php if ($C_NO_SWEAR) echo("CHECKED"); ?>> <?php echo(S_SETUP2_36); ?> </TD> </TR> Index: preconfig.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/install/preconfig.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** preconfig.php3 2001/02/28 20:01:40 1.2 --- preconfig.php3 2001/04/11 21:10:50 1.3 *************** *** 42,46 **** define("C_VERSION", '<?php echo($C_VERSION); ?>'); define("C_BANISH", '<?php echo($C_BANISH); ?>'); ! define("C_BAD_WORDS", '<?php echo($C_BAD_WORDS); ?>'); define("C_SAVE", '<?php echo($C_SAVE); ?>'); --- 42,46 ---- define("C_VERSION", '<?php echo($C_VERSION); ?>'); define("C_BANISH", '<?php echo($C_BANISH); ?>'); ! define("C_NO_SWEAR", '<?php echo($C_NO_SWEAR); ?>'); define("C_SAVE", '<?php echo($C_SAVE); ?>'); |
From: Lo?c C. <lo...@us...> - 2001-04-11 21:10:53
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib/commands In directory usw-pr-cvs1:/tmp/cvs-serv14937/lib/commands Modified Files: quit.cmd.php3 priv_msg.cmd.php3 me.cmd.php3 join.cmd.php3 Log Message: 'C_BAD_WORDS' directive become 'C_NO_SWEAR' ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/lib/commands Index: quit.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib/commands/quit.cmd.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** quit.cmd.php3 2001/04/10 17:39:34 1.2 --- quit.cmd.php3 2001/04/11 21:10:51 1.3 *************** *** 4,8 **** if (trim($Cmd[3]) != "") { ! if (C_BAD_WORDS == 1) { include("./lib/swearing.lib.php3"); --- 4,8 ---- if (trim($Cmd[3]) != "") { ! if (C_NO_SWEAR == 1) { include("./lib/swearing.lib.php3"); Index: priv_msg.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib/commands/priv_msg.cmd.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** priv_msg.cmd.php3 2001/04/10 17:39:34 1.2 --- priv_msg.cmd.php3 2001/04/11 21:10:51 1.3 *************** *** 9,13 **** { // Check for swear words in the message if necessary ! if (C_BAD_WORDS == 1) { include("./lib/swearing.lib.php3"); --- 9,13 ---- { // Check for swear words in the message if necessary ! if (C_NO_SWEAR == 1) { include("./lib/swearing.lib.php3"); Index: me.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib/commands/me.cmd.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** me.cmd.php3 2001/04/10 17:39:34 1.2 --- me.cmd.php3 2001/04/11 21:10:51 1.3 *************** *** 2,6 **** // Check for swear words in the message if necessary ! if (C_BAD_WORDS == 1) { include("./lib/swearing.lib.php3"); --- 2,6 ---- // Check for swear words in the message if necessary ! if (C_NO_SWEAR == 1) { include("./lib/swearing.lib.php3"); Index: join.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib/commands/join.cmd.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** join.cmd.php3 2001/04/10 17:39:34 1.2 --- join.cmd.php3 2001/04/11 21:10:51 1.3 *************** *** 15,19 **** }; ! if (C_BAD_WORDS == 1) include("./lib/swearing.lib.php3"); $new_room_type = ($Cmd[2] != "" ? $Cmd[2]:1); --- 15,19 ---- }; ! if (C_NO_SWEAR == 1) include("./lib/swearing.lib.php3"); $new_room_type = ($Cmd[2] != "" ? $Cmd[2]:1); *************** *** 35,39 **** } // Check for swear words if necessary ! elseif(C_BAD_WORDS == 1 && checkwords($new_room, true)) { $Error = L_ERR_ROM_2; --- 35,39 ---- } // Check for swear words if necessary ! elseif(C_NO_SWEAR == 1 && checkwords($new_room, true)) { $Error = L_ERR_ROM_2; |
From: Lo?c C. <lo...@us...> - 2001-04-11 21:09:26
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/images/tutorials In directory usw-pr-cvs1:/tmp/cvs-serv14688 Modified Files: usersList.gif Log Message: Updatethat includes the gender information feature ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/images/tutorials Index: usersList.gif =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/images/tutorials/usersList.gif,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 Binary files /tmp/cvsTO8dSb and /tmp/cvsY2bCAd differ |
From: Lo?c C. <lo...@us...> - 2001-04-11 21:09:20
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/spanish In directory usw-pr-cvs1:/tmp/cvs-serv14123 Modified Files: localized.tutorial.php3 localized.chat.php3 Log Message: This time it's a fully validated translation :) ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/localization/spanish Index: localized.tutorial.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/spanish/localized.tutorial.php3,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** localized.tutorial.php3 2001/04/10 17:16:51 1.1 --- localized.tutorial.php3 2001/04/11 21:06:13 1.2 *************** *** 51,55 **** <P CLASS="redText"> ! Cuidado: Los usuarios de Netscape deben definir sus idiomas por defecto o cada carácter en los mensajes debe ser reemplazado por '?'.<BR> Esto puede realizarse de la siguiente manera: View/CharacterSet/your language Auto-Detect, entonces View/CharacterSet/SetDefault. --- 51,55 ---- <P CLASS="redText"> ! Cuidado: Los usuarios de Netscape, deben definir sus idiomas por defecto o cada carácter en los mensajes debe ser reemplazado por '?'.<BR> Esto puede realizarse de la siguiente manera: View/CharacterSet/your language Auto-Detect, entonces View/CharacterSet/SetDefault. *************** *** 143,147 **** <p><a name=language><?php if (C_MULTI_LANG == "1") { ?><b><span ! style='font-size:13.5pt'>Cambiar de idioma:</span></b></a> </p> <p>Usted puede cambiar a un idioma el cual <?php echo(APP_NAME); ?>ha sido --- 143,147 ---- <p><a name=language><?php if (C_MULTI_LANG == "1") { ?><b><span ! style='font-size:13.5pt'>Cambiando de idioma:</span></b></a> </p> <p>Usted puede cambiar a un idioma el cual <?php echo(APP_NAME); ?>ha sido *************** *** 151,155 **** <p align=center style='text-align:center'><img border=0 width=424 height=44 id="_x0000_i1027" src="images\tutorials\flags.gif" ! alt="Flags for language selection"></p> <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> --- 151,155 ---- <p align=center style='text-align:center'><img border=0 width=424 height=44 id="_x0000_i1027" src="images\tutorials\flags.gif" ! alt="Banderas para la selección de idiomas"></p> <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 167,172 **** <p>Si usted ya está registrado, simplemente ingrese su nombre de usuario y ! clave. Entonces seleccione el salón de chat que desea ingresar presionando el ! Chat botón.<br style='mso-special-character:line-break'> <![if !supportLineBreakNewLine]><br style='mso-special-character:line-break'> <![endif]><?php if (C_REQUIRE_REGISTER == "1") { ?></p> --- 167,172 ---- <p>Si usted ya está registrado, simplemente ingrese su nombre de usuario y ! clave. Entonces seleccione el salón de chat que desea ingresar y después presione el ! botón Chat.<br style='mso-special-character:line-break'> <![if !supportLineBreakNewLine]><br style='mso-special-character:line-break'> <![endif]><?php if (C_REQUIRE_REGISTER == "1") { ?></p> *************** *** 178,182 **** utilizar su nick una vez que usted salió del chat). <?php } ?></p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 178,182 ---- utilizar su nick una vez que usted salió del chat). <?php } ?></p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 188,192 **** ! <p><a name=register><b><span style='font-size:13.5pt'>Para Registración:</span></b></a> </p> --- 188,192 ---- ! <p><a name=register><b><span style='font-size:13.5pt'>Registrándose:</span></b></a> </p> *************** *** 199,204 **** usuario<?php if (!C_EMAIL_PASWD) echo(" y una clave"); ?> para usted tipeando en los lugares apropiados. El nombre de usuario que usted elige, ! será automáticamente mostrado en el salón de chat. No pude contener ! espacios, comas o barras (\). <?php if (C_BAD_WORDS == "1") echo(" No puede contener \"malas palabras\"."); ?></li> <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; mso-list:l3 level1 lfo1;tab-stops:list 36.0pt'>Segundo, Ingrese su nombre, --- 199,204 ---- usuario<?php if (!C_EMAIL_PASWD) echo(" y una clave"); ?> para usted tipeando en los lugares apropiados. El nombre de usuario que usted elige, ! será, automáticamente, mostrado en el salón de chat. No pude contener ! espacios, comas o barras (\). <?php if (C_NO_SWEAR == "1") echo(" No puede contener \"malas palabras\"."); ?></li> <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; mso-list:l3 level1 lfo1;tab-stops:list 36.0pt'>Segundo, Ingrese su nombre, *************** *** 214,218 **** que usted conoce. </li> <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; ! mso-list:l3 level1 lfo1;tab-stops:list 36.0pt'>Finalizando, si usted desea que su dirección de email pueda ser vista por otros usuarios, tilde la casilla "mostrar e-mail en información pública". Si usted no --- 214,218 ---- que usted conoce. </li> <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; ! mso-list:l3 level1 lfo1;tab-stops:list 36.0pt'>Para finalizar, si usted desea que su dirección de email pueda ser vista por otros usuarios, tilde la casilla "mostrar e-mail en información pública". Si usted no *************** *** 228,232 **** sus propios datos haciendo click en el campo apropiado.</p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 228,232 ---- sus propios datos haciendo click en el campo apropiado.</p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 239,243 **** <p><a name="create_room"><?php if (C_VERSION == "2") { ?><b><span ! style='font-size:13.5pt'>Para crear un salón:</span></b></a> </p> <p>Usuarios registrados pueden crear salones. Los salones Privados pueden ser --- 239,243 ---- <p><a name="create_room"><?php if (C_VERSION == "2") { ?><b><span ! style='font-size:13.5pt'>Creando un salón:</span></b></a> </p> <p>Usuarios registrados pueden crear salones. Los salones Privados pueden ser *************** *** 245,252 **** mostrados excepto por usuarios que están adentro.</p> ! <p>Los nombres de salones no pueden contener comas o barras (\).<?php if (C_BAD_WORDS == "1") echo(" No pueden contener \"malas palabras\"."); ?> </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 245,252 ---- mostrados excepto por usuarios que están adentro.</p> ! <p>Los nombres de salones no pueden contener comas o barras (\).<?php if (C_NO_SWEAR == "1") echo(" No pueden contener \"malas palabras\"."); ?> </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 267,280 **** <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; mso-list:l0 level1 lfo2;tab-stops:list 36.0pt'><img border=0 width=13 ! height=13 id="_x0000_i1032" src="images\connectOff.gif" alt="No connection">cuando la conexión no es requerida; </li> <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; mso-list:l0 level1 lfo2;tab-stops:list 36.0pt'><img border=0 width=13 ! height=13 id="_x0000_i1033" src="images\connectOn.gif" alt=Connecting>cuando la conexión está en progreso; </li> <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; mso-list:l0 level1 lfo2;tab-stops:list 36.0pt'><img border=0 width=13 height=13 id="_x0000_i1034" src="images\connectError.gif" ! alt="Connection failed">cuando hay una falla en la conexión. </li> </ul> --- 267,280 ---- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; mso-list:l0 level1 lfo2;tab-stops:list 36.0pt'><img border=0 width=13 ! height=13 id="_x0000_i1032" src="images\connectOff.gif" alt="Sin conexión">cuando la conexión no es requerida; </li> <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; mso-list:l0 level1 lfo2;tab-stops:list 36.0pt'><img border=0 width=13 ! height=13 id="_x0000_i1033" src="images\connectOn.gif" alt="Conectando">cuando la conexión está en progreso; </li> <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; mso-list:l0 level1 lfo2;tab-stops:list 36.0pt'><img border=0 width=13 height=13 id="_x0000_i1034" src="images\connectError.gif" ! alt="La conexión ha fallado">cuando hay una falla en la conexión. </li> </ul> *************** *** 282,286 **** nueva conexión. </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 282,286 ---- nueva conexión. </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 299,308 **** todos los usuarios pasan por la pantalla.<br style='mso-special-character:line-break'> <![if !supportLineBreakNewLine]><br style='mso-special-character:line-break'> ! <![endif]><?php if (C_BAD_WORDS == "1") echo("Note que las \"malas palabras\" son salteadas en los mensajes."); ?></p> <p>Usted puede cambiar el color de texto de sus mensajes por otro color de la lista que se encuentra en la caja de la derecha. </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 299,308 ---- todos los usuarios pasan por la pantalla.<br style='mso-special-character:line-break'> <![if !supportLineBreakNewLine]><br style='mso-special-character:line-break'> ! <![endif]><?php if (C_NO_SWEAR == "1") echo("Notará que las \"malas palabras\" son salteadas en los mensajes."); ?></p> <p>Usted puede cambiar el color de texto de sus mensajes por otro color de la lista que se encuentra en la caja de la derecha. </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 321,331 **** <ol start=1 type=1> <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; ! mso-list:l4 level1 lfo3;tab-stops:list 36.0pt'>un pequeño icono (<img border=0 width=5 height=9 id="_x0000_i1037" src="images\whoisOff.gif" ! alt="whois icon">) es mostrado antes del nick de un usuario registrado y ! haciendo click sobre él, se abrirá el <a href="#whois">la ventana de whois</a> para este usuario, mientras que para usuarios no registrados se observa un signo menos antes de su nick;</li> <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; mso-list:l4 level1 lfo3;tab-stops:list 36.0pt'>El nick del administrador o --- 321,339 ---- <ol start=1 type=1> + <!-- To update <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; ! mso-list:l4 level1 lfo3;tab-stops:list 36.0pt'>Un pequeño icono (<img border=0 width=5 height=9 id="_x0000_i1037" src="images\whoisOff.gif" ! alt="buscar icono">) es mostrado antes del nick de un usuario registrado y ! haciendo click sobre él, se abrirá <a href="#whois">la ventana de buscar</a> para este usuario, mientras que para usuarios no registrados se observa un signo menos antes de su nick;</li> + --> + <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; + mso-list:l4 level1 lfo3;tab-stops:list 36.0pt'>a little icon that shows + gender is displayed before the nick of a registered user (clicking on it will + launch the <A HREF="#whois">whois popup</A> for this user), while + unregistered users have nothing but blank spaces displayed before their nick; + </li> <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto; mso-list:l4 level1 lfo3;tab-stops:list 36.0pt'>El nick del administrador o *************** *** 339,343 **** <td style='padding:.75pt .75pt .75pt .75pt'> <p class=MsoNormal><img border=0 width=99 height=131 id="_x0000_i1038" ! src="images\tutorials\usersList.gif" alt="users list"></p> </td> <td style='padding:.75pt .75pt .75pt .75pt'> --- 347,351 ---- <td style='padding:.75pt .75pt .75pt .75pt'> <p class=MsoNormal><img border=0 width=99 height=131 id="_x0000_i1038" ! src="images\tutorials\usersList.gif" alt="lista de usuarios"></p> </td> <td style='padding:.75pt .75pt .75pt .75pt'> *************** *** 346,349 **** --- 354,358 ---- auto;mso-list:l1 level1 lfo4;tab-stops:list 36.0pt'>Nicolás es el admin o uno de los moderadores del salón phpMyChat;</li> + <!-- To update <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt: auto;mso-list:l1 level1 lfo4;tab-stops:list 36.0pt'>lolo y Jezek2 son *************** *** 353,356 **** --- 362,373 ---- auto;mso-list:l1 level1 lfo4;tab-stops:list 36.0pt'>Mary es una simple usuaria no registrada. </li> + --> + <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt: + auto;mso-list:l1 level1 lfo4;tab-stops:list 36.0pt'>alien (whose gender + is unknown), Jezek2 and Caridad are registered users with no extra + "power" for the phpMyChat room;</li> + <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt: + auto;mso-list:l1 level1 lfo4;tab-stops:list 36.0pt'>lolo es un simple + usuario no registrado.</li> </ul> </td> *************** *** 360,364 **** <p><![if !supportEmptyParas]> <![endif]><o:p></o:p></p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 377,381 ---- <p><![if !supportEmptyParas]> <![endif]><o:p></o:p></p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 384,388 **** entonces usted saldrá del chat. </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 401,405 ---- entonces usted saldrá del chat. </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 397,406 **** esta chateando sin estar logueado:</span></b></a> </p> ! <p>Usted puede hacer click en el link que muestra el número de usuarios conectados en el comienzo de la página, o, si usted está chateando, haga click en la imagen <img border=0 width=13 height=13 id="_x0000_i1041" ! src="images\popup.gif" alt="Users popup">hacia arriba y a la derecha de la ! pantalla para abrir una ventana independiente que mostrará la lista de usuarios ! conectados, y los salones en que ellos están, y casi en tiempo real.<br> El título de esta ventana contiene el nombre de los usuarios, si ellos son menos que tres, el número de usuarios y salones abiertos. </p> --- 414,423 ---- esta chateando sin estar logueado:</span></b></a> </p> ! <p>Usted puede hacer click en el vínculo que muestra el número de usuarios conectados en el comienzo de la página, o, si usted está chateando, haga click en la imagen <img border=0 width=13 height=13 id="_x0000_i1041" ! src="images\popup.gif" alt="Ventana de usuarios">hacia arriba y a la derecha de la ! pantalla, para abrir una ventana independiente que mostrará la lista de usuarios ! conectados, los salones en que ellos están, y casi en tiempo real.<br> El título de esta ventana contiene el nombre de los usuarios, si ellos son menos que tres, el número de usuarios y salones abiertos. </p> *************** *** 408,414 **** <p>Haciendo click en el icono <img border=0 width=13 height=13 id="_x0000_i1042" src="images\sound.gif" alt=Beeps>arriba de esta imagen serán ! activado/desactivados los sonidos de los usuarios entrantes. </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 425,431 ---- <p>Haciendo click en el icono <img border=0 width=13 height=13 id="_x0000_i1042" src="images\sound.gif" alt=Beeps>arriba de esta imagen serán ! activados/desactivados los sonidos de los usuarios entrantes. </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 490,494 **** mensajes posibles de ser vistos en su pantalla. Para cambiar el valor por defecto, tipear "/show n" sin comillas adonde n es el número de ! mensajes posibles de ser vistos. </p> <p style='margin-left:36.0pt'><i>Por ejemplo:</i> /show 50 </p> --- 507,511 ---- mensajes posibles de ser vistos en su pantalla. Para cambiar el valor por defecto, tipear "/show n" sin comillas adonde n es el número de ! mensajes posibles para ser vistos. </p> <p style='margin-left:36.0pt'><i>Por ejemplo:</i> /show 50 </p> *************** *** 515,519 **** <?php }; ?> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 532,536 ---- <?php }; ?> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 537,548 **** </p> ! <p><a name=help><b><span style='font-size:13.5pt'>comando Help:</span></b></a> </p> ! <p>Una vez que usted está en un salón, usted puede acceder al help <img border=0 width=15 height=15 id="_x0000_i1047" src="images\helpOff.gif" alt="?">situado justo antes de la caja de mensajes. Usted también puede tipear <b>"/help" o "/?" comandos</b> en la caja de mensajes. </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 554,565 ---- </p> ! <p><a name=help><b><span style='font-size:13.5pt'>comando Help (Ayuda):</span></b></a> </p> ! <p>Una vez que usted está en un salón, usted puede acceder a la ayuda (help) <img border=0 width=15 height=15 id="_x0000_i1047" src="images\helpOff.gif" alt="?">situado justo antes de la caja de mensajes. Usted también puede tipear <b>"/help" o "/?" comandos</b> en la caja de mensajes. </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 583,592 **** <P> ! <p><i>Por ejemplo</i>, enviando el texto "Hola Jack :)" sin comillas se mostrará el mensaje completo así Hola Jack <img border=0 width=15 height=15 id="_x0000_i1049" src="images\smilies\smile1.gif" alt=":)">en la pantalla general o principal. </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 600,609 ---- <P> ! <p><i>Por ejemplo</i>, enviando el texto "Hola Jack :)" sin comillas, se mostrará el mensaje completo así Hola Jack <img border=0 width=15 height=15 id="_x0000_i1049" src="images\smilies\smile1.gif" alt=":)">en la pantalla general o principal. </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 612,616 **** dirección (sin HTML tags). El hipervínculo será creado automáticamente. </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 629,633 ---- dirección (sin HTML tags). El hipervínculo será creado automáticamente. </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 623,627 **** ! <p><a name=invite><?php }; ?><b><span style='font-size:13.5pt'>Invitar a un usuario a ingresar a su salón:</span></b></a> </p> --- 640,644 ---- ! <p><a name=invite><?php }; ?><b><span style='font-size:13.5pt'>Invitando a un usuario a ingresar a su salón:</span></b></a> </p> *************** *** 633,637 **** <p>enviará un mensaje privado a Jack sugiriéndole que entre a su salón. Este mensaje contiene el nombre del salón específico, y este nombre aparece como un ! link. </p> <p>Note que usted puede poner más de un nombre de usuario en el comando invite --- 650,654 ---- <p>enviará un mensaje privado a Jack sugiriéndole que entre a su salón. Este mensaje contiene el nombre del salón específico, y este nombre aparece como un ! vínculo. </p> <p>Note que usted puede poner más de un nombre de usuario en el comando invite *************** *** 639,643 **** comas (,) pero sin espacios. </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 656,660 ---- comas (,) pero sin espacios. </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 657,678 **** simplemente haga click en el salón adonde quiere ingresar. Salones vacíos no aparecen en la lista. Usted puede moverse a un salón vacío tipeando <b>comando ! "/join #roomname"</b> sin comillas. </p> ! <p><i>Por ejemplo:</i> /join #RedRoom </p> ! <p>lo llevará a usted al nuevo salón llamado RedRoom. <?php if (C_VERSION == "2") { echo(C_REQUIRE_REGISTER == "0" ? "<P>Si usted es un usuario registrado, usted" : "<BR><P>You"); ?>puede crear un nuevo salón con este comando. Pero entonces usted tiene que especificar el tipo: 0 para salones privados, 1 para salones públicos (valor por defecto). </p> ! <p><i>Por ejemplo:</i> /join 0 #MyRoom </p> <p>crea un nuevo salón privado (asumiendo que no hay un salón público creado ! con ese mismo nombre) llamado MyRoom y usted ingresa a ese salón. </p> ! <p>Los nombres de los salones no pueden contener comas o barras (\).<?php if (C_BAD_WORDS == "1") echo(" No pueden contener \"malas palabras\"."); ?> <?php } ?></p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 674,695 ---- simplemente haga click en el salón adonde quiere ingresar. Salones vacíos no aparecen en la lista. Usted puede moverse a un salón vacío tipeando <b>comando ! "/join #nombresalón"</b> sin comillas. </p> ! <p><i>Por ejemplo:</i> /join #Salónrojo </p> ! <p>lo llevará a usted al nuevo salón llamado Salónrojo. <?php if (C_VERSION == "2") { echo(C_REQUIRE_REGISTER == "0" ? "<P>Si usted es un usuario registrado, usted" : "<BR><P>Usted"); ?> puede crear un nuevo salón con este comando. Pero entonces usted tiene que especificar el tipo: 0 para salones privados, 1 para salones públicos (valor por defecto). </p> ! <p><i>Por ejemplo:</i> /join 0 #MiSalón </p> <p>crea un nuevo salón privado (asumiendo que no hay un salón público creado ! con ese mismo nombre) llamado MiSalón y usted ingresa a ese salón. </p> ! <p>Los nombres de los salones no pueden contener comas o barras (\).<?php if (C_NO_SWEAR == "1") echo(" No pueden contener \"malas palabras\"."); ?> <?php } ?></p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 690,697 **** <p>El <b>comando Profile</b> Crea una ventana separada con la que puede editar sus datos y modificarlos excepto el nick y la clave (usted tiene que utilizar ! el link en el comienzo de la página para realizar esto).<br> Tipear /profile </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 707,714 ---- <p>El <b>comando Profile</b> Crea una ventana separada con la que puede editar sus datos y modificarlos excepto el nick y la clave (usted tiene que utilizar ! el vínculo en el comienzo de la página para realizar esto).<br> Tipear /profile </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 711,715 **** Tipear /! </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 728,732 ---- Tipear /! </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 730,734 **** usuario. </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 747,751 ---- usuario. </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 745,749 **** <p>Para enviar un mensaje privado a otro usuario del salón, tipear el <b>comando ! "/msg usuario texto" o "/a usuario texto"</b> sin comillas. </p> --- 762,766 ---- <p>Para enviar un mensaje privado a otro usuario del salón, tipear el <b>comando ! "/msg usuario texto" o "/to usuario texto"</b> sin comillas. </p> *************** *** 751,762 **** cómo está usted? </p> ! <p>Este mensaje aparecerá a Jack y a usted mismo, pero otros usuarios no podrán verlo. </p> ! <p>Note que haciendo click sobre el nick de un enviador de mensajes en la ! pantalla general, automáticamente añade este comando en el campo para mensajes. </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 768,779 ---- cómo está usted? </p> ! <p>Este mensaje le aparecerá a Jack y a usted, pero otros usuarios no podrán verlo. </p> ! <p>Note que haciendo click sobre el nick de un usuario en la ! pantalla general, automáticamente, se añade este comando en el campo para mensajes. </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 778,782 **** fumando un cigarrillo". </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 795,799 ---- fumando un cigarrillo". </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 804,814 **** <p>Para resumir los mensajes ignorados de una usuarios, tipear el <b>comando "/ignore - usuario"</b> sin comillas adonde "-" es un ! hyphen. </p> <p><i>Por ejemplo:</i> /ignore - Jack </p> <p>Ahora todos los mensajes de Jack durante la sesión serán mostrados, ! incluyendo todos los mensajes enviados por Jack antes de que usted tipear este ! comando. Si usted no puede especificar el nombre de usuario después del hyphen, su "lista de ignorados" será limpiada. </p> --- 821,831 ---- <p>Para resumir los mensajes ignorados de una usuarios, tipear el <b>comando "/ignore - usuario"</b> sin comillas adonde "-" es un ! guión. </p> <p><i>Por ejemplo:</i> /ignore - Jack </p> <p>Ahora todos los mensajes de Jack durante la sesión serán mostrados, ! incluyendo todos los mensajes enviados por Jack antes de tipear este ! comando. Si usted no puede especificar el nombre de usuario después del guión, su "lista de ignorados" será limpiada. </p> *************** *** 817,821 **** deben ser agregados separados por comas (,) sin espacios. </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 834,838 ---- deben ser agregados separados por comas (,) sin espacios. </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 839,843 **** separada que mostrará la información pública declarada por el usuario. </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 856,860 ---- separada que mostrará la información pública declarada por el usuario. </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 850,854 **** ! <p><a name=save><?php if (C_SAVE != "0") { ?><b><span style='font-size:13.5pt'>Salvar mensajes:</span></b></a> </p> --- 867,871 ---- ! <p><a name=save><?php if (C_SAVE != "0") { ?><b><span style='font-size:13.5pt'>Salvando mensajes:</span></b></a> </p> *************** *** 862,866 **** cuenta. </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 879,883 ---- cuenta. </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 886,890 **** <P> ! <FONT SIZE="+1"><A NAME="announce"><B>Enviar un anuncio:</B></A></FONT> <P> --- 903,907 ---- <P> ! <FONT SIZE="+1"><A NAME="announce"><B>Enviando un anuncio:</B></A></FONT> <P> *************** *** 893,899 **** <p><i>Por ejemplo: /announce El sistema de chat quedará fuera de funcionamiento ! por mantenimiento a las 8pm.</i> </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 910,916 ---- <p><i>Por ejemplo: /announce El sistema de chat quedará fuera de funcionamiento ! por mantenimiento a las 8 p.m..</i> </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 909,913 **** </a></p> ! <p><span style='mso-bookmark:kick'>Moderadores pueden kickear a un usuario y el administrador puede kickear a un usuario o al moderador con el <b>comando kick</b>. Excepto para el administrador, el usuario ha ser kickeado debe estar en el --- 926,930 ---- </a></p> ! <p><span style='mso-bookmark:kick'>Moderadores pueden kickear a un usuario, y el administrador puede kickear a un usuario o al moderador con el <b>comando kick</b>. Excepto para el administrador, el usuario ha ser kickeado debe estar en el *************** *** 919,923 **** <span style='mso-bookmark:kick'></span> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 936,940 ---- <span style='mso-bookmark:kick'></span> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 931,937 **** <p><a name=banish><?php if (C_BANISH != "0") { ?><b><span style='font-size: ! 13.5pt'>Banear a un usuario:</span></b></a> </p> ! <p>Moderadores pueden banear a un usuario o a un moderador con el <b>comando ban</b>.<br> El administrador puede banear a un usuario de otro salón el cual está chateando --- 948,954 ---- <p><a name=banish><?php if (C_BANISH != "0") { ?><b><span style='font-size: ! 13.5pt'>Baneando a un usuario:</span></b></a> </p> ! <p>Moderadores pueden banear a un usuario, o a un moderador con el <b>comando ban</b>.<br> El administrador puede banear a un usuario de otro salón el cual está chateando *************** *** 943,947 **** Jack</i> o <i>/ban * Jack</i> </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> --- 960,964 ---- Jack</i> o <i>/ban * Jack</i> </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> *************** *** 954,959 **** ! <p><a name=promote><?php }; ?><b><span style='font-size:13.5pt'>Promover a un ! usuario a moderador:</span></b></a> </p> <p>Moderadores y el Administrador pueden promover a otros usuarios a --- 971,976 ---- ! <p><a name=promote><?php }; ?><b><span style='font-size:13.5pt'>Promoviendo a un ! usuario al nivel de moderador:</span></b></a> </p> <p>Moderadores y el Administrador pueden promover a otros usuarios a *************** *** 967,971 **** </p> ! <p align=right style='text-align:right'><a href="#top">Volver hacia arriba</a></p> </div> --- 984,988 ---- </p> ! <p align=right style='text-align:right'><a href="#top">Volver al comienzo</a></p> </div> Index: localized.chat.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/spanish/localized.chat.php3,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** localized.chat.php3 2001/04/10 17:16:51 1.4 --- localized.chat.php3 2001/04/11 21:06:13 1.5 *************** *** 13,18 **** define("L_TUTORIAL", "Tutorial"); ! define("L_WEL_1", "Mensajes son borrados después"); ! define("L_WEL_2", "horas y usuarios después"); define("L_WEL_3", "minutos ..."); --- 13,18 ---- define("L_TUTORIAL", "Tutorial"); ! define("L_WEL_1", "Mensajes son borrados después de"); ! define("L_WEL_2", "horas y usuarios después de"); define("L_WEL_3", "minutos ..."); *************** *** 34,38 **** define("L_SET_11", "privado"); define("L_SET_12", "salón"); ! define("L_SET_13", "Entonces, ahora"); define("L_SET_14", "chat"); --- 34,38 ---- define("L_SET_11", "privado"); define("L_SET_12", "salón"); ! define("L_SET_13", "Entonces, ahora hacer click en"); define("L_SET_14", "chat"); *************** *** 47,51 **** define("L_REG_1r", "(solo si usted está registrado)"); define("L_REG_2", "Administración de cuenta"); ! define("L_REG_3", "Registro"); define("L_REG_4", "Edite sus datos"); define("L_REG_5", "Borrar usuario"); --- 47,51 ---- define("L_REG_1r", "(solo si usted está registrado)"); define("L_REG_2", "Administración de cuenta"); ! define("L_REG_3", "Registrarse primero"); define("L_REG_4", "Edite sus datos"); define("L_REG_5", "Borrar usuario"); *************** *** 131,134 **** --- 131,135 ---- define("L_BEEP", "Beep/no beep cuando el usuario ingresa"); define("L_PROFILE", "mostrar perfil (datos)"); + define("L_NO_PROFILE", "No perfil (datos)"); // input frame *************** *** 156,160 **** // help popup ! define("L_HELP_TIT_1", "Sonrisas"); define("L_HELP_TIT_2", "Formato de texto para mensajes"); define("L_HELP_FMT_1", "Usted puede poner negritas, itálicas o texto subrayado en mensajes utilizando <B> </B>, <I> </I> o <U> </U> tags.<BR>Por ejemplo, <B>este texto</B> producirá <B>este texto</B>."); --- 157,161 ---- // help popup ! define("L_HELP_TIT_1", "Caritas"); define("L_HELP_TIT_2", "Formato de texto para mensajes"); define("L_HELP_FMT_1", "Usted puede poner negritas, itálicas o texto subrayado en mensajes utilizando <B> </B>, <I> </I> o <U> </U> tags.<BR>Por ejemplo, <B>este texto</B> producirá <B>este texto</B>."); *************** *** 202,206 **** "Oscuro verde" => "#006600", "Oscuro azul" => "#000099", ! "Maroon" => "#996633", "Azul agua" => "#006699", "Naranja" => "#FF6600"); --- 203,207 ---- "Oscuro verde" => "#006600", "Oscuro azul" => "#000099", ! "Marrón" => "#996633", "Azul agua" => "#006699", "Naranja" => "#FF6600"); *************** *** 216,220 **** // Notification messages of user entrance/exit ! define("L_ENTER_ROM", "%s ingresos a este salón"); ! define("L_EXIT_ROM", "%s salidas de este salón"); ?> --- 217,221 ---- // Notification messages of user entrance/exit ! define("L_ENTER_ROM", "%s ingresó a este salón"); ! define("L_EXIT_ROM", "%s salió de este salón"); ?> |
From: Lo?c C. <lo...@us...> - 2001-04-11 21:09:18
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/install/languages In directory usw-pr-cvs1:/tmp/cvs-serv14343 Modified Files: spanish.setup.php3 Log Message: Fixed some errors ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/install/languages Index: spanish.setup.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/install/languages/spanish.setup.php3,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** spanish.setup.php3 2001/04/10 17:16:51 1.1 --- spanish.setup.php3 2001/04/11 21:07:18 1.2 *************** *** 54,58 **** define("S_SETUP1_15","mensajes serán almacenados:"); define("S_SETUP1_16","datos de los usuarios registrados serán almacenados:"); ! define("S_SETUP1_17","logged de los usuarios serán almacenados:"); define("S_SETUP1_18","<SUP>*</SUP>Los nombres que usted ingresa para las tablas deben corresponder a existentes is usted elige<BR><B>update</B> de ellos. Si usted quiere <B>crear nuevas tablas</B> los nombres <B>no</B> deben ser los <BR> mismos que las tablas existentes!<BR>Todos los campos deben ser completados, si usted no quiere que el script lo haga<BR>será necesario hacerlo cuando crea el Administrador<BR>más adelante."); define("S_SETUP1_19","OK"); --- 54,58 ---- define("S_SETUP1_15","mensajes serán almacenados:"); define("S_SETUP1_16","datos de los usuarios registrados serán almacenados:"); ! define("S_SETUP1_17","logueo de los usuarios serán almacenados:"); define("S_SETUP1_18","<SUP>*</SUP>Los nombres que usted ingresa para las tablas deben corresponder a existentes is usted elige<BR><B>update</B> de ellos. Si usted quiere <B>crear nuevas tablas</B> los nombres <B>no</B> deben ser los <BR> mismos que las tablas existentes!<BR>Todos los campos deben ser completados, si usted no quiere que el script lo haga<BR>será necesario hacerlo cuando crea el Administrador<BR>más adelante."); define("S_SETUP1_19","OK"); *************** *** 73,77 **** define("S_SETUP2_11","Seguridad y resticciones"); define("S_SETUP2_12","Mostrar los link para administración de recursos cuando aparece la pantalla ?"); ! define("S_SETUP2_13","Mostrar los link que permite a los usuarios borrar sus datos ?"); define("S_SETUP2_14","Quiere registrarse?"); define("S_SETUP2_15","Usuarios pueden acceder..."); --- 73,77 ---- define("S_SETUP2_11","Seguridad y resticciones"); define("S_SETUP2_12","Mostrar los link para administración de recursos cuando aparece la pantalla ?"); ! define("S_SETUP2_13","Mostrar los link que permiten a los usuarios borrar sus datos ?"); define("S_SETUP2_14","Quiere registrarse?"); define("S_SETUP2_15","Usuarios pueden acceder..."); *************** *** 122,126 **** // Settings for setup4.php3 file define("S_SETUP4_1","Cuarto paso: El archivo config"); ! define("S_SETUP4_2","Aquí está el archivo config, conforme a la información que usted ha ingresado.<BR><BR>Copiar todo, incluyendo las primeras y últimas lineas, y luego pegarla en su editor de texto favorito (Notepad, Vi...). Después, usted *debe* ingresar la clave de su base de datos en la linea 7 y salvar el archivo como <I>config.lib.php3</I>.<BR><BR>Asegúrese que no hay <B>ni lineas en blanco, ni espacios entre caracteres, ni antes de la apertura del php, ni después de cerrado</B>, entonces usted puede cargar el archivo config en el server <I>config</I> directorio (reemplazar el existente) y asegurarse (ver <I>install.txt</I> en el directorio <I>docs</I> para más información sobre esto).<BR><BR>No se olvide de mirar <A HREF=\"#warn\">warning message</A> abajo."); define("S_SETUP4_3","Seleccionar todo"); define("S_SETUP4_4","Una vez que usted ha completado los pasos de abajo, %s está casi listo para correr.<BR>"); --- 122,126 ---- // Settings for setup4.php3 file define("S_SETUP4_1","Cuarto paso: El archivo config"); ! define("S_SETUP4_2","Aquí está el archivo config, conforme a la información que usted ha ingresado.<BR><BR>Copiar todo, incluyendo las primeras y últimas lineas, y luego pegarla en su editor de texto favorito (Notepad, Vi...). Después, usted *debe* ingresar la clave de su base de datos en la linea 7 y salvar el archivo como <I>config.lib.php3</I>.<BR><BR>Asegúrese que no hay <B>ni lineas en blanco, ni espacios entre caracteres, ni antes de la apertura del php, ni después de cerrado</B>, entonces usted puede cargar el archivo config en el server <I>config</I> directorio (reemplazar el existente) y asegurarse (ver <I>install.txt</I> en el directorio <I>docs</I> para más información sobre esto).<BR><BR>No se olvide de mirar <A HREF=\"#warn\">cuidado</A> abajo."); define("S_SETUP4_3","Seleccionar todo"); define("S_SETUP4_4","Una vez que usted ha completado los pasos de abajo, %s está casi listo para correr.<BR>"); |
From: Lo?c C. <lo...@us...> - 2001-04-11 21:09:18
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/docs In directory usw-pr-cvs1:/tmp/cvs-serv14437 Modified Files: credits.txt Log Message: Add credits for the Japanese translation ***** Bogus filespec: - ***** Bogus filespec: 0.14/docs Index: credits.txt =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/docs/credits.txt,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** credits.txt 2001/04/10 17:16:51 1.5 --- credits.txt 2001/04/11 21:08:01 1.6 *************** *** 61,65 **** Giuliano Yurij Beccaria <yu...@e-...>, Marco Borrini <mar...@tr...>, Bartolotta Gioachino <dev...@ro...> & Silvia M. Carrassi <si...@la...> ! Japanese : don't know Korean : Hongki Lee <ge...@ma...> & TaeHwan Bae <bt...@ha...> Malay : Nazri Hussain <na...@mi...> --- 61,65 ---- Giuliano Yurij Beccaria <yu...@e-...>, Marco Borrini <mar...@tr...>, Bartolotta Gioachino <dev...@ro...> & Silvia M. Carrassi <si...@la...> ! Japanese : Yosuke Hamamoto <yo...@ke...> Korean : Hongki Lee <ge...@ma...> & TaeHwan Bae <bt...@ha...> Malay : Nazri Hussain <na...@mi...> |
From: Lo?c C. <lo...@us...> - 2001-04-11 21:05:33
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/japanese In directory usw-pr-cvs1:/tmp/cvs-serv13969 Modified Files: localized.chat.php3 Log Message: A new validated translation :) ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/localization/japanese Index: localized.chat.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/japanese/localized.chat.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** localized.chat.php3 2001/02/25 19:10:09 1.2 --- localized.chat.php3 2001/04/11 21:05:30 1.3 *************** *** 1,6 **** <?php - // Important note: This translation must be verified. Compare it with original english.lang.php3 // File : japanese.lang.php3 ! // Translation by --- // extra header for charset --- 1,5 ---- <?php // File : japanese.lang.php3 ! // Translation by Yosuke Hamamoto <yo...@ke...> // extra header for charset *************** *** 11,24 **** // welcome page ! define("L_TUTORIAL", "Tutorial"); define("L_WEL_1", "¥á¥Ã¥»¡¼¥¸¤Ï"); ! define("L_WEL_2", "»þ´Ö¸å¤Ëºï½ü ¥æ¡¼¥¶¡¼¤Ï"); ! define("L_WEL_3", "ʬ´Öȯ¸À¤¬Ìµ¤¤¤Èºï½ü ..."); ! define("L_CUR_1", "¸½ºß"); ! define("L_CUR_2", "¿Í¤¬¥Á¥ã¥Ã¥È¤Ë»²²Ã¤·¤Æ¤¤¤Þ¤¹"); ! define("L_CUR_3", "Users currently in the chat rooms"); ! define("L_CUR_4", "users in private rooms"); define("L_SET_1", "¥æ¡¼¥¶¡¼ÀßÄê"); --- 10,23 ---- // welcome page ! define("L_TUTORIAL", "¥Á¥ã¥Ã¥È¤ÎÀâÌÀ"); define("L_WEL_1", "¥á¥Ã¥»¡¼¥¸¤Ï"); ! define("L_WEL_2", "»þ´Ö¸å¤Ëºï½ü¤µ¤ì¤Þ¤¹¡£¥æ¡¼¥¶¡¼¤Ï"); ! define("L_WEL_3", "ʬ´Öȯ¸À¤¬Ìµ¤¤¤Èºï½ü¤µ¤ì¤Þ¤¹¡£"); ! define("L_CUR_1", "¸½ºß¥Á¥ã¥Ã¥È¤Ë»²²Ã¤·¤Æ¤¤¤ë¿Í¿ô¡§"); ! define("L_CUR_2", ""); ! define("L_CUR_3", "¥æ¡¼¥¶¡¼¤Ï¡¢¥Á¥ã¥Ã¥È¥ë¡¼¥à¤Ë¤¤¤Þ¤¹¡£"); ! define("L_CUR_4", "¥æ¡¼¥¶¡¼¤Ï¡¢¥×¥é¥¤¥Ù¡¼¥È¥ë¡¼¥à¤Ë¤¤¤Þ¤¹¡£"); define("L_SET_1", "¥æ¡¼¥¶¡¼ÀßÄê"); *************** *** 27,31 **** define("L_SET_4", "¼«Æ°¹¹¿·»þ´Ö"); define("L_SET_5", "Éô²°ÁªÂò"); ! define("L_SET_6", "¾ïÃó¤ÎÉô²°"); define("L_SET_7", "Éô²°¤òÁªÂò¤·¤Æ²¼¤µ¤¤"); define("L_SET_8", "¥æ¡¼¥¶¡¼¤¬ºî¤Ã¤¿Éô²°"); --- 26,30 ---- define("L_SET_4", "¼«Æ°¹¹¿·»þ´Ö"); define("L_SET_5", "Éô²°ÁªÂò"); ! define("L_SET_6", "¸ø¶¦¤ÎÉô²°"); define("L_SET_7", "Éô²°¤òÁªÂò¤·¤Æ²¼¤µ¤¤"); define("L_SET_8", "¥æ¡¼¥¶¡¼¤¬ºî¤Ã¤¿Éô²°"); *************** *** 37,220 **** define("L_SET_14", "»²²Ã"); ! define("L_SRC", "is freely available on"); ! define("L_SECS", "seconds"); ! define("L_MIN", "minute"); ! define("L_MINS", "minutes"); // registration stuff: ! define("L_REG_1", "your password"); ! define("L_REG_1r", "(only if you are registered)"); ! define("L_REG_2", "Account management"); ! define("L_REG_3", "Register"); ! define("L_REG_4", "Edit your profile"); ! define("L_REG_5", "Delete user"); ! define("L_REG_6", "User registration"); ! define("L_REG_7", "your password"); ! define("L_REG_8", "your e-mail"); ! define("L_REG_9", "You have successfully registered."); ! define("L_REG_10", "Back"); ! define("L_REG_11", "Editing"); ! define("L_REG_12", "Modifying user's informations"); ! define("L_REG_13", "Deleting user"); ! define("L_REG_14", "Login"); ! define("L_REG_15", "Log In"); ! define("L_REG_16", "Change"); ! define("L_REG_17", "Your informations were successfully updated."); ! define("L_REG_18", "You have been kicked away from the room by a moderator."); ! define("L_REG_19", "Do you really want to be removed ?"); ! define("L_REG_20", "Yes"); ! define("L_REG_21", "You have been successfully removed."); ! define("L_REG_22", "No"); ! define("L_REG_25", "Close"); ! define("L_REG_30", "firstname"); ! define("L_REG_31", "lastname"); ! define("L_REG_32", "WEB"); ! define("L_REG_33", "show e-mail in public information"); ! define("L_REG_34", "Editing user profile"); ! define("L_REG_35", "Administration"); ! define("L_REG_36", "spoken languages"); ! define("L_REG_37", "Fields with a <span class=\"error\">*</span> must be completed."); ! define("L_REG_39", "The room you were in have been removed by the administrator."); ! define("L_REG_45", "gender"); ! define("L_REG_46", "male"); ! define("L_REG_47", "Female"); // e-mail validation stuff ! define("L_EMAIL_VAL_1", "Your settings to enter the chat"); ! define("L_EMAIL_VAL_2", "Welcome to our chat server."); ! define("L_EMAIL_VAL_Err", "Internal error, please contact the administrator: <a href=\"mailto:%s\">%s</a>."); ! define("L_EMAIL_VAL_Done", "Your password has been sent to your e-mail address."); // admin stuff ! define("L_ADM_1", "%s is no more moderator for this room."); ! define("L_ADM_2", "You're no more a registered user."); //error messages define("L_ERR_USR_1", "¤½¤Î̾Á°¡Ê¥Ï¥ó¥É¥ë̾¡Ë¤Ï¤¹¤Ç¤Ë狼¤¬»È¤Ã¤Æ¤¤¤Þ¤¹"); define("L_ERR_USR_2", "̾Á°¡Ê¥Ï¥ó¥É¥ë̾¡Ë¤òµÆþ¤·¤Æ²¼¤µ¤¤"); ! define("L_ERR_USR_3", "This username is registered. Please type your password or chose another username."); ! define("L_ERR_USR_4", "You typed a wrong password."); ! define("L_ERR_USR_5", "You must type your username."); ! define("L_ERR_USR_6", "You must type your password."); ! define("L_ERR_USR_7", "You must type your e-mail."); ! define("L_ERR_USR_8", "You must type a correct e-mail address."); ! define("L_ERR_USR_9", "This username is already in use."); ! define("L_ERR_USR_10", "Wrong username or password."); ! define("L_ERR_USR_11", "You must be administrator."); ! define("L_ERR_USR_12", "You are administrator, so you cannot be removed."); ! define("L_ERR_USR_13", "To create your own room you must be registered."); ! define("L_ERR_USR_14", "You must be registered before chating."); ! define("L_ERR_USR_15", "You must type your full name."); ! define("L_ERR_USR_16", "Username cannot contain space, comma or backslash (\\)."); ! define("L_ERR_USR_17", "This room doesn't exist and you are not allowed to create one."); ! define("L_ERR_USR_18", "Banned word found in your username."); ! define("L_ERR_USR_19", "You cannot be in more than one room at the same time."); ! define("L_ERR_USR_20", "You have been banished from this room or from the chat."); ! define("L_ERR_ROM_1", "Room's name cannot contain comma or backslash (\\)."); ! define("L_ERR_ROM_2", "Banned word found in the room's name you want to create."); ! define("L_ERR_ROM_3", "This room already exist as a public one."); ! define("L_ERR_ROM_4", "Invalid room name."); // users frame or popup define("L_EXIT", "Âà½Ð"); ! define("L_DETACH", "Detach"); ! define("L_EXPCOL_ALL", "Expand/Collapse All"); ! define("L_CONN_STATE", "Connection state"); ! define("L_CHAT", "Chat"); ! define("L_USER", "user"); ! define("L_USERS", "users"); ! define("L_NO_USER", "No user"); ! define("L_ROOM", "room"); ! define("L_ROOMS", "rooms"); ! define("L_EXPCOL", "Expand/Collapse room"); ! define("L_BEEP", "Beep/no beep at user entrance"); ! define("L_PROFILE", "Display profile"); // input frame ! define("L_HLP", "Help"); ! define("L_BAD_CMD", "This is not a valid command !"); ! define("L_ADMIN", "%s is already administrator!"); ! define("L_IS_MODERATOR", "%s is already moderator!"); ! define("L_NO_MODERATOR", "Only the moderator of this room can use this command."); ! define("L_MODERATOR", "%s is now moderator for this room."); ! define("L_NONEXIST_USER", "User %s isn't in the current room."); ! define("L_NONREG_USER", "User %s isn't registered."); ! define("L_NONREG_USER_IP", "His IP is: %s."); ! define("L_NO_KICKED", "User %s is moderator or administrator and can't be kicked away."); ! define("L_KICKED", "User %s has successfully been kicked away."); ! define("L_NO_BANISHED", "User %s is moderator or administrator and can't be banished."); ! define("L_BANISHED", "User %s has successfully been banished."); ! define("L_SVR_TIME", "Server time: "); ! define("L_NO_SAVE", "No message to save!"); ! define("L_NO_ADMIN", "Only the administrator can use this command."); ! define("L_ANNOUNCE", "ANNOUNCE"); ! define("L_INVITE", "%s suggest you to join her/him into the <a href=\"#\" onClick=\"window.parent.runCmd('%s','%s')\">%s</a> room."); ! define("L_INVITE_REG", " You have to be registered to enter this room."); ! define("L_INVITE_DONE", "Your invitation has been sent to %s."); ! define("L_OK", "Send"); // help popup ! define("L_HELP_TIT_1", "Smilies"); ! define("L_HELP_TIT_2", "Text formating for messages"); ! define("L_HELP_FMT_1", "You can put bolded, italicized or underlined text in messages by encasing the applicable sections of your text with either the <B> </B>, <I> </I> or <U> </U> tags.<BR>For example, <B>this text</B> will produce <B>this text</B>."); ! define("L_HELP_FMT_2", "To create a hyperlink (for e-mail or URL) in your message, simply type the corresponding address without any tag. The hyperlink will be created automatically."); ! define("L_HELP_TIT_3", "Commands"); ! define("L_HELP_USR", "user"); ! define("L_HELP_MSG", "message"); ! define("L_HELP_ROOM", "room"); ! define("L_HELP_CMD_0", "{} represents a required setting, [] an optional one."); ! define("L_HELP_CMD_1a", "Set number of messages to show, minimum and default are 5."); ! define("L_HELP_CMD_1b", "Reload the message frame and display the n latest messages, minimum and default are 5."); ! define("L_HELP_CMD_2a", "Modify messages list refresh delay (in seconds).<BR>If n is not specified or less than 3, toggles between no refresh and 10s refresh."); ! define("L_HELP_CMD_2b", "Modify messages and users lists refresh delay (in seconds).<BR>If n is not specified or less than 3, toggles between no refresh and 10s refresh."); ! define("L_HELP_CMD_3", "Inverts messages order."); ! define("L_HELP_CMD_4", "Join another room, creating it if it doesn't exist and if you're allowed to.<BR>n equals 0 for private and 1 for public, default to 1 if not specified."); ! define("L_HELP_CMD_5", "Leave the chat after displaying an optionnal message."); ! define("L_HELP_CMD_6", "Avoid diplaying messages from an user if nick is specified.<BR>Set ignoring off for an user when nick and - are both specified, for all users when - is but not nick.<BR>With no option, this command pops up a window that shows all ignored nicks."); ! define("L_HELP_CMD_7", "Recall the previous text typed (command or message)."); ! define("L_HELP_CMD_8", "Show/Hide time before messages."); ! define("L_HELP_CMD_9", "Kick away user from the chat. This command can only be used by a moderator."); ! define("L_HELP_CMD_10", "Send a private message to the specified user (other users won't see it)."); ! define("L_HELP_CMD_11", "Show informations about specified user."); ! define("L_HELP_CMD_12", "Popup window for editing user's profile."); ! define("L_HELP_CMD_13", "Toggles notifications of user entrance/exit for the current room."); ! define("L_HELP_CMD_14", "Allow the administrator or moderator(s) of the curent room to promote another registered user to moderator for the same room."); ! define("L_HELP_CMD_15", "Clear the message frame and show only the last 5 messages."); ! define("L_HELP_CMD_16", "Save the last n messages (notifications ones excluded) to an HTML file. If n is not specified, all available messages will be taken into account."); ! define("L_HELP_CMD_17", "Allow the administrator to send an announce to all users whatever the room they are chatting into."); ! define("L_HELP_CMD_18", "Suggest an user chatting in an other room to join the one you are into."); ! define("L_HELP_CMD_19", "Allow the moderator(s) of a room or the administrator to \"banish\" an user from the room for a time defined by the administrator.<BR>The later can banish an user chatting in an other room than the one he is into and use the '<B> * </B>' setting to banish \"for ever\" an user from the chat as the whole."); ! define("L_HELP_CMD_20", "Describe what you're doing without refer yourself."); // messages frame ! define("L_NO_MSG", "There is currently no message ..."); ! define("L_TODAY_DWN", "The messages that have been sent today start below"); ! define("L_TODAY_UP", "The messages that have been sent today start above"); // message colors ! $TextColors = array( "Black" => "#000000", ! "Red" => "#FF0000", ! "Green" => "#009900", ! "Blue" => "#0000FF", ! "Purple" => "#9900FF", ! "Dark red" => "#990000", ! "Dark green" => "#006600", ! "Dark blue" => "#000099", ! "Maroon" => "#996633", ! "Aqua blue" => "#006699", ! "Carrot" => "#FF6600"); // ignored popup ! define("L_IGNOR_TIT", "Ignored"); ! define("L_IGNOR_NON", "No ignored user"); // whois popup ! define("L_WHOIS_ADMIN", "Administrator"); ! define("L_WHOIS_MODER", "Moderator"); ! define("L_WHOIS_USER", "User"); // Notification messages of user entrance/exit ! define("L_ENTER_ROM", "%s enters this room"); ! define("L_EXIT_ROM", "%s exit this room"); ?> --- 36,220 ---- define("L_SET_14", "»²²Ã"); ! define("L_SRC", "¤Ï¡¢ÌµÎÁ¤Ç¤¹¡£"); ! define("L_SECS", "ÉÃ"); ! define("L_MIN", "ʬ"); ! define("L_MINS", "ʬ"); // registration stuff: ! define("L_REG_1", "¥Ñ¥¹¥ï¡¼¥É"); ! define("L_REG_1r", "(ÅÐÏ¿¤òºÑ¤Þ¤»¤¿¿Í¤À¤±¤Ç¤¹)"); ! define("L_REG_2", "¥¢¥«¥¦¥ó¥ÈÊÔ½¸"); ! define("L_REG_3", "ÅÐÏ¿¤¹¤ë"); ! define("L_REG_4", "¥×¥í¥Õ¥£¡¼¥ë¤òÊѹ¹¤¹¤ë"); ! define("L_REG_5", "¥æ¡¼¥¶¡¼ºï½ü"); ! define("L_REG_6", "¥æ¡¼¥¶¡¼ÅÐÏ¿"); ! define("L_REG_7", "¥Ñ¥¹¥ï¡¼¥É"); ! define("L_REG_8", "¥á¡¼¥ë¥¢¥É¥ì¥¹"); ! define("L_REG_9", "ÅÐÏ¿¤¬´°Î»¤·¤Þ¤·¤¿"); ! define("L_REG_10", "Ìá¤ë"); ! define("L_REG_11", "ÊÔ½¸¤·¤Æ¤¤¤Þ¤¹"); ! define("L_REG_12", "¥æ¡¼¥¶¡¼¤Î¾ðÊó¤òÊѹ¹¤·¤Æ¤¤¤Þ¤¹"); ! define("L_REG_13", "¥æ¡¼¥¶¡¼¤òºï½ü¤·¤Æ¤¤¤Þ¤¹"); ! define("L_REG_14", "¥í¥°¥¤¥ó"); ! define("L_REG_15", "¥í¥°¥¤¥ó"); ! define("L_REG_16", "Êѹ¹"); ! define("L_REG_17", "¥æ¡¼¥¶¡¼¾ðÊó¤ÎÊѹ¹¤¬¹¹¿·¤µ¤ì¤Þ¤·¤¿"); ! define("L_REG_18", "¤¢¤Ê¤¿¤Ï¡¢¥â¥Ç¥ì¡¼¥¿¤«¤éÄɤ¤½Ð¤µ¤ì¤Þ¤·¤¿"); ! define("L_REG_19", "ËÜÅö¤Ëºï½ü¤·¤Æ¤â¤¤¤¤¤Ç¤¹¤«¡©"); ! define("L_REG_20", "¤Ï¤¤"); ! define("L_REG_21", "¥æ¡¼¥¶¡¼¤Îºï½ü¤ËÀ®¸ù¤·¤Þ¤·¤¿"); ! define("L_REG_22", "¤¤¤¤¤¨"); ! define("L_REG_25", "ÊĤ¸¤ë"); ! define("L_REG_30", "̾"); ! define("L_REG_31", "À«"); ! define("L_REG_32", "HP"); ! define("L_REG_33", "¥á¡¼¥ë¥¢¥É¥ì¥¹¤ò¸ø³«¤¹¤ë"); ! define("L_REG_34", "¥æ¡¼¥¶¡¼¾ðÊó¤òÊѹ¹Ã桦¡¦¡¦"); ! define("L_REG_35", "´ÉÍý¥â¡¼¥É"); ! define("L_REG_36", "»ÈÍѸÀ¸ì"); ! define("L_REG_37", "<span class=\"error\">*</span>¤Î¹àÌܤÏɬ¤ºÆþÎϤ·¤Æ¤¯¤À¤µ¤¤"); ! define("L_REG_39", "¤¢¤Ê¤¿¤¬¤¤¤¿Éô²°¤Ï´ÉÍý¼Ô¤Ë¤è¤êºï½ü¤µ¤ì¤Þ¤·¤¿"); ! define("L_REG_45", "ÀÊÌ"); ! define("L_REG_46", "ÃË"); ! define("L_REG_47", "½÷"); // e-mail validation stuff ! define("L_EMAIL_VAL_1", "¥Á¥ã¥Ã¥È¤ËÆþ¤ë¤¿¤á¤ÎÀßÄê"); ! define("L_EMAIL_VAL_2", "¥Á¥ã¥Ã¥È¤Ë¤è¤¦¤³¤½¡ª"); ! define("L_EMAIL_VAL_Err", "Internal error ¤Ç¤¹¡£ ´ÉÍý¼Ô(<a href=\"mailto:%s\">%s</a>)¤ËÏ¢Íí¤·¤Æ¤¯¤À¤µ¤¤"); ! define("L_EMAIL_VAL_Done", "¥Ñ¥¹¥ï¡¼¥É¤Ï¡¢µ®Êý¤Î¥á¡¼¥ë¥¢¥É¥ì¥¹¤ËÁ÷¿®¤µ¤ì¤Þ¤·¤¿"); // admin stuff ! define("L_ADM_1", "%s ¤Ï¡¢¤â¤¦¥â¥Ç¥ì¡¼¥¿¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"); ! define("L_ADM_2", "µ®Êý¤Ï¡¢¤â¤¦¥Á¥ã¥Ã¥ÈÅÐÏ¿¼Ô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"); //error messages define("L_ERR_USR_1", "¤½¤Î̾Á°¡Ê¥Ï¥ó¥É¥ë̾¡Ë¤Ï¤¹¤Ç¤Ë狼¤¬»È¤Ã¤Æ¤¤¤Þ¤¹"); define("L_ERR_USR_2", "̾Á°¡Ê¥Ï¥ó¥É¥ë̾¡Ë¤òµÆþ¤·¤Æ²¼¤µ¤¤"); ! define("L_ERR_USR_3", "»ØÄꤵ¤ì¤¿¥æ¡¼¥¶¡¼Ì¾¤Ï´û¤ËÅÐÏ¿¤µ¤ì¤Æ¤¤¤Þ¤¹¡£Ê̤Υ桼¥¶¡¼Ì¾¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£"); ! define("L_ERR_USR_4", "¥Ñ¥¹¥ï¡¼¥É¥¨¥é¡¼"); ! define("L_ERR_USR_5", "¥æ¡¼¥¶¡¼Ì¾¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤"); ! define("L_ERR_USR_6", "¥Ñ¥¹¥ï¡¼¥É¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤"); ! define("L_ERR_USR_7", "¥á¡¼¥ë¥¢¥É¥ì¥¹¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤"); ! define("L_ERR_USR_8", "¥á¡¼¥ë¥¢¥É¥ì¥¹¤Î·Á¼°¤¬°ìÃפ·¤Þ¤»¤ó¡£³Îǧ¤·¤Æ¤¯¤À¤µ¤¤¡£"); ! define("L_ERR_USR_9", "¤³¤Î¥æ¡¼¥¶¡¼Ì¾¤Ï´û¤ËÅÐÏ¿¤µ¤ì¤Æ¤¤¤Þ¤¹"); ! define("L_ERR_USR_10", "¥æ¡¼¥¶¡¼Ì¾¤È¥Ñ¥¹¥ï¡¼¥É¤¬°ìÃפ·¤Þ¤»¤ó"); ! define("L_ERR_USR_11", "´ÉÍý¼Ô¤Î¸¢¸Â¤¬É¬ÍפǤ¹"); ! define("L_ERR_USR_12", "´ÉÍý¼Ô¤Ïºï½ü¤¹¤ë¤³¤È¤¬½ÐÍè¤Þ¤»¤ó"); ! define("L_ERR_USR_13", "¤¢¤Ê¤¿¤ÎÉô²°¤òºî¤ë¤¿¤á¤Ë¤Ï¡¢ÅÐÏ¿¤·¤Æ¤¤¤Ê¤¤¤È½ÐÍè¤Þ¤»¤ó"); ! define("L_ERR_USR_14", "¥Á¥ã¥Ã¥È¤ò¤¹¤ë¤Ë¤Ï¡¢É¬¤ºÅÐÏ¿¤¬É¬ÍפǤ¹"); ! define("L_ERR_USR_15", "¤¢¤Ê¤¿¤Î̾Á°¤òÀµ³Î¤ËÆþÎϤ·¤Æ¤¯¤À¤µ¤¤"); ! define("L_ERR_USR_16", "¥æ¡¼¥¶¡¼Ì¾¤Ë¤Ï¡¢¥¹¥Ú¡¼¥¹¤ä¥³¥ó¥Þ¡¢¤Þ¤¿¥Ð¥Ã¥¯¥¹¥Ú¡¼¥¹(\\)¤Ï´Þ¤á¤Þ¤»¤ó"); ! define("L_ERR_USR_17", "¤³¤ÎÉô²°¤Ï¸ºß¤·¤Þ¤»¤ó¡£¤Þ¤¿¡¢µ®Êý¤Ë¤ÏÉô²°¤òºî¤ë¸¢¸Â¤¬¤¢¤ê¤Þ¤»¤ó¡£"); ! define("L_ERR_USR_18", "¶Ø»ßÍѸ줬¥æ¡¼¥¶¡¼Ì¾¤Ëȯ¸«¤µ¤ì¤Þ¤·¤¿"); ! define("L_ERR_USR_19", "£²¤Ä¤ÎÉô²°¤ËƱ»þ¤Ëµï¤ë»ö¤Ï½ÐÍè¤Þ¤»¤ó"); ! define("L_ERR_USR_20", "¤¢¤Ê¤¿¤Ï¥Á¥ã¥Ã¥È¤â¤·¤¯¤Ï£±¤Ä¤ÎÉô²°¤è¤êÄÉÊü¤µ¤ì¤Þ¤·¤¿"); ! define("L_ERR_ROM_1", "Éô²°¤Î̾Á°¤Ë¤Ï¥³¥ó¥Þ¤ä¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å (\\)¤Ï´Þ¤á¤Þ¤»¤ó"); ! define("L_ERR_ROM_2", "¶Ø»ßÍѸ줬Éô²°Ì¾¤Ëȯ¸«¤µ¤ì¤Þ¤·¤¿"); ! define("L_ERR_ROM_3", "¤³¤ÎÉô²°¤Î̾Á°¤Ï¡¢¸ø¶¦¤Î¾ì¤Ç¸ø³«¤µ¤ì¤Æ¤¤¤Þ¤¹"); ! define("L_ERR_ROM_4", "̵¸ú¤ÊÉô²°Ì¾¤Ç¤¹"); // users frame or popup define("L_EXIT", "Âà½Ð"); ! define("L_DETACH", "³°¤¹"); ! define("L_EXPCOL_ALL", "Ÿ³«/¼ý½Ì¤·¤Þ¤¹"); ! define("L_CONN_STATE", "Àܳ¾õ¶·"); ! define("L_CHAT", "¥Á¥ã¥Ã¥È"); ! define("L_USER", "¿Í"); ! define("L_USERS", "¿Í"); ! define("L_NO_USER", "£°¿Í"); ! define("L_ROOM", "Éô²°"); ! define("L_ROOMS", "Éô²°"); ! define("L_EXPCOL", "Éô²°¤òŸ³«/¼ý½Ì¤·¤Þ¤¹"); ! define("L_BEEP", "¥æ¡¼¥¶¡¼¤¬¿·¤·¤¯Æþ¤Ã¤¿»þ¤Ë¥Ó¡¼¥×²»¤òÌĤ餹/ÌĤ餵¤Ê¤¤"); ! define("L_PROFILE", "¥×¥í¥Õ¥£¡¼¥ë¤òɽ¼¨¤¹¤ë"); ! define("L_NO_PROFILE", "No profile"); // input frame ! define("L_HLP", "¥Ø¥ë¥×"); ! define("L_BAD_CMD", "͸ú¤Ê¥³¥Þ¥ó¥É̾¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"); ! define("L_ADMIN", "%s ¤Ï´û¤Ë´ÉÍý¼Ô¤Ç¤¹"); ! define("L_IS_MODERATOR", "%s ¤Ï´û¤Ë¥â¥Ç¥ì¡¼¥¿¡¼¤Ç¤¹"); ! define("L_NO_MODERATOR", "¥â¥Ç¥ì¡¼¥¿¡¼¤Î¤ß¤¬¤³¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤǤ¤Þ¤¹"); ! define("L_MODERATOR", "%s ¤Ï¤³¤ÎÉô²°¤Î¥â¥Ç¥ì¡¼¥¿¡¼¤È¤·¤ÆÀßÄꤵ¤ì¤Þ¤·¤¿"); ! define("L_NONEXIST_USER", "%s ¤Ï¡¢¸½ºß»ØÄꤵ¤ì¤¿Éô²°¤Ë¤Ïµï¤Þ¤»¤ó"); ! define("L_NONREG_USER", "%s ¤Ï¡¢ÅÐÏ¿¤µ¤ì¤¿¥æ¡¼¥¶¡¼¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó"); ! define("L_NONREG_USER_IP", "¥æ¡¼¥¶¡¼¤ÎIP¥¢¥É¥ì¥¹¤Ï¡¢ %s ¤Ç¤¹"); ! define("L_NO_KICKED", "¥æ¡¼¥¶¡¼ %s ¤Ï¡¢´ÉÍý¼Ô¤«¥â¥Ç¥ì¡¼¥¿¡¼¤Ç¤¢¤ë¤¿¤á¡¢ÄÉÊü¤Ç¤¤Þ¤»¤ó"); ! define("L_KICKED", "¥æ¡¼¥¶¡¼ %s ¤Ï¡¢ÄÉÊü¤µ¤ì¤Þ¤·¤¿"); ! define("L_NO_BANISHED", "¥æ¡¼¥¶¡¼ %s ¤Ï¡¢´ÉÍý¼Ô¤«¥â¥Ç¥ì¡¼¥¿¡¼¤Ç¤¢¤ë¤¿¤á¡¢ÄÉÊü¤Ç¤¤Þ¤»¤ó"); ! define("L_BANISHED", "¥æ¡¼¥¶¡¼ %s ¤Ï¡¢ÄÉÊü¤µ¤ì¤Þ¤·¤¿"); ! define("L_SVR_TIME", "¥µ¡¼¥Ð¡¼»þ¹ï: "); ! define("L_NO_SAVE", "Êݸ¤¹¤ë¥á¥Ã¥»¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"); ! define("L_NO_ADMIN", "´ÉÍý¼Ô¤Î¤ß¤¬¤³¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤǤ¤Þ¤¹"); ! define("L_ANNOUNCE", "¥¢¥Ê¥¦¥ó¥¹"); ! define("L_INVITE", "%s ¤¬¤¢¤Ê¤¿¤ò <a href=\"#\" onClick=\"window.parent.runCmd('%s','%s')\">%s</a> ¤Ë¾Ò²ð¤·¤Æ¤¤¤Þ¤¹."); ! define("L_INVITE_REG", " ¤³¤ÎÉô²°¤ËÆþ¤ë¤¿¤á¤Ë¤Ï¡¢ÅÐÏ¿¤¬É¬ÍפǤ¹"); ! define("L_INVITE_DONE", "¾·ÂÔʸ¤Ï¡¢%s ¤ËÁ÷¿®¤µ¤ì¤Þ¤·¤¿"); ! define("L_OK", "Á÷¿®"); // help popup ! define("L_HELP_TIT_1", "´é"); ! define("L_HELP_TIT_2", "¥Æ¥¥¹¥È¤òÊÔ½¸¤·¤Æ¤¤¤Þ¤¹¡¦¡¦¡¦"); ! define("L_HELP_FMT_1", "<B> </B>, <I> </I> ¤Þ¤¿¤Ï <U> </U> ¤ò»ÈÍѤ¹¤ë¤³¤È¤Ë¤è¤Ã¤Æ¡¢ÂÀ»ú¡¢¼ÐÂΡ¢²¼Àþ¤Ê¤É¤òʸ»ú¤ËÉÕ¤±¤ë¤³¤È¤â²Äǽ¤Ç¤¹¡£<BR>Î㤨¤Ð¡¢, <B>¥Æ¥¹¥È</B> ¤Ç¤Ï <B>¥Æ¥¹¥È</B> ¤ÎÍͤˤʤê¤Þ¤¹¡£"); ! define("L_HELP_FMT_2", "¥Û¡¼¥à¥Ú¡¼¥¸¥¢¥É¥ì¥¹¤Ë¤Ï¼«Æ°¤Ç¥ê¥ó¥¯¤¬ÉÕ¤¤Þ¤¹(¥¿¥°¤ÏÉÔÍפǤ¹)"); ! define("L_HELP_TIT_3", "¥³¥Þ¥ó¥É"); ! define("L_HELP_USR", "¥æ¡¼¥¶¡¼"); ! define("L_HELP_MSG", "¥á¥Ã¥»¡¼¥¸"); ! define("L_HELP_ROOM", "Éô²°"); ! define("L_HELP_CMD_0", "{} ¤Ïɬ¿Ü¤ÎÀßÄê¡¢[] ¤Ï¥ª¥×¥·¥ç¥ó¤òɽ¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_1a", "ɽ¼¨¤µ¤ì¤ë¹Ô¤òÀßÄꤷ¤Þ¤¹¡£ºÇÄã¤Ï£µ¤Ç¤¹¡£"); ! define("L_HELP_CMD_1b", "¥Õ¥ì¡¼¥à¤ò¹¹¿·¤·¤ÆÉ½¼¨¤¹¤ë¥á¥Ã¥»¡¼¥¸¤Î¿ô¤Ç¤¹¡£ºÇÄã¤Ï£µ¤Ç¤¹¡£"); ! define("L_HELP_CMD_2a", "¥Á¥ã¥Ã¥È¤Î¹¹¿·»þ´Ö¤òÀßÄꤷ¤Þ¤¹¡£<BR>»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¤«¡¢¤Þ¤¿¤Ï£³ÉÃ°ÊÆâ¤ËÀßÄꤵ¤ì¤¿¾ì¹ç¤Ï¡¢£±£°Éôֳ֤ǹ¹¿·¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_2b", "¥æ¡¼¥¶¡¼¤Î¥ê¥¹¥È¤ò¹¹¿·¤¹¤ë»þ´Ö¤òÀßÄꤷ¤Þ¤¹¡£<BR>»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¤«¡¢¤Þ¤¿¤Ï£³ÉÃ°ÊÆâ¤ËÀßÄꤵ¤ì¤¿¾ì¹ç¤Ï¡¢£±£°Éôֳ֤ǹ¹¿·¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_3", "¥á¥Ã¥»¡¼¥¸¤Î¥ê¥¹¥È¤òµÕ¤Ë¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_4", "¾¤ÎÉô²°¤ËÆþ¤ê¤Þ¤¹¡£¤Þ¤¿¡¢Â¸ºß¤·¤Ê¤¤Éô²°Ì¾¤¬»ØÄꤵ¤ì¤¿¾ì¹ç¤Ï¡¢¸¢¸Â¤¬¤¢¤ë¾ì¹ç¤Ë¸Â¤ê¡¢¤½¤ÎÉô²°¤¬ºîÀ®¤µ¤ì¤Þ¤¹¡£<BR>0 ¤Ï¥×¥é¥¤¥Ù¡¼¥È¥Á¥ã¥Ã¥È¤ò¡¢ 1 ¤Ï¸ø¶¦¤Ê¥Á¥ã¥Ã¥È¤ò»Ø¤·¤Þ¤¹¡£(½é´üÀßÄê¤Ï£±¤Ç¤¹¡£)"); ! define("L_HELP_CMD_5", "»ØÄꤵ¤ì¤¿Ê¸¤Î¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤·¤¿¸å¤Ë¡¢¥Á¥ã¥Ã¥È¥ë¡¼¥à¤òµî¤ê¤Þ¤¹¡£"); ! define("L_HELP_CMD_6", "nick ¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¤½¤Î¥æ¡¼¥¶¡¼¤«¤é¤Î¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤·¤Þ¤»¤ó¡£<BR>²ò½ü¤âƱ¤¸ÊýË¡¤Ç¹Ô¤¤¤Þ¤¹¡£ <BR>̵»ë¤ò¤·¤Æ¤¤¤ë¥æ¡¼¥¶¡¼¤Î¥ê¥¹¥È¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£"); ! define("L_HELP_CMD_7", "Á°²óÂǤä¿¥á¥Ã¥»¡¼¥¸¤«¥³¥Þ¥ó¥É¤ò¸Æ¤Ó½Ð¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_8", "¥á¥Ã¥»¡¼¥¸¤ÎÁ°¤Ë»þ´Ö¤òɽ¼¨/±£¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_9", "»ØÄꤵ¤ì¤¿¥æ¡¼¥¶¡¼¤òÄÉÊü¤·¤Þ¤¹¡£¥â¥Ç¥ì¡¼¥¿¡¼¤Î¤ß¤¬¤³¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤǤ¤Þ¤¹¡£"); ! define("L_HELP_CMD_10", "¥×¥é¥¤¥Ù¡¼¥È¥á¥Ã¥»¡¼¥¸¤òÁ÷¿®¤·¤Þ¤¹¡£(¾¤Î¿Í¤Ï¤³¤Î¥á¥Ã¥»¡¼¥¸¤ò¸«¤é¤ì¤Þ¤»¤ó)"); ! define("L_HELP_CMD_11", "»ØÄꤵ¤ì¤¿¥æ¡¼¥¶¤Î¾ðÊó¤òɽ¼¨¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_12", "¥æ¡¼¥¶¡¼¤Î¾ðÊó¤òÊѹ¹¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_13", "Éô²°¤ËÆþ¤Ã¤¿»þ¤Ëɽ¼¨¤µ¤ì¤ë¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_14", "¸½ºß¤Î´ÉÍý¼Ô¤«¥â¥Ç¥ì¡¼¥¿¡¼¤Ë¡¢¤½¤Î¾¤ËÅÐÏ¿¤µ¤ì¤Æ¤¤¤ë¥æ¡¼¥¶¡¼¤ò¥â¥Ç¥ì¡¼¥¿¤Ë¤µ¤»¤ë¤³¤È¤òµö¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_15", "¥á¥Ã¥»¡¼¥¸¤ò¾Ãµî¤·¤Æ¡¢ºÇ¸å¤Î£µ¤Ä¤Î¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_16", "»ØÄꤵ¤ì¤¿Ê¬¤Î¥á¥Ã¥»¡¼¥¸¿ô¤À¤±¤òHTML¤ËÊݸ¤¹¤ë¤³¤È¤¬²Äǽ¤Ç¤¹¡£¤Þ¤¿¡¢»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢Á´¤Æ¤Î¥á¥Ã¥»¡¼¥¸¤òÊݸ¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_17", "´ÉÍý¼Ô¤¬¥¢¥Ê¥¦¥ó¥¹¤ò¤¹¤ë¤³¤È¤òµö¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_18", "¾¤Î¥æ¡¼¥¶¡¼¤òµ®Êý¤¬¤¤¤ë¥Á¥ã¥Ã¥È¤Ë¾·ÂÔ¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_19", "´ÉÍý¼Ô¤«¥â¥Ç¥ì¡¼¥¿¡¼¤Ë»ØÄꤵ¤ì¤¿»þ´Ö¤À¤±¥æ¡¼¥¶¡¼¤òÄÉÊü¤¹¤ë¤³¤È¤òµö¤·¤Þ¤¹¡£"); ! define("L_HELP_CMD_20", "µ®Êý¼«¿®¤ò»²¾È¤»¤º¤Ë¡¢²¿¤ò¤·¤Æ¤¤¤¿¤«ÀâÌÀ¤·¤Þ¤¹¡£"); // messages frame ! define("L_NO_MSG", "¥á¥Ã¥»¡¼¥¸¤Ï¤¢¤ê¤Þ¤»¤ó"); ! define("L_TODAY_DWN", "º£ÆüÏ䵤줿¥á¥Ã¥»¡¼¥¸¤Ï²¼µ¤«¤é»Ï¤Þ¤ê¤Þ¤¹"); ! define("L_TODAY_UP", "º£ÆüÏ䵤줿¥á¥Ã¥»¡¼¥¸¤Ï¾åµ¤«¤é»Ï¤Þ¤ê¤Þ¤¹"); // message colors ! $TextColors = array( "¹õ" => "#000000", ! "ÀÖ" => "#FF0000", ! "ÎÐ" => "#009900", ! "ÀÄ" => "#0000FF", ! "»ç" => "#9900FF", ! "¼ë¿§" => "#990000", ! "¿¼ÎÐ" => "#006600", ! "º°¿§" => "#000099", ! "Ãã" => "#996633", ! "¿å" => "#006699", ! "Üô" => "#FF6600"); // ignored popup ! define("L_IGNOR_TIT", "̵»ë"); ! define("L_IGNOR_NON", "̵»ë¥ê¥¹¥È¤Ë¤Ïï¤âÆþ¤Ã¤Æ¤¤¤Þ¤»¤ó"); // whois popup ! define("L_WHOIS_ADMIN", "´ÉÍý¼Ô"); ! define("L_WHOIS_MODER", "¥â¥Ç¥ì¡¼¥¿¡¼"); ! define("L_WHOIS_USER", "¥æ¡¼¥¶¡¼"); // Notification messages of user entrance/exit ! define("L_ENTER_ROM", "%s ¤¬Æþ¼¼¤·¤Þ¤·¤¿¡£"); ! define("L_EXIT_ROM", "%s ¤¬Â༼¤·¤Þ¤·¤¿¡£"); ?> |
From: Lo?c C. <lo...@us...> - 2001-04-11 21:04:49
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat In directory usw-pr-cvs1:/tmp/cvs-serv13796 Modified Files: usersL.php3 usersH.php3 Log Message: Updates the gender information feature ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat Index: usersL.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/usersL.php3,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** usersL.php3 2001/03/23 18:44:46 1.3 --- usersL.php3 2001/04/11 21:04:46 1.4 *************** *** 65,82 **** //** Display users list for the current room ** ! $DbLink->query("SELECT username, latin1, status FROM ".C_USR_TBL." WHERE room='$R' ORDER BY username"); echo("<B>".htmlspecialchars(stripslashes($R))."</B><SPAN CLASS=\"small\"><BDO dir=\"${textDirection}\"></BDO> (".$DbLink->num_rows().")</SPAN><BR>\n"); ! while(list($User, $Latin1, $status) = $DbLink->next_record()) { // Put an icon when there is a profile for the user if ($status != "u" && $status != "k" && $status != "d" && $status != "b") { - $ImgNum++; $Cmd2Send = ($User == stripslashes($U) ? "'PROFILE',''" : "'WHOIS','".special_char2($User,$Latin1)."'"); ! echo("<A HREF=\"#\" onClick=\"window.parent.runCmd($Cmd2Send); return false;\" CLASS=\"user\" onmouseover=\"document.images['whoisImg$ImgNum'].src = window.parent.imgWhoisOn.src\" onmouseout=\"document.images['whoisImg$ImgNum'].src = window.parent.imgWhoisOff.src\"><IMG NAME=\"whoisImg$ImgNum\" SRC=\"images/whoisOff.gif\" WIDTH=5 HEIGHT=9 BORDER=0 ALT=\"".L_PROFILE."\"></A> "); } else { ! echo("- "); }; if($User != $U) --- 65,115 ---- //** Display users list for the current room ** ! if (C_DB_TYPE == 'mysql') ! { ! $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' ! . 'FROM ' . C_USR_TBL . ' usr LEFT JOIN ' . C_REG_TBL . ' reg ON usr.username = reg.username ' ! . 'WHERE usr.room = \'' . $R . '\' ' ! . 'ORDER BY usr.username'; ! } ! else if (C_DB_TYPE == 'pgsql') ! { ! $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' ! . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' ! . 'WHERE usr.room = \'' . $R . '\' ' ! . 'UNION ' ! . 'SELECT usr.username, usr.latin1, usr.status, NULL ' ! . 'FROM ' . C_USR_TBL . ' usr ' ! . 'WHERE usr.username NOT IN (SELECT reg.username FROM ' . C_REG_TBL . ' reg) AND usr.room = \'' . $R . '\' ' ! . 'ORDER BY usr.username'; ! } ! else ! { ! $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, NULL ' ! . 'FROM ' . C_USR_TBL . ' usr ' ! . 'WHERE usr.room = \'' . $R . '\' ' ! . 'ORDER BY usr.username'; ! } ! ! $DbLink->query($currentRoomQuery); echo("<B>".htmlspecialchars(stripslashes($R))."</B><SPAN CLASS=\"small\"><BDO dir=\"${textDirection}\"></BDO> (".$DbLink->num_rows().")</SPAN><BR>\n"); ! while(list($User, $Latin1, $status, $gender) = $DbLink->next_record()) { // Put an icon when there is a profile for the user + if($gender == 0) + $gender = 'undefined'; + elseif($gender == 1) + $gender = 'boy'; + elseif($gender == 2) + $gender = 'girl'; + else + $gender = 'none'; if ($status != "u" && $status != "k" && $status != "d" && $status != "b") { $Cmd2Send = ($User == stripslashes($U) ? "'PROFILE',''" : "'WHOIS','".special_char2($User,$Latin1)."'"); ! echo('<a href="#" onClick="window.parent.runCmd('.$Cmd2Send.'); return false;" class="user"><img src="images/gender_'.$gender.'.gif" width="14" height="14" border="0" alt="'.L_PROFILE.'"></a> '); } else { ! echo('<img src="images/gender_none.gif" width="14" height="14" border="0" alt="' . L_NO_PROFILE . '"> '); }; if($User != $U) *************** *** 103,122 **** while(list($Other) = $DbLink->next_record()) { ! $OthersUsers->query("SELECT username, latin1, status FROM ".C_USR_TBL." WHERE room = '".addslashes($Other)."' ORDER BY username"); if($OthersUsers->num_rows() > 0) { $notEmptyRooms[$Other] = 1; echo("<A HREF=\"$From?Ver=L&L=$L&U=".urlencode(stripslashes($U))."$AddPwd2Link&R1=".urlencode($Other)."&T=1&D=$D&N=$N&E=".urlencode(stripslashes($R))."&EN=$T\" TARGET=\"_parent\">".htmlspecialchars($Other)."</A><SPAN CLASS=\"small\"><BDO dir=\"${textDirection}\"></BDO> (".$OthersUsers->num_rows().")</SPAN><BR>\n"); ! while(list($OtherUser,$Latin1,$status) = $OthersUsers->next_record()) { // Put an icon when there is a profile for the user if ($status != "u" && $status != "k" && $status != "d" && $status != "b") { ! $ImgNum++; ! echo("<A HREF=\"#\" onClick=\"window.parent.runCmd('WHOIS','".special_char2($OtherUser,$Latin1)."'); return false;\" CLASS=\"user\" onmouseover=\"document.images['whoisImg$ImgNum'].src = window.parent.imgWhoisOn.src\" onmouseout=\"document.images['whoisImg$ImgNum'].src = window.parent.imgWhoisOff.src\"><IMG NAME=\"whoisImg$ImgNum\" SRC=\"images/whoisOff.gif\" WIDTH=5 HEIGHT=9 BORDER=0 ALT=\"".L_PROFILE."\"></A> "); } else { ! echo("- "); }; echo("<A HREF=\"javascript:window.parent.userClick('".special_char2($OtherUser,$Latin1)."',false);\" CLASS=\"user\">".special_char($OtherUser,$Latin1,$status)."</A><BR>\n"); --- 136,188 ---- while(list($Other) = $DbLink->next_record()) { ! if (C_DB_TYPE == 'mysql') ! { ! $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' ! . 'FROM ' . C_USR_TBL . ' usr LEFT JOIN ' . C_REG_TBL . ' reg ON usr.username = reg.username ' ! . 'WHERE usr.room = \'' . addslashes($Other) . '\' ' ! . 'ORDER BY usr.username'; ! } ! else if (C_DB_TYPE == 'pgsql') ! { ! $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' ! . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' ! . 'WHERE usr.room = \'' . addslashes($Other) . '\' ' ! . 'UNION ' ! . 'SELECT usr.username, usr.latin1, usr.status, 0 ' ! . 'FROM ' . C_USR_TBL . ' usr ' ! . 'WHERE usr.username NOT IN (SELECT reg.username FROM ' . C_REG_TBL . ' reg) AND usr.room = \'' . addslashes($Other) . '\' ' ! . 'ORDER BY usr.username'; ! } ! else ! { ! $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, 0 ' ! . 'FROM ' . C_USR_TBL . ' usr ' ! . 'WHERE usr.room = \'' . addslashes($Other) . '\' ' ! . 'ORDER BY usr.username'; ! } ! ! $OthersUsers->query($otherRoomsQuery); if($OthersUsers->num_rows() > 0) { $notEmptyRooms[$Other] = 1; echo("<A HREF=\"$From?Ver=L&L=$L&U=".urlencode(stripslashes($U))."$AddPwd2Link&R1=".urlencode($Other)."&T=1&D=$D&N=$N&E=".urlencode(stripslashes($R))."&EN=$T\" TARGET=\"_parent\">".htmlspecialchars($Other)."</A><SPAN CLASS=\"small\"><BDO dir=\"${textDirection}\"></BDO> (".$OthersUsers->num_rows().")</SPAN><BR>\n"); ! while(list($OtherUser, $Latin1, $status, $gender) = $OthersUsers->next_record()) { // Put an icon when there is a profile for the user + if($gender == 0) + $gender = 'undefined'; + elseif($gender == 1) + $gender = 'boy'; + elseif($gender == 2) + $gender = 'girl'; + else + $gender = 'none'; if ($status != "u" && $status != "k" && $status != "d" && $status != "b") { ! echo('<a href="#" onClick="window.parent.runCmd(\'WHOIS\',\''.special_char2($OtherUser,$Latin1).'\'); return false;" class="user"><img src="images/gender_'.$gender.'.gif" width="14" height="14" border="0" alt="'.L_PROFILE.'"></a> '); } else { ! echo('<img src="images/gender_none.gif" width="14" height="14" border="0" alt="' . L_NO_PROFILE . '"> '); }; echo("<A HREF=\"javascript:window.parent.userClick('".special_char2($OtherUser,$Latin1)."',false);\" CLASS=\"user\">".special_char($OtherUser,$Latin1,$status)."</A><BR>\n"); *************** *** 139,143 **** if (strcasecmp($tmpRoom, stripslashes($R)) != 0 && (!isset($notEmptyRooms) || !isset($notEmptyRooms[$tmpRoom]))) { ! echo("<A HREF=\"$From?Ver=L&L=$L&U=".urlencode(stripslashes($U))."$AddPwd2Link&R0=".urlencode($tmpRoom)."&T=1&D=$D&N=$N&E=".urlencode(stripslashes($R))."&EN=$T\" TARGET=\"_parent\">".htmlspecialchars($Other)."</A><SPAN CLASS=\"small\"><BDO dir=\"${textDirection}\"></BDO> (0)</SPAN><BR>\n"); }; }; --- 205,209 ---- if (strcasecmp($tmpRoom, stripslashes($R)) != 0 && (!isset($notEmptyRooms) || !isset($notEmptyRooms[$tmpRoom]))) { ! echo("<A HREF=\"$From?Ver=L&L=$L&U=".urlencode(stripslashes($U))."$AddPwd2Link&R0=".urlencode($tmpRoom)."&T=1&D=$D&N=$N&E=".urlencode(stripslashes($R))."&EN=$T\" TARGET=\"_parent\">".htmlspecialchars($tmpRoom)."</A><SPAN CLASS=\"small\"><BDO dir=\"${textDirection}\"></BDO> (0)</SPAN><BR>\n"); }; }; Index: usersH.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/usersH.php3,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** usersH.php3 2001/03/29 19:05:29 1.9 --- usersH.php3 2001/04/11 21:04:46 1.10 *************** *** 85,90 **** } - $ImgNum = "0"; - $DbLink = new DB; --- 85,88 ---- *************** *** 132,142 **** if ($status != "u" && $status != "k" && $status != "d" && $status != "b") { - $ImgNum++; $Cmd2Send = ($User == stripslashes($U) ? "'PROFILE',''" : "'WHOIS','".special_char2($User,$Latin1)."'"); ! echo('<a href="#" onClick="window.parent.runCmd('.$Cmd2Send.'); return false;" class="user"><img name="whoisImg'.$ImgNum.'" src="images/gender_'.$gender.'.gif" width="14" height="14" border="0" alt="'.L_PROFILE.'"></a> '); } else { ! echo('<img name="whoisImg'.$ImgNum.'" src="images/gender_none.gif" width="14" height="14" border="0" alt="Pas de profil"> '); } if($User != stripslashes($U)) --- 130,139 ---- if ($status != "u" && $status != "k" && $status != "d" && $status != "b") { $Cmd2Send = ($User == stripslashes($U) ? "'PROFILE',''" : "'WHOIS','".special_char2($User,$Latin1)."'"); ! echo('<a href="#" onClick="window.parent.runCmd('.$Cmd2Send.'); return false;" class="user"><img src="images/gender_'.$gender.'.gif" width="14" height="14" border="0" alt="'.L_PROFILE.'"></a> '); } else { ! echo('<img src="images/gender_none.gif" width="14" height="14" border="0" alt="' . L_NO_PROFILE . '"> '); } if($User != stripslashes($U)) *************** *** 215,224 **** if ($status != "u" && $status != "k" && $status != "d" && $status != "b") { ! $ImgNum++; ! echo('<a href="#" onClick="window.parent.runCmd(\'WHOIS\',\''.special_char2($OtherUser,$Latin1).'\'); return false;" class="user"><img name="whoisImg'.$ImgNum.'" src="images/gender_'.$gender.'.gif" width="14" height="14" border="0" alt="'.L_PROFILE.'"></a> '); } else { ! echo('<img name="whoisImg'.$ImgNum.'" src="images/gender_none.gif" width="14" height="14" border="0" alt="Pas de profil"> '); } echo("<A HREF=\"javascript:window.parent.userClick('".special_char2($OtherUser,$Latin1)."',false);\" CLASS=\"user\">".special_char($OtherUser,$Latin1,$status)."</A><BR>\n"); --- 212,220 ---- if ($status != "u" && $status != "k" && $status != "d" && $status != "b") { ! echo('<a href="#" onClick="window.parent.runCmd(\'WHOIS\',\''.special_char2($OtherUser,$Latin1).'\'); return false;" class="user"><img src="images/gender_'.$gender.'.gif" width="14" height="14" border="0" alt="'.L_PROFILE.'"></a> '); } else { ! echo('<img src="images/gender_none.gif" width="14" height="14" border="0" alt="' . L_NO_PROFILE . '"> '); } echo("<A HREF=\"javascript:window.parent.userClick('".special_char2($OtherUser,$Latin1)."',false);\" CLASS=\"user\">".special_char($OtherUser,$Latin1,$status)."</A><BR>\n"); |
From: Lo?c C. <lo...@us...> - 2001-04-10 21:25:58
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands In directory usw-pr-cvs1:/tmp/cvs-serv745/chat/lib/commands Modified Files: banish.cmd.php3 Log Message: Remove some trailing whitespaces Index: banish.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/banish.cmd.php3,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** banish.cmd.php3 2001/04/10 09:38:14 1.3 --- banish.cmd.php3 2001/04/10 21:25:55 1.4 *************** *** 25,29 **** /** * Check for invalid characters in the target user name ! */ if (ereg('[\, ]', $cmd[2])) { --- 25,29 ---- /** * Check for invalid characters in the target user name ! */ if (ereg('[\, ]', $cmd[2])) { |
From: Lo?c C. <lo...@us...> - 2001-04-10 21:24:39
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv410/chat Modified Files: input.php3 handle_input.php3 Log Message: Remove some reminders for the 'ignore' command Index: input.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/input.php3,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** input.php3 2001/04/10 18:03:29 1.11 --- input.php3 2001/04/10 21:24:34 1.12 *************** *** 369,374 **** if ($doRefreshMessages) { - // done in $dbSessionVars - // $tmp = (isset($ign)) ? "&Ign=".urlencode(stripslashes($Ign)) : ""; ?> <script type="text/javascript" language="javascript"> --- 369,372 ---- Index: handle_input.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/handle_input.php3,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** handle_input.php3 2001/04/10 16:58:34 1.9 --- handle_input.php3 2001/04/10 21:24:34 1.10 *************** *** 223,228 **** if ($doRefreshMessages) { - // done in $dbSessionVars - // $tmp = (isset($ign)) ? "&Ign=".urlencode(stripslashes($Ign)) : ""; ?> // Refresh the messages frame if necessary --- 223,226 ---- |
From: Lo?c C. <lo...@us...> - 2001-04-10 19:27:41
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv10721/chat/lib/index_libs Modified Files: do_enter_db_work.lib.php3 Log Message: Fix a bug when getting some session data (notify, message order...) Index: do_enter_db_work.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/do_enter_db_work.lib.php3,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** do_enter_db_work.lib.php3 2001/04/10 15:00:06 1.4 --- do_enter_db_work.lib.php3 2001/04/10 19:21:27 1.5 *************** *** 60,64 **** else if (isset($cookieMsgOrder)) $msgOrder = $cookieMsgOrder; ! if (empty($msgOrder)) $msgOrder = C_MSG_ORDER; --- 60,64 ---- else if (isset($cookieMsgOrder)) $msgOrder = $cookieMsgOrder; ! if (!isset($msgOrder)) $msgOrder = C_MSG_ORDER; *************** *** 67,71 **** else if (isset($cookieShowTimestamp)) $showTimestamp = $cookieShowTimestamp; ! if (empty($msgOrder)) $showTimestamp = C_SHOW_TIMESTAMP; --- 67,71 ---- else if (isset($cookieShowTimestamp)) $showTimestamp = $cookieShowTimestamp; ! if (!isset($showTimestamp)) $showTimestamp = C_SHOW_TIMESTAMP; *************** *** 74,78 **** else if (isset($cookieNotify)) $notify = $cookieNotify; ! if (empty($msgOrder)) $notify = C_NOTIFY; --- 74,78 ---- else if (isset($cookieNotify)) $notify = $cookieNotify; ! if (!isset($notify)) $notify = C_NOTIFY; |
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands In directory usw-pr-cvs1:/tmp/cvs-serv10854/chat/lib/commands Added Files: timestamp.cmd.php3 show.cmd.php3 refresh.cmd.php3 order.cmd.php3 notify.cmd.php3 clear.cmd.php3 Log Message: Some new running commands --- NEW FILE --- <?php // // +--------------------------------------------------------------------------+ // | phpMyChat version 0.15.0 | // +--------------------------------------------------------------------------+ // | Copyright (c) 2000-2001 The phpHeaven-team | // +--------------------------------------------------------------------------+ // | This library does the work associated to the 'timestamp' command. | // | | // | It is called by the 'commands.lib.php3' script. | // +--------------------------------------------------------------------------+ // | From the phpMyChat project: | // | http://www.phpheaven.net/projects/phpMyChat/ | // | | // | Authors: the phpHeaven-team <php...@ya...> | // +--------------------------------------------------------------------------+ // // $Id: timestamp.cmd.php3,v 1.1 2001/04/10 19:22:21 loic1 Exp $ // // The work for the 'timestamp' command. // /** * Just modify some variables */ $dbSessionVars['showTimestamp'] = 1 - $dbSessionVars['showTimestamp']; // cookie expires in one year setcookie('cookieShowTimestamp', $dbSessionVars['showTimestamp'], time() + 60*60*24*365); $isCommand = true; $enforceFirstLoad = 1; $doRefreshMessages = true; /** * Define a table that contains JavaScript instructions to be ran */ $jsToRun = array( '<script type="text/javascript" language="javascript">', '<!--', '// Show/hide the server time in the status bar' ); if ($dbSessionVars['showTimestamp'] == 1) { $currentDate = mktime(date('H') + C_TMZ_OFFSET, date('i'), date('s'), date('m'), date('d'), date('Y')); $jsToRun[] = 'window.parent.jsClockGap = window.parent.pmcCalcGap(\'' . date('F d, Y H:i:s', $currentDate) . '\');'; $jsToRun[] = 'window.parent.pmcClock();'; } else { $jsToRun[] = 'window.parent.pmcStopClock();'; } $jsToRun[] = '// -->'; $jsToRun[] = '</script>'; ?> --- NEW FILE --- <?php // // +--------------------------------------------------------------------------+ // | phpMyChat version 0.15.0 | // +--------------------------------------------------------------------------+ // | Copyright (c) 2000-2001 The phpHeaven-team | // +--------------------------------------------------------------------------+ // | This library does the work associated to the 'show' command. | // | | // | It is called by the 'commands.lib.php3' script. | // +--------------------------------------------------------------------------+ // | From the phpMyChat project: | // | http://www.phpheaven.net/projects/phpMyChat/ | // | | // | Authors: the phpHeaven-team <php...@ya...> | // +--------------------------------------------------------------------------+ // // $Id: show.cmd.php3,v 1.1 2001/04/10 19:22:21 loic1 Exp $ // // The work for the 'show' command. // /** * Just modify some variables */ $dbSessionVars['msgNumber'] = ($cmd[3] != '') ? max(abs($cmd[3]), 5) : 5; $isCommand = true; $enforceFirstLoad = 1; $doRefreshMessages = true; ?> --- NEW FILE --- <?php // // +--------------------------------------------------------------------------+ // | phpMyChat version 0.15.0 | // +--------------------------------------------------------------------------+ // | Copyright (c) 2000-2001 The phpHeaven-team | // +--------------------------------------------------------------------------+ // | This library does the work associated to the 'refresh' command. | // | | // | It is called by the 'commands.lib.php3' script. | // +--------------------------------------------------------------------------+ // | From the phpMyChat project: | // | http://www.phpheaven.net/projects/phpMyChat/ | // | | // | Authors: the phpHeaven-team <php...@ya...> | // +--------------------------------------------------------------------------+ // // $Id: refresh.cmd.php3,v 1.1 2001/04/10 19:22:21 loic1 Exp $ // // The work for the 'refresh' command. // /** * Just modify some variables */ if ($cmd[2] != '') { $dbSessionVars['refreshDelay'] = ($cmd[2] < 3) ? 0 : $cmd[2]; } else { $dbSessionVars['refreshDelay'] = ($dbSessionVars['refreshDelay'] == 0) ? C_MSG_REFRESH : 0; } $isCommand = true; $doRefreshMessages = true; ?> --- NEW FILE --- <?php // // +--------------------------------------------------------------------------+ // | phpMyChat version 0.15.0 | // +--------------------------------------------------------------------------+ // | Copyright (c) 2000-2001 The phpHeaven-team | // +--------------------------------------------------------------------------+ // | This library does the work associated to the 'order' command. | // | | // | It is called by the 'commands.lib.php3' script. | // +--------------------------------------------------------------------------+ // | From the phpMyChat project: | // | http://www.phpheaven.net/projects/phpMyChat/ | // | | // | Authors: the phpHeaven-team <php...@ya...> | // +--------------------------------------------------------------------------+ // // $Id: order.cmd.php3,v 1.1 2001/04/10 19:22:21 loic1 Exp $ // // The work for the 'order' command. // /** * Just modify some variables */ if ($dbSessionVars['jsVersion'] != 'high') { $dbSessionVars['msgOrder'] = 1 - $dbSessionVars['msgOrder']; // cookie expires in one year setcookie('cookieMsgOrder', $dbSessionVars['msgOrder'], time() + 60*60*24*365); $isCommand = true; $enforceFirstLoad = 1; $doRefreshMessages = true; } ?> --- NEW FILE --- <?php // // +--------------------------------------------------------------------------+ // | phpMyChat version 0.15.0 | // +--------------------------------------------------------------------------+ // | Copyright (c) 2000-2001 The phpHeaven-team | // +--------------------------------------------------------------------------+ // | This library does the work associated to the 'notify' command. | // | | // | It is called by the 'commands.lib.php3' script. | // +--------------------------------------------------------------------------+ // | From the phpMyChat project: | // | http://www.phpheaven.net/projects/phpMyChat/ | // | | // | Authors: the phpHeaven-team <php...@ya...> | // +--------------------------------------------------------------------------+ // // $Id: notify.cmd.php3,v 1.1 2001/04/10 19:22:21 loic1 Exp $ // // The work for the 'notify' command. // /** * Just modify some variables */ $dbSessionVars['notify'] = 1 - $dbSessionVars['notify']; // cookie expires in one year setcookie('cookieNotify', $dbSessionVars['notify'], time() + 60*60*24*365); $isCommand = true; $enforceFirstLoad = 1; $doRefreshMessages = true; ?> --- NEW FILE --- <?php // // +--------------------------------------------------------------------------+ // | phpMyChat version 0.15.0 | // +--------------------------------------------------------------------------+ // | Copyright (c) 2000-2001 The phpHeaven-team | // +--------------------------------------------------------------------------+ // | This library does the work associated to the 'clear' command. | // | | // | It is called by the 'commands.lib.php3' script. | // +--------------------------------------------------------------------------+ // | From the phpMyChat project: | // | http://www.phpheaven.net/projects/phpMyChat/ | // | | // | Authors: the phpHeaven-team <php...@ya...> | // +--------------------------------------------------------------------------+ // // $Id: clear.cmd.php3,v 1.1 2001/04/10 19:22:21 loic1 Exp $ // // The work for the 'clear' command. // /** * Just modify some variables */ if ($dbSessionVars['jsVersion'] == 'high') { $dbSessionVars['msgNumber'] = 5; $isCommand = true; $enforceFirstLoad = 1; $doRefreshMessages = true; } ?> |
From: Lo?c C. <lo...@us...> - 2001-04-10 18:03:32
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv25630/chat Modified Files: input.php3 Log Message: Oups, there was a bug about allowed colors Index: input.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/input.php3,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** input.php3 2001/04/10 16:58:34 1.10 --- input.php3 2001/04/10 18:03:29 1.11 *************** *** 292,297 **** $g = ceil(126 * (cos(deg2rad($x + 240)) + 1)); $b = ceil(126 * (cos(deg2rad($x + 120)) + 1)); ! if (!($r > 128 && $g < 128 && $b < 128 && !(isset($status) ! && ($dbSessionVars['status'] == 'a' || $dbSessionVars['status'] == 'm')))) { $textColors[] = '#' --- 292,297 ---- $g = ceil(126 * (cos(deg2rad($x + 240)) + 1)); $b = ceil(126 * (cos(deg2rad($x + 120)) + 1)); ! if (!($r > 128 && $g < 128 && $b < 128 ! && !($dbSessionVars['status'] == 'a' || $dbSessionVars['status'] == 'm'))) { $textColors[] = '#' |
From: Lo?c C. <lo...@us...> - 2001-04-10 17:51:04
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv23121/chat/lib/index_libs Modified Files: index_validation.lib.php3 Log Message: Fix some bad translations ('bad words' to 'swear words') Index: index_validation.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/index_validation.lib.php3,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** index_validation.lib.php3 2001/04/10 15:00:06 1.3 --- index_validation.lib.php3 2001/04/10 17:51:00 1.4 *************** *** 74,78 **** $error1 = L_ERR_USR_16; } ! // Checks for coarse words in the nick else if (C_BAD_WORDS) { --- 74,78 ---- $error1 = L_ERR_USR_16; } ! // Checks for swear words in the nick else if (C_BAD_WORDS) { *************** *** 196,200 **** $error2 = L_ERR_ROM_1; } ! // Checks for coarse words in the room name else if (C_BAD_WORDS && checkWords($createRoomName, true)) { --- 196,200 ---- $error2 = L_ERR_ROM_1; } ! // Checks for swear words in the room name else if (C_BAD_WORDS && checkWords($createRoomName, true)) { |
From: Lo?c C. <lo...@us...> - 2001-04-10 17:51:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/config In directory usw-pr-cvs1:/tmp/cvs-serv23121/chat/config Modified Files: config.lib.php3 Log Message: Fix some bad translations ('bad words' to 'swear words') Index: config.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/config/config.lib.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** config.lib.php3 2001/04/03 20:10:15 1.2 --- config.lib.php3 2001/04/10 17:51:00 1.3 *************** *** 79,83 **** // if you want all moderators (and not only yourself) to banish users // forever, set C_BANISH to 2000000 (six zero) ! define('C_BAD_WORDS', 0); // Check for bad words defined in chat/lib/swearing.lib.php3 file ? // 0 = no, 1 = yes define('C_SAVE', '*'); // Max number of message that an user may export with the /save command --- 79,83 ---- // if you want all moderators (and not only yourself) to banish users // forever, set C_BANISH to 2000000 (six zero) ! define('C_BAD_WORDS', 0); // Check for swear words defined in chat/lib/swearing.lib.php3 file ? // 0 = no, 1 = yes define('C_SAVE', '*'); // Max number of message that an user may export with the /save command |
From: Lo?c C. <lo...@us...> - 2001-04-10 17:51:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib In directory usw-pr-cvs1:/tmp/cvs-serv23121/chat/lib Modified Files: swearing.lib.php3 Log Message: Fix some bad translations ('bad words' to 'swear words') Index: swearing.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/swearing.lib.php3,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** swearing.lib.php3 2001/04/10 15:00:05 1.3 --- swearing.lib.php3 2001/04/10 17:51:00 1.4 *************** *** 6,10 **** // | Copyright (c) 2000-2001 The phpHeaven-team | // +--------------------------------------------------------------------------+ ! // | This library allows to check for 'coarse words'. Users cannot login or | // | create a room with such words, in messages they are replaced by the | // | '@#$*!' string or the one you choose. | --- 6,10 ---- // | Copyright (c) 2000-2001 The phpHeaven-team | // +--------------------------------------------------------------------------+ ! // | This library allows to check for 'swear words'. Users cannot login or | // | create a room with such words, in messages they are replaced by the | // | '@#$*!' string or the one you choose. | |
From: Lo?c C. <lo...@us...> - 2001-04-10 17:51:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/bosnian In directory usw-pr-cvs1:/tmp/cvs-serv23121/chat/localization/bosnian Modified Files: tutorial.loc Log Message: Fix some bad translations ('bad words' to 'swear words') Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/bosnian/tutorial.loc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** tutorial.loc 2001/04/10 16:58:35 1.1 --- tutorial.loc 2001/04/10 17:50:59 1.2 *************** *** 244,251 **** <!-- To Update <li>Prvo kreirajte korisnicko ime i sifru za sebe , unesite to u odgovarajuce polje. Korisnicko ime koje ste izabrali je ime koje ce se automatski prikazati u chat sobi.Ima ne moze sadrzavati medju prostor, zarez ili kose crte (\). ! <?php if (C_BAD_WORDS == 1) echo(' Ime ne moze sadrzavati "ruzne rijeci - coarse words".' . "\n"); ?> --> <li>First, create a username<?php if (!C_EMAIL_PASWD) echo(' and a password'); ?> for yourself by typing it into the appropriate boxes. The username you choose is the name that will be automatically displayed in the chat room. It cannot contain space, comma or backslash (\). ! <?php if (C_BAD_WORDS == 1) echo(' It can no more contains \'coarse words\'.'); ?></li> <li>Drugo , molimo unesite vase ime, prezime i vasu email adresu. Da biste se mogli registrovati za chat , sve ove informacije moraju biti dostupne. You can skip gender selection.</li> <li>Ako imate svoju web stranicu ,mozete unijeti URL takodjer.</li> --- 244,251 ---- <!-- To Update <li>Prvo kreirajte korisnicko ime i sifru za sebe , unesite to u odgovarajuce polje. Korisnicko ime koje ste izabrali je ime koje ce se automatski prikazati u chat sobi.Ima ne moze sadrzavati medju prostor, zarez ili kose crte (\). ! <?php if (C_BAD_WORDS == 1) echo(' Ime ne moze sadrzavati "ruzne rijeci - swear words".' . "\n"); ?> --> <li>First, create a username<?php if (!C_EMAIL_PASWD) echo(' and a password'); ?> for yourself by typing it into the appropriate boxes. The username you choose is the name that will be automatically displayed in the chat room. It cannot contain space, comma or backslash (\). ! <?php if (C_BAD_WORDS == 1) echo(' It can no more contains \'swear words\'.'); ?></li> <li>Drugo , molimo unesite vase ime, prezime i vasu email adresu. Da biste se mogli registrovati za chat , sve ove informacije moraju biti dostupne. You can skip gender selection.</li> <li>Ako imate svoju web stranicu ,mozete unijeti URL takodjer.</li> *************** *** 271,275 **** </p> <p> ! Ime sobe ne moze sadrzavati zarez ili kosu crtu (\).<?php if (C_BAD_WORDS == 1) echo(' It can no more contains "coarse words".' . "\n"); ?> </p> <p align="right"><a href="#top">Povratak na vrh</a></p> --- 271,275 ---- </p> <p> ! Ime sobe ne moze sadrzavati zarez ili kosu crtu (\).<?php if (C_BAD_WORDS == 1) echo(' It can no more contains "swear words".' . "\n"); ?> </p> <p align="right"><a href="#top">Povratak na vrh</a></p> *************** *** 308,312 **** <p> Da bi poslali poruku u chat sobu, napisite tekst u polje za pisanje koje se nalazi u donjem lijevom uglu i onda kliknite na Enter/Return da je posaljete. Poruke od svih korisnika biti ce izlistane u chat box.<br /> ! <?php if (C_BAD_WORDS == 1) echo('Note that \'coarse words\' are skipped from messages.' . "\n"); ?> </p> <p> --- 308,312 ---- <p> Da bi poslali poruku u chat sobu, napisite tekst u polje za pisanje koje se nalazi u donjem lijevom uglu i onda kliknite na Enter/Return da je posaljete. Poruke od svih korisnika biti ce izlistane u chat box.<br /> ! <?php if (C_BAD_WORDS == 1) echo('Note that \'swear words\' are skipped from messages.' . "\n"); ?> </p> <p> |
From: Lo?c C. <lo...@us...> - 2001-04-10 17:51:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/english In directory usw-pr-cvs1:/tmp/cvs-serv23121/chat/localization/english Modified Files: tutorial.loc Log Message: Fix some bad translations ('bad words' to 'swear words') Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/english/tutorial.loc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** tutorial.loc 2001/04/10 16:58:54 1.1 --- tutorial.loc 2001/04/10 17:51:00 1.2 *************** *** 250,254 **** </p> <ul> ! <li>First, create a username<?php if (!C_EMAIL_PASWD) echo(' and a password'); ?> for yourself by typing it into the appropriate boxes. The username you choose is the name that will be automatically displayed in the chat room. It cannot contain spaces, commas or backslashes (\).<?php if (C_BAD_WORDS == 1) echo(' It can not contain \'coarse words\'.'); ?></li> <li>Second, please enter your first name, last name, and your email address. In order to register to chat, all of this information must be provided. The gender information is optional.</li> <li>If you have a homepage, you may enter the URL into the box.</li> --- 250,254 ---- </p> <ul> ! <li>First, create a username<?php if (!C_EMAIL_PASWD) echo(' and a password'); ?> for yourself by typing it into the appropriate boxes. The username you choose is the name that will be automatically displayed in the chat room. It cannot contain spaces, commas or backslashes (\).<?php if (C_BAD_WORDS == 1) echo(' It can not contain \'swear words\'.'); ?></li> <li>Second, please enter your first name, last name, and your email address. In order to register to chat, all of this information must be provided. The gender information is optional.</li> <li>If you have a homepage, you may enter the URL into the box.</li> *************** *** 274,278 **** </p> <p> ! Room's name cannot contain comma or backslash (\).<?php if (C_BAD_WORDS == 1) echo(' It can no more contains \'coarse words\'.' . "\n"); ?> </p> <p align="right"><a href="#top">Back to the top</a></p> --- 274,278 ---- </p> <p> ! Room's name cannot contain comma or backslash (\).<?php if (C_BAD_WORDS == 1) echo(' It can no more contains \'swear words\'.' . "\n"); ?> </p> <p align="right"><a href="#top">Back to the top</a></p> *************** *** 311,315 **** <p> To post a message to the chat room, type your text into the text box in the lower left corner and then press the Enter/Return key to send it. Messages from all users scroll in the chat box.<br /> ! <?php if (C_BAD_WORDS == 1) echo('Note that \'coarse words\' are skipped from messages.' . "\n"); ?> </p> <p> --- 311,315 ---- <p> To post a message to the chat room, type your text into the text box in the lower left corner and then press the Enter/Return key to send it. Messages from all users scroll in the chat box.<br /> ! <?php if (C_BAD_WORDS == 1) echo('Note that \'swear words\' are skipped from messages.' . "\n"); ?> </p> <p> *************** *** 587,591 **** </p> <p> ! Room's name cannot contain comma or backslash (\).<?php if (C_BAD_WORDS == 1) echo(' It can no more contains \'coarse words\'.' . "\n"); ?> </p> <?php --- 587,591 ---- </p> <p> ! Room's name cannot contain comma or backslash (\).<?php if (C_BAD_WORDS == 1) echo(' It can no more contains \'swear words\'.' . "\n"); ?> </p> <?php |
From: Lo?c C. <lo...@us...> - 2001-04-10 17:51:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/korean In directory usw-pr-cvs1:/tmp/cvs-serv23121/chat/localization/korean Modified Files: tutorial.loc Log Message: Fix some bad translations ('bad words' to 'swear words') Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/korean/tutorial.loc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** tutorial.loc 2001/04/10 16:58:55 1.1 --- tutorial.loc 2001/04/10 17:51:00 1.2 *************** *** 243,247 **** <ul> <li>¸ÕÀú, »ç¿ëÀÚ À̸§<?php if (!C_EMAIL_PASWD) echo('°ú ºñ¹Ð¹øÈ£¸¦'); else echo('À»');?> ÀÔ·ÂÇϽʽÿÀ. »ç¿ëÀÚ À̸§Àº ´ëȹ濡¼ ÀÚµ¿ÀûÀ¸·Î Ç¥½ÃµÇ´Â À̸§ÀÔ´Ï´Ù. °ø¹éÀ̳ª Äĸ¶(,) ±×¸®°í ¿ª½½·¡½¬(\)´Â »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù. ! <?php if (C_BAD_WORDS == 1) echo(' ±×¸®°í "³ª»Û ´Ü¾î(coarse word)"µéÀº »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù..'); ?></li> <li>µÎ¹øÂ°·Î, À̸§°ú email ÁÖ¼Ò¸¦ ÀÔ·ÂÇϽʽÿÀ. ´ëȸ¦ À§ÇÑ µî·ÏÀ» À§Çؼ´Â ¾Õ¼ ¸»ÇÑ °ÍÀº ¸ðµÎ ÀÔ·ÂÇϼžßÇϸç, ¼ºº°À̳ª ȨÆäÀÌÁö´Â ÀÔ·ÂÇÏÁö ¾ÊÀ¸¼Åµµ µË´Ï´Ù.</li> <li>ȨÆäÀÌÁö¸¦ °®°í ÀÖ´Ù¸é URLÀ» ³ÖÀ¸¼Åµµ µË´Ï´Ù.</li> --- 243,247 ---- <ul> <li>¸ÕÀú, »ç¿ëÀÚ À̸§<?php if (!C_EMAIL_PASWD) echo('°ú ºñ¹Ð¹øÈ£¸¦'); else echo('À»');?> ÀÔ·ÂÇϽʽÿÀ. »ç¿ëÀÚ À̸§Àº ´ëȹ濡¼ ÀÚµ¿ÀûÀ¸·Î Ç¥½ÃµÇ´Â À̸§ÀÔ´Ï´Ù. °ø¹éÀ̳ª Äĸ¶(,) ±×¸®°í ¿ª½½·¡½¬(\)´Â »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù. ! <?php if (C_BAD_WORDS == 1) echo(' ±×¸®°í "³ª»Û ´Ü¾î(swear word)"µéÀº »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù..'); ?></li> <li>µÎ¹øÂ°·Î, À̸§°ú email ÁÖ¼Ò¸¦ ÀÔ·ÂÇϽʽÿÀ. ´ëȸ¦ À§ÇÑ µî·ÏÀ» À§Çؼ´Â ¾Õ¼ ¸»ÇÑ °ÍÀº ¸ðµÎ ÀÔ·ÂÇϼžßÇϸç, ¼ºº°À̳ª ȨÆäÀÌÁö´Â ÀÔ·ÂÇÏÁö ¾ÊÀ¸¼Åµµ µË´Ï´Ù.</li> <li>ȨÆäÀÌÁö¸¦ °®°í ÀÖ´Ù¸é URLÀ» ³ÖÀ¸¼Åµµ µË´Ï´Ù.</li> *************** *** 276,280 **** </p> <p> ! ´ëȹæ À̸§¿¡µµ Äĸ¶(,)³ª ¿ª½½·¡½¬(\)¸¦ Æ÷ÇÔÇÒ ¼ö ¾ø½À´Ï´Ù. <?php if (C_BAD_WORDS == 1) echo(' "³ª»Û ´Ü¾î(coarse words)"µµ ¹°·Ð Æ÷ÇÔÇÒ ¼ö ¾ø½À´Ï´Ù.' . "\n"); ?> </p> <p align="right"><a href="#top">¸ÇÀ§·Î</a></p> --- 276,280 ---- </p> <p> ! ´ëȹæ À̸§¿¡µµ Äĸ¶(,)³ª ¿ª½½·¡½¬(\)¸¦ Æ÷ÇÔÇÒ ¼ö ¾ø½À´Ï´Ù. <?php if (C_BAD_WORDS == 1) echo(' "³ª»Û ´Ü¾î(swear words)"µµ ¹°·Ð Æ÷ÇÔÇÒ ¼ö ¾ø½À´Ï´Ù.' . "\n"); ?> </p> <p align="right"><a href="#top">¸ÇÀ§·Î</a></p> *************** *** 313,317 **** <p> ´ëȹ濡¼ ¸Þ¼¼Áö¸¦ ¾²·Á¸é, È¸é ¾Æ·¡¿¡ ÀÖ´Â ´ëÈÀÔ·Ââ¿¡¼ ÀÔ·ÂÀ» ÇÏ°í ¿£ÅÍ۸¦ ´©¸£¸éµË´Ï´Ù. ´Ù¸¥ »ç¿ëÀÚµéÀÇ ¸Þ¼¼Áö´Â ¸Þ¼¼Áö â¿¡¼ ÇÑ ÁÙ¾¿ ½ºÅ©·ÑµË´Ï´Ù. ! <?php if (C_BAD_WORDS == 1) echo('\³ª»Û ´Ü¾î(coarse words)\°¡ Æ÷Ç﵃ °æ¿ì ¸Þ¼¼Áö·ÎºÎÅÍ Á¦°ÅµË´Ï´Ù.' . "\n"); ?> </p> <p> --- 313,317 ---- <p> ´ëȹ濡¼ ¸Þ¼¼Áö¸¦ ¾²·Á¸é, È¸é ¾Æ·¡¿¡ ÀÖ´Â ´ëÈÀÔ·Ââ¿¡¼ ÀÔ·ÂÀ» ÇÏ°í ¿£ÅÍ۸¦ ´©¸£¸éµË´Ï´Ù. ´Ù¸¥ »ç¿ëÀÚµéÀÇ ¸Þ¼¼Áö´Â ¸Þ¼¼Áö â¿¡¼ ÇÑ ÁÙ¾¿ ½ºÅ©·ÑµË´Ï´Ù. ! <?php if (C_BAD_WORDS == 1) echo('\³ª»Û ´Ü¾î(swear words)\°¡ Æ÷Ç﵃ °æ¿ì ¸Þ¼¼Áö·ÎºÎÅÍ Á¦°ÅµË´Ï´Ù.' . "\n"); ?> </p> <p> |
From: Lo?c C. <lo...@us...> - 2001-04-10 17:41:29
|
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; |
From: Lo?c C. <lo...@us...> - 2001-04-10 17:39:38
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat In directory usw-pr-cvs1:/tmp/cvs-serv19882/chat Modified Files: input.php3 handle_inputH.php3 Log Message: Fix some bad translations ('bad words' to 'swear words') ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat Index: input.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/input.php3,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** input.php3 2001/03/27 19:33:59 1.8 --- input.php3 2001/04/10 17:39:34 1.9 *************** *** 208,212 **** ! // ** Test for online commands and bad words ** $IsCommand = false; $RefreshMessages = false; --- 208,212 ---- ! // ** Test for online commands and swear words ** $IsCommand = false; $RefreshMessages = false; Index: handle_inputH.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/handle_inputH.php3,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** handle_inputH.php3 2001/03/27 19:33:59 1.5 --- handle_inputH.php3 2001/04/10 17:39:34 1.6 *************** *** 210,214 **** ! // ** Test for online commands and bad words ** $IsCommand = false; $RefreshMessages = false; --- 210,214 ---- ! // ** Test for online commands and swear words ** $IsCommand = false; $RefreshMessages = false; |
From: Lo?c C. <lo...@us...> - 2001-04-10 17:39:38
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/config In directory usw-pr-cvs1:/tmp/cvs-serv19882/chat/config Modified Files: config.lib.php3 Log Message: Fix some bad translations ('bad words' to 'swear words') ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/config Index: config.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/config/config.lib.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** config.lib.php3 2001/02/25 19:10:09 1.2 --- config.lib.php3 2001/04/10 17:39:35 1.3 *************** *** 53,57 **** // if you want all moderators (and not only yourself) to banish users // forever, set C_BANISH to 2000000 (six zero) ! define("C_BAD_WORDS", '0'); // Check for bad words defined in chat/lib/swearing.lib.php3 file ? // 0 = no, 1 = yes define("C_SAVE", '*'); // Max number of message that an user may export with the /save command --- 53,57 ---- // if you want all moderators (and not only yourself) to banish users // forever, set C_BANISH to 2000000 (six zero) ! define("C_BAD_WORDS", '0'); // Check for swear words defined in chat/lib/swearing.lib.php3 file ? // 0 = no, 1 = yes define("C_SAVE", '*'); // Max number of message that an user may export with the /save command |
From: Lo?c C. <lo...@us...> - 2001-04-10 17:39:37
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/korean In directory usw-pr-cvs1:/tmp/cvs-serv19882/chat/localization/korean Modified Files: localized.tutorial.php3 Log Message: Fix some bad translations ('bad words' to 'swear words') ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/localization/korean Index: localized.tutorial.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/korean/localized.tutorial.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** localized.tutorial.php3 2001/02/25 19:10:09 1.2 --- localized.tutorial.php3 2001/04/10 17:39:34 1.3 *************** *** 179,183 **** <UL> <LI>¸ÕÀú, »ç¿ëÀÚ À̸§<?php if (!C_EMAIL_PASWD) echo("°ú ºñ¹Ð¹øÈ£¸¦"); else echo("À»");?> ÀÔ·ÂÇϽʽÿÀ. »ç¿ëÀÚ À̸§Àº ´ëȹ濡¼ ÀÚµ¿ÀûÀ¸·Î Ç¥½ÃµÇ´Â À̸§ÀÔ´Ï´Ù. °ø¹éÀ̳ª Äĸ¶(,) ±×¸®°í ¿ª½½·¡½¬(\)´Â »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù. ! <?php if (C_BAD_WORDS == "1") echo(" ±×¸®°í \"³ª»Û ´Ü¾î(bad word)\"µéÀº »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù.."); ?> <LI>µÎ¹øÂ°·Î, À̸§°ú email ÁÖ¼Ò¸¦ ÀÔ·ÂÇϽʽÿÀ. ´ëȸ¦ À§ÇÑ µî·ÏÀ» À§Çؼ´Â ¾Õ¼ ¸»ÇÑ °ÍÀº ¸ðµÎ ÀÔ·ÂÇϼžßÇϸç, ¼ºº°À̳ª ȨÆäÀÌÁö´Â ÀÔ·ÂÇÏÁö ¾ÊÀ¸¼Åµµ µË´Ï´Ù. <LI>ȨÆäÀÌÁö¸¦ °®°í ÀÖ´Ù¸é URLÀ» ³ÖÀ¸¼Åµµ µË´Ï´Ù. --- 179,183 ---- <UL> <LI>¸ÕÀú, »ç¿ëÀÚ À̸§<?php if (!C_EMAIL_PASWD) echo("°ú ºñ¹Ð¹øÈ£¸¦"); else echo("À»");?> ÀÔ·ÂÇϽʽÿÀ. »ç¿ëÀÚ À̸§Àº ´ëȹ濡¼ ÀÚµ¿ÀûÀ¸·Î Ç¥½ÃµÇ´Â À̸§ÀÔ´Ï´Ù. °ø¹éÀ̳ª Äĸ¶(,) ±×¸®°í ¿ª½½·¡½¬(\)´Â »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù. ! <?php if (C_BAD_WORDS == "1") echo(" ±×¸®°í \"³ª»Û ´Ü¾î(swear word)\"µéÀº »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù.."); ?> <LI>µÎ¹øÂ°·Î, À̸§°ú email ÁÖ¼Ò¸¦ ÀÔ·ÂÇϽʽÿÀ. ´ëȸ¦ À§ÇÑ µî·ÏÀ» À§Çؼ´Â ¾Õ¼ ¸»ÇÑ °ÍÀº ¸ðµÎ ÀÔ·ÂÇϼžßÇϸç, ¼ºº°À̳ª ȨÆäÀÌÁö´Â ÀÔ·ÂÇÏÁö ¾ÊÀ¸¼Åµµ µË´Ï´Ù. <LI>ȨÆäÀÌÁö¸¦ °®°í ÀÖ´Ù¸é URLÀ» ³ÖÀ¸¼Åµµ µË´Ï´Ù. *************** *** 207,211 **** µî·ÏµÈ »ç¿ëÀÚ´Â ´ëȹæÀ» ¸¸µé ¼ö ÀÖ½À´Ï´Ù. ºñ°ø°³ ´ëȹæÀº Ç¥½ÃµÇÁö ¾ÊÀ¸¸ç, ´ëȹæ À̸§À» ¾Ë¾Æ¾ß µé¾î°¥ ¼ö ÀÖ½À´Ï´Ù. <P> ! ´ëȹæ À̸§¿¡µµ Äĸ¶(,)³ª ¿ª½½·¡½¬(\)¸¦ Æ÷ÇÔÇÒ ¼ö ¾ø½À´Ï´Ù. <?php if (C_BAD_WORDS == "1") echo(" \"³ª»Û ´Ü¾î(bad words)\"µµ ¹°·Ð Æ÷ÇÔÇÒ ¼ö ¾ø½À´Ï´Ù."); ?> <BR><P ALIGN="right"><A HREF="#top">¸ÇÀ§·Î</A></P> <P> --- 207,211 ---- µî·ÏµÈ »ç¿ëÀÚ´Â ´ëȹæÀ» ¸¸µé ¼ö ÀÖ½À´Ï´Ù. ºñ°ø°³ ´ëȹæÀº Ç¥½ÃµÇÁö ¾ÊÀ¸¸ç, ´ëȹæ À̸§À» ¾Ë¾Æ¾ß µé¾î°¥ ¼ö ÀÖ½À´Ï´Ù. <P> ! ´ëȹæ À̸§¿¡µµ Äĸ¶(,)³ª ¿ª½½·¡½¬(\)¸¦ Æ÷ÇÔÇÒ ¼ö ¾ø½À´Ï´Ù. <?php if (C_BAD_WORDS == "1") echo(" \"³ª»Û ´Ü¾î(swear words)\"µµ ¹°·Ð Æ÷ÇÔÇÒ ¼ö ¾ø½À´Ï´Ù."); ?> <BR><P ALIGN="right"><A HREF="#top">¸ÇÀ§·Î</A></P> <P> *************** *** 239,243 **** <P> ´ëȹ濡¼ ¸Þ¼¼Áö¸¦ ¾²·Á¸é, È¸é ¾Æ·¡¿¡ ÀÖ´Â ´ëÈÀÔ·Ââ¿¡¼ ÀÔ·ÂÀ» ÇÏ°í ¿£ÅÍ۸¦ ´©¸£¸éµË´Ï´Ù. ´Ù¸¥ »ç¿ëÀÚµéÀÇ ¸Þ¼¼Áö´Â ¸Þ¼¼Áö â¿¡¼ ÇÑ ÁÙ¾¿ ½ºÅ©·ÑµË´Ï´Ù. ! <?php if (C_BAD_WORDS == "1") echo("\"³ª»Û ´Ü¾î(bad words)\"°¡ Æ÷Ç﵃ °æ¿ì ¸Þ¼¼Áö·ÎºÎÅÍ Á¦°ÅµË´Ï´Ù."); ?> <P> ´ëÈÀÔ·Ââ ¿À¸¥ÂÊ¿¡¼ ¸Þ¼¼ÁöÀÇ »ö»óÀ» º¯°æÇÒ ¼ö ÀÖ½À´Ï´Ù. --- 239,243 ---- <P> ´ëȹ濡¼ ¸Þ¼¼Áö¸¦ ¾²·Á¸é, È¸é ¾Æ·¡¿¡ ÀÖ´Â ´ëÈÀÔ·Ââ¿¡¼ ÀÔ·ÂÀ» ÇÏ°í ¿£ÅÍ۸¦ ´©¸£¸éµË´Ï´Ù. ´Ù¸¥ »ç¿ëÀÚµéÀÇ ¸Þ¼¼Áö´Â ¸Þ¼¼Áö â¿¡¼ ÇÑ ÁÙ¾¿ ½ºÅ©·ÑµË´Ï´Ù. ! <?php if (C_BAD_WORDS == "1") echo("\"³ª»Û ´Ü¾î(swear words)\"°¡ Æ÷Ç﵃ °æ¿ì ¸Þ¼¼Áö·ÎºÎÅÍ Á¦°ÅµË´Ï´Ù."); ?> <P> ´ëÈÀÔ·Ââ ¿À¸¥ÂÊ¿¡¼ ¸Þ¼¼ÁöÀÇ »ö»óÀ» º¯°æÇÒ ¼ö ÀÖ½À´Ï´Ù. |