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-05-02 22:26:10
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/dutch In directory usw-pr-cvs1:/tmp/cvs-serv30880/chat/localization/dutch Modified Files: chat.loc Log Message: There were 2 translations of the same string (L_ERR_USR_16)! Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/dutch/chat.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** chat.loc 2001/04/30 22:44:58 1.6 --- chat.loc 2001/05/02 22:26:08 1.7 *************** *** 125,129 **** define('L_ERR_USR_14', 'Je moet geregisteerd zijn voordat je kan chatten.'); define('L_ERR_USR_15', 'Je moet jou naam voluit typen.'); - define('L_ERR_USR_16', 'Jou gebruikersnaam kan niet met spatie, komma en backslash (\\).'); define('L_ERR_USR_16', 'Gebruikersnaam kan niet met spatie, komma en backslash (\\).'); define('L_ERR_USR_17', 'Deze kamer is niet beschikbaar en je ben niet bevoegd om nieuwe kamer te maken.'); --- 125,128 ---- |
From: Lo?c C. <lo...@us...> - 2001-05-02 22:25:26
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization In directory usw-pr-cvs1:/tmp/cvs-serv30757/chat/localization Modified Files: tutorial.lib.php3 languages.lib.php3 admin.lib.php3 Log Message: Improved a bit languages detection function Index: tutorial.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/tutorial.lib.php3,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** tutorial.lib.php3 2001/04/20 17:03:39 1.5 --- tutorial.lib.php3 2001/05/02 22:25:23 1.6 *************** *** 53,57 **** // 2 for the 'HTTP_USER_AGENT' one if ( ($envType == 0 && strcasecmp($name, $str) == 0) ! || ($envType == 1 && eregi('^(' . $key . ')$', $str)) || ($envType == 2 && eregi('(\(|\[|;[[:space:]])(' . $key . ')(;|\]|\))', $str))) { --- 53,57 ---- // 2 for the 'HTTP_USER_AGENT' one if ( ($envType == 0 && strcasecmp($name, $str) == 0) ! || ($envType == 1 && eregi('^(' . $key . ')(;q=[0-9]\\.[0-9])?$', $str)) || ($envType == 2 && eregi('(\(|\[|;[[:space:]])(' . $key . ')(;|\]|\))', $str))) { *************** *** 117,122 **** else if (!empty($HTTP_ACCEPT_LANGUAGE)) { ! $accepted = explode(',', getenv('HTTP_ACCEPT_LANGUAGE')); ! pmcTutorialDetect($accepted[0], 1); } --- 117,127 ---- else if (!empty($HTTP_ACCEPT_LANGUAGE)) { ! $accepted = explode(',', $HTTP_ACCEPT_LANGUAGE); ! $acceptedCnt = count($accepted); ! reset($accepted); ! for ($i = 0; $i < $acceptedCnt && empty($lang); $i++) ! { ! pmcTutorialDetect($accepted[$i], 1); ! } } *************** *** 125,129 **** else if (!empty($HTTP_USER_AGENT)) { ! pmcTutorialDetect(getenv('HTTP_USER_AGENT'), 2); } --- 130,134 ---- else if (!empty($HTTP_USER_AGENT)) { ! pmcTutorialDetect($HTTP_USER_AGENT, 2); } Index: languages.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/languages.lib.php3,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** languages.lib.php3 2001/04/27 18:30:28 1.6 --- languages.lib.php3 2001/05/02 22:25:23 1.7 *************** *** 53,57 **** // 2 for the 'HTTP_USER_AGENT' one if ( ($envType == 0 && strcasecmp($name, $str) == 0) ! || ($envType == 1 && eregi('^(' . $key . ')$', $str)) || ($envType == 2 && eregi('(\(|\[|;[[:space:]])(' . $key . ')(;|\]|\))', $str))) { --- 53,57 ---- // 2 for the 'HTTP_USER_AGENT' one if ( ($envType == 0 && strcasecmp($name, $str) == 0) ! || ($envType == 1 && eregi('^(' . $key . ')(;q=[0-9]\\.[0-9])?$', $str)) || ($envType == 2 && eregi('(\(|\[|;[[:space:]])(' . $key . ')(;|\]|\))', $str))) { *************** *** 128,133 **** else if (!empty($HTTP_ACCEPT_LANGUAGE)) { ! $accepted = explode(',', $HTTP_ACCEPT_LANGUAGE); ! pmcLangDetect($accepted[0], 1); } --- 128,138 ---- else if (!empty($HTTP_ACCEPT_LANGUAGE)) { ! $accepted = explode(',', $HTTP_ACCEPT_LANGUAGE); ! $acceptedCnt = count($accepted); ! reset($accepted); ! for ($i = 0; $i < $acceptedCnt && empty($dbSessionVars['lang']); $i++) ! { ! pmcLangDetect($accepted[$i], 1); ! } } Index: admin.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/admin.lib.php3,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** admin.lib.php3 2001/04/20 17:03:39 1.5 --- admin.lib.php3 2001/05/02 22:25:23 1.6 *************** *** 53,60 **** // 2 for the 'HTTP_USER_AGENT' one if ( ($envType == 0 && strcasecmp($name, $str) == 0) ! || ($envType == 1 && eregi('^(' . $key . ')$', $str)) || ($envType == 2 && eregi('(\(|\[|;[[:space:]])(' . $key . ')(;|\]|\))', $str))) { ! $$dbSessionVars['lang'] = $availableAdmins[$key]; $notFound = false; } --- 53,60 ---- // 2 for the 'HTTP_USER_AGENT' one if ( ($envType == 0 && strcasecmp($name, $str) == 0) ! || ($envType == 1 && eregi('^(' . $key . ')(;q=[0-9]\\.[0-9])?$', $str)) || ($envType == 2 && eregi('(\(|\[|;[[:space:]])(' . $key . ')(;|\]|\))', $str))) { ! $dbSessionVars['lang'] = $availableAdmins[$key]; $notFound = false; } *************** *** 109,114 **** else if (!empty($HTTP_ACCEPT_LANGUAGE)) { ! $accepted = explode(',', $HTTP_ACCEPT_LANGUAGE); ! pmcAdminDetect($accepted[0], 1); } --- 109,119 ---- else if (!empty($HTTP_ACCEPT_LANGUAGE)) { ! $accepted = explode(',', $HTTP_ACCEPT_LANGUAGE); ! $acceptedCnt = count($accepted); ! reset($accepted); ! for ($i = 0; $i < $acceptedCnt && empty($dbSessionVars['lang']); $i++) ! { ! pmcAdminDetect($accepted[$i], 1); ! } } |
From: Lo?c C. <lo...@us...> - 2001-05-01 15:31:51
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv14819/chat Modified Files: input.php3 Log Message: Improve a bit the solution to the size of the message box Index: input.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/input.php3,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -r1.30 -r1.31 *** input.php3 2001/04/30 22:44:58 1.30 --- input.php3 2001/05/01 15:31:48 1.31 *************** *** 230,236 **** $msgValue = ''; } ! // Define the message box size ! $msgBoxSize = 68 - ((L_FONT_SIZE - 10) * 3.5); ! // The urls for the help and the smilies popups $helpUrl = 'help_popup.' . C_EXTENSION --- 230,235 ---- $msgValue = ''; } ! // Define the default message box size (presumed resolution is 800*600) ! $msgBoxSize = floor((800-130) / (L_FONT_SIZE * 0.85)) - 7; // The urls for the help and the smilies popups $helpUrl = 'help_popup.' . C_EXTENSION *************** *** 315,319 **** <table border="0" cellpadding="0" cellspacing="0"> <tr> ! <td align="<?php echo($cellAlign); ?>" colspan="3"> <?php // Put the session id in an hidden field --- 314,318 ---- <table border="0" cellpadding="0" cellspacing="0"> <tr> ! <td align="<?php echo($cellAlign); ?>" colspan="3" nowrap="nowrap"> <?php // Put the session id in an hidden field *************** *** 330,334 **** --- 329,351 ---- <!-- Message box --> + <script type="text/javascript" language="javascript1.2"> + <!-- + // Get the size of the window + winWidth = 0; + if (typeof(document.body) != 'undefined' + && typeof(document.body.clientWidth) != 'undefined') + winWidth = document.body.clientWidth; + else if (typeof(window.innerWidth) != 'undefined') + winWidth = window.innerWidth; + // Define the size of the message box and display it + msgBoxSize = (winWidth) + ? Math.floor(winWidth / (<?php echo(L_FONT_SIZE); ?> * 0.85)) - 7 + : <?php echo($msgBoxSize); ?>; + document.write('<input type="text" name="message" size="' + msgBoxSize + '" maxlength="299" value="<?php echo(addslashes($msgValue)); ?>" />'); + // --> + </script> + <noscript> <input type="text" name="message" size="<?php echo($msgBoxSize); ?>" maxlength="299" value="<?php echo($msgValue); ?>" /> + </noscript> |
From: Lo?c C. <lo...@us...> - 2001-05-01 09:04:02
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv7061/chat/lib/index_libs Modified Files: msg_colors.lib.js Log Message: Reduce the width of the image to 2px and fix some bugs with js1.1 (and not 1.2) enabled browsers Index: msg_colors.lib.js =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/msg_colors.lib.js,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** msg_colors.lib.js 2001/04/27 18:27:22 1.3 --- msg_colors.lib.js 2001/05/01 09:03:59 1.4 *************** *** 27,33 **** var jsSelectedColor = null; ! var jsImgColor1 = new Image(4,20); jsImgColor1.src = jsChatPath + 'images/unsel_color.gif'; ! var jsImgColor2 = new Image(4,20); jsImgColor2.src = jsChatPath + 'images/sel_color.gif'; --- 27,33 ---- var jsSelectedColor = null; ! var jsImgColor1 = new Image(2, 20); jsImgColor1.src = jsChatPath + 'images/unsel_color.gif'; ! var jsImgColor2 = new Image(2, 20); jsImgColor2.src = jsChatPath + 'images/sel_color.gif'; *************** *** 44,49 **** function pmcSetColorPicker(theCurrentColor) { ! var jsTextColors = new Array('#000000', '#ffffff'); ! var i = 1; // Defines the list of available colors (red ones are only valid for the --- 44,49 ---- function pmcSetColorPicker(theCurrentColor) { ! var jsTextColors = new Array('#000000', '#333333', '#666666', '#999999', '#ffffff'); ! var i = 4; // Defines the list of available colors (red ones are only valid for the *************** *** 69,76 **** // Buffers the color picker jsColorPicker = new Array(); jsColorPicker[0] = '<table border="0" cellpadding="0" cellspacing="0">'; jsColorPicker[1] = '<tr>'; ! for (var i = 0; i < jsTextColors.length; i++) { if (theCurrentColor == jsTextColors[i]) --- 69,77 ---- // Buffers the color picker + var jsTextColorsCnt = jsTextColors.length; jsColorPicker = new Array(); jsColorPicker[0] = '<table border="0" cellpadding="0" cellspacing="0">'; jsColorPicker[1] = '<tr>'; ! for (var i = 0; i < jsTextColorsCnt; i++) { if (theCurrentColor == jsTextColors[i]) *************** *** 87,91 **** jsColorPicker[i+2] = '<\/tr>'; jsColorPicker[i+3] = '<\/table>'; ! jsTextColors = null; return true; --- 88,93 ---- jsColorPicker[i+2] = '<\/tr>'; jsColorPicker[i+3] = '<\/table>'; ! jsTextColorsCnt = null; ! jsTextColors = null; return true; *************** *** 114,124 **** var obj2 = inputDoc.getElementById(colorRank); } ! else if (jsIsIE4) { ! var obj1 = inputDoc.all[jsSelectedColor]; ! var obj2 = inputDoc.all[colorRank]; } ! // NS ! else if (jsIsNS4) { var obj1 = inputDoc.images[jsSelectedColor]; --- 116,125 ---- var obj2 = inputDoc.getElementById(colorRank); } ! else if (typeof(document.images.item) != 'undefined') { ! var obj1 = inputDoc.images.item(jsSelectedColor); ! var obj2 = inputDoc.images.item(colorRank); } ! else if (typeof(document.images) != 'undefined') { var obj1 = inputDoc.images[jsSelectedColor]; *************** *** 126,130 **** --- 127,133 ---- } else + { return false; + } if (jsSelectedColor != null) |
From: Lo?c C. <lo...@us...> - 2001-05-01 09:03:05
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/images In directory usw-pr-cvs1:/tmp/cvs-serv6953/chat/images Modified Files: unsel_color.gif Log Message: Reduce the width of the image to 2px Index: unsel_color.gif =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/images/unsel_color.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 Binary files /tmp/cvsULnOOh and /tmp/cvscja6pp differ |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:47:09
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv4094 Removed Files: help_popup.lib.js Log Message: Replaced by 'help_and_smilies_popup.lib.php3' --- help_popup.lib.js DELETED --- |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:51
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/config In directory usw-pr-cvs1:/tmp/cvs-serv3870/chat/config Modified Files: style.css.php3 Log Message: Updated to the new 'input' frame Index: style.css.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/config/style.css.php3,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** style.css.php3 2001/04/19 21:05:04 1.4 --- style.css.php3 2001/04/30 22:45:48 1.5 *************** *** 186,189 **** --- 186,195 ---- } + .success + { + font-weight: 400; + color: #CCCCFF; + } + .small { |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:29
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/arabic In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/arabic Modified Files: tutorial.loc chat.loc Log Message: Updated to the new 'input' frame Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/arabic/tutorial.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** tutorial.loc 2001/04/28 21:05:42 1.6 --- tutorial.loc 2001/04/30 22:44:57 1.7 *************** *** 562,565 **** --- 562,568 ---- <i>ãËÇá</i>, "ãÑÍÈÇ ÎÇáÏ :)" ÓÊÕÈÍ : ãÑÍÈÇ ÎÇáÏ <img src="images/smilies/smile1.gif" width="15" height="15" alt=":)" /> ÏÇÎá ÓÇÍÉ ÇáÍæÇÑ </p> + <p> + If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code ' :mine: '. + </p> <p align="right"><a href="#top">ÇáÚæÏÉ Çáì ÇáÞÇÆãÉ ÇáÑÆíÓíÉ</a></p> <hr /> Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/arabic/chat.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** chat.loc 2001/04/20 20:42:46 1.6 --- chat.loc 2001/04/30 22:44:57 1.7 *************** *** 174,182 **** // 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', 'ÑÓÇáÉ'); --- 174,181 ---- // help popup ! define('L_HELP_TIT_1', 'ÎØæØ ããíÒÉ'); 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_2', 'ÇáÃæÇãÑ'); define('L_HELP_USR', 'ÚÖæ'); define('L_HELP_MSG', 'ÑÓÇáÉ'); *************** *** 206,209 **** --- 205,213 ---- define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.'); define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); + + // smilies popup + define('L_SMIL_TIT', 'ÊÚÈíÑÇÊ ÇáæÌæå'); + define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); + define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); // messages frame |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:29
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/lib/commands Modified Files: whois.cmd.php3 save.cmd.php3 profile.cmd.php3 ignore.cmd.php3 help.cmd.php3 Log Message: Updated to the new 'input' frame Index: whois.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/whois.cmd.php3,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** whois.cmd.php3 2001/04/19 21:05:04 1.6 --- whois.cmd.php3 2001/04/30 22:44:57 1.7 *************** *** 84,95 **** . $pmcQueryArgSeparator . 'whoisTarget=' . urlencode($cmd[1]); ! $jsToRun = array( ! '<script type="text/javascript" language="javascript">', ! '<!--', ! '// Lauch the whois popup', ! 'window.open(\'' . $whoisUrl . '\', \'' . $winName . '\', \'width=420,height=' . $winHeight . ',resizable=yes,scrollbars=yes\');', ! '// -->', ! '</script>' ! ); } } --- 84,104 ---- . $pmcQueryArgSeparator . 'whoisTarget=' . urlencode($cmd[1]); ! // Define a table that contains JavaScript instructions to be ran ! if ($dbSessionVars['jsVersion'] != 'noJs') ! { ! $jsToRun = array( ! '<script type="text/javascript" language="javascript">', ! '<!--', ! '// Lauch the whois popup', ! 'window.open(\'' . $whoisUrl . '\', \'' . $winName . '\', \'width=420,height=' . $winHeight . ',resizable=yes,scrollbars=yes\');', ! '// -->', ! '</script>' ! ); ! } ! // Define an html link that will be displayed by the 'input' frame ! else ! { ! $htmlPopupLink = '<a href="' . $whoisUrl . '" target="' . $winName . '">Whois ' . $cmd[1] . '</a>'; ! } } } Index: save.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/save.cmd.php3,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** save.cmd.php3 2001/04/19 21:05:04 1.3 --- save.cmd.php3 2001/04/30 22:44:57 1.4 *************** *** 68,88 **** if (C_SAVE != "*" && ($cmd[2] = '*' || $cmd[2] > C_SAVE || $cmd[2] == '')) $cmd[2] = C_SAVE; else if ($cmd[2] == '') $cmd[2] = C_SAVE; $dbSessionVars['savedMessagesLimit'] = $cmd[2]; ! $exportUrl = 'save.' . C_EXTENSION . '?' . dbSessionSID('GET'); // Define a table that contains JavaScript instructions to be ran ! $jsToRun = array( ! '<script type="text/javascript" language="javascript">', ! '<!--', ! '// Save messages to a file', ! 'window.open(\'' . $exportUrl . '\', \'save_popup\', \'width=0,height=0,resizable=yes,scrollbars=yes\');', ! '// -->', ! '</script>' ! ); } else --- 68,100 ---- if (C_SAVE != "*" && ($cmd[2] = '*' || $cmd[2] > C_SAVE || $cmd[2] == '')) + { $cmd[2] = C_SAVE; + } else if ($cmd[2] == '') + { $cmd[2] = C_SAVE; + } $dbSessionVars['savedMessagesLimit'] = $cmd[2]; ! $saveUrl = 'save.' . C_EXTENSION . '?' . dbSessionSID('GET'); // Define a table that contains JavaScript instructions to be ran ! if ($dbSessionVars['jsVersion'] != 'noJs') ! { ! $jsToRun = array( ! '<script type="text/javascript" language="javascript">', ! '<!--', ! '// Save messages to a file', ! 'window.open(\'' . $saveUrl . '\', \'save_popup\', \'width=0,height=0,resizable=yes,scrollbars=yes\');', ! '// -->', ! '</script>' ! ); ! } ! // Define an html link to be clicked on ! else ! { ! $htmlPopupLink = '<a href="' . $saveUrl . '" target="save_popup">Save</a>'; ! } } else Index: profile.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/profile.cmd.php3,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** profile.cmd.php3 2001/04/19 21:05:04 1.3 --- profile.cmd.php3 2001/04/30 22:44:57 1.4 *************** *** 26,31 **** /** ! * Just modidify some variables and define an array of JavaScript instructions ! * to be ran at the end of the calling script */ $isCommand = true; --- 26,30 ---- /** ! * Modidify some variables */ $isCommand = true; *************** *** 35,46 **** . '?' . dbSessionSID('GET'); ! $jsToRun = array( ! '<script type="text/javascript" language="javascript">', ! '<!--', ! '// Lauch the profile popup', ! 'window.open(\'' . $profileUrl . '\', \'profile_popup\', \'width=350,height=470,resizable=yes,scrollbars=yes\');', ! '// -->', ! '</script>' ! ); ?> --- 34,56 ---- . '?' . dbSessionSID('GET'); ! /** ! * Define a table that contains JavaScript instructions to be ran or an html ! * link to be clicked on ! */ ! if ($dbSessionVars['jsVersion'] != 'noJs') ! { ! $jsToRun = array( ! '<script type="text/javascript" language="javascript">', ! '<!--', ! '// Lauch the profile popup', ! 'window.open(\'' . $profileUrl . '\', \'profile_edit_popup\', \'width=350,height=470,resizable=yes,scrollbars=yes\');', ! '// -->', ! '</script>' ! ); ! } ! else ! { ! $htmlPopupLink = '<a href="' . $profileUrl . '" target="profile_edit_popup">' . L_PROFILE . '</a>'; ! } ?> Index: ignore.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/ignore.cmd.php3,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** ignore.cmd.php3 2001/04/19 21:05:04 1.5 --- ignore.cmd.php3 2001/04/30 22:44:57 1.6 *************** *** 47,67 **** // Define a table that contains JavaScript instructions to be ran ! $jsToRun = array( ! '<script type="text/javascript" language="javascript">', ! '<!--', ! 'with (window.parent)', ! '{', ! "\t" . 'if (typeof(jsIgnoredPopupWin) != \'undefined\' && jsIgnoredPopupWin != null && !jsIgnoredPopupWin.closed)', ! "\t" . '{', ! "\t\t" . 'jsIgnoredPopupWin.focus();', ! "\t" . '}', ! "\t" . 'else', ! "\t" . '{', ! "\t\t" . 'jsIgnoredPopupWin = window.open(\'' . $ignoredUrl . '\', \'ignore_popup\', \'width=180,height=300,scrollbars=yes,resizable=yes\');', ! "\t" . '}', ! '}', ! '// -->', ! '</script>' ! ); } // Add user(s) to the ignored list --- 47,75 ---- // Define a table that contains JavaScript instructions to be ran ! if ($dbSessionVars['jsVersion'] != 'noJs') ! { ! $jsToRun = array( ! '<script type="text/javascript" language="javascript">', ! '<!--', ! 'with (window.parent)', ! '{', ! "\t" . 'if (typeof(jsIgnoredPopupWin) != \'undefined\' && jsIgnoredPopupWin != null && !jsIgnoredPopupWin.closed)', ! "\t" . '{', ! "\t\t" . 'jsIgnoredPopupWin.focus();', ! "\t" . '}', ! "\t" . 'else', ! "\t" . '{', ! "\t\t" . 'jsIgnoredPopupWin = window.open(\'' . $ignoredUrl . '\', \'ignore_popup\', \'width=180,height=300,scrollbars=yes,resizable=yes\');', ! "\t" . '}', ! '}', ! '// -->', ! '</script>' ! ); ! } ! // Define an html link that will be displayed by the 'input' frame ! else ! { ! $htmlPopupLink = '<a href="' . $ignoredUrl . '" target="ignored">' . L_IGNOR_TIT . '</a>'; ! } } // Add user(s) to the ignored list *************** *** 152,170 **** // Define a table that contains JavaScript instructions to be ran ! $jsToRun = array( ! '<script type="text/javascript" language="javascript">', ! '<!--', ! '// Refresh the ignored popup', ! 'with (window.parent)', ! '{', ! "\t" . 'if (typeof(jsIgnoredPopupWin) != \'undefined\' && jsIgnoredPopupWin != null && !jsIgnoredPopupWin.closed)', ! "\t" . '{', ! "\t\t" . 'jsIgnoredPopupWin.document.forms[\'ignoredForm\'].elements[\'refresh\'].value = 1;', ! "\t\t" . 'jsIgnoredPopupWin.location = \'' . $ignoredUrl . '\';', ! "\t" . '}', ! '}', ! '// -->', ! '</script>' ! ); } --- 160,186 ---- // Define a table that contains JavaScript instructions to be ran ! if ($dbSessionVars['jsVersion'] != 'noJs') ! { ! $jsToRun = array( ! '<script type="text/javascript" language="javascript">', ! '<!--', ! '// Refresh the ignored popup', ! 'with (window.parent)', ! '{', ! "\t" . 'if (typeof(jsIgnoredPopupWin) != \'undefined\' && jsIgnoredPopupWin != null && !jsIgnoredPopupWin.closed)', ! "\t" . '{', ! "\t\t" . 'jsIgnoredPopupWin.document.forms[\'ignoredForm\'].elements[\'refresh\'].value = 1;', ! "\t\t" . 'jsIgnoredPopupWin.location = \'' . $ignoredUrl . '\';', ! "\t" . '}', ! '}', ! '// -->', ! '</script>' ! ); ! } ! // Define an html link that will be displayed by the 'input' frame ! else ! { ! $htmlPopupLink = '<a href="' . $ignoredUrl . '" target="ignored">' . L_IGNOR_TIT . '</a>'; ! } } Index: help.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/help.cmd.php3,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** help.cmd.php3 2001/04/19 21:05:04 1.4 --- help.cmd.php3 2001/04/30 22:44:57 1.5 *************** *** 26,38 **** /** ! * Define a table that contains JavaScript instructions to be ran */ ! $jsToRun = array( ! '<script type="text/javascript" language="javascript">', ! '<!--', ! 'window.parent.pmcHelpPopup(' . ((L_CHARSET == 'windows-1256') ? 610 : 10) . ');', ! '// -->', ! '</script>' ! ); $isCommand = true; --- 26,49 ---- /** ! * Define a table that contains JavaScript instructions to be ran or an html ! * link to be clicked on */ ! if ($dbSessionVars['jsVersion'] != 'noJs') ! { ! $jsToRun = array( ! '<script type="text/javascript" language="javascript">', ! '<!--', ! 'window.parent.pmcHelpPopup(' . ((L_CHARSET == 'windows-1256') ? 610 : 10) . ');', ! '// -->', ! '</script>' ! ); ! } ! else ! { ! $helpUrl = 'help_popup.' . C_EXTENSION ! . '?lang=' . $dbSessionVars['lang'] ! . $pmcQueryArgSeparator . 'jsVersion=' . $dbSessionVars['jsVersion']; ! $htmlPopupLink = '<a href="' . $helpUrl . '" target="help_popup">' . L_HLP . '</a>'; ! } $isCommand = true; |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:04
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/thai In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/thai Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/thai/chat.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** chat.loc 2001/04/20 20:42:48 1.6 --- chat.loc 2001/04/30 22:44:59 1.7 *************** *** 173,181 **** // help popup ! define('L_HELP_TIT_1', 'ÊäÁÅì'); ! 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', '¤ÓÊÑè§'); define('L_HELP_USR', '¼Ù館Â'); define('L_HELP_MSG', 'message'); --- 173,180 ---- // help popup ! define('L_HELP_TIT_1', '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_2', '¤ÓÊÑè§'); define('L_HELP_USR', '¼Ù館Â'); define('L_HELP_MSG', 'message'); *************** *** 207,211 **** define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! //message frame define('L_NO_MSG', 'äÁèÁÕ¢éͤÇÒÁ½Ò¡äÇ颳йÕé ...'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); --- 206,215 ---- define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! // smilies popup ! define('L_SMIL_TIT', 'ÊäÁÅì'); ! define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); ! define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); ! ! // message frame define('L_NO_MSG', 'äÁèÁÕ¢éͤÇÒÁ½Ò¡äÇ颳йÕé ...'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); *************** *** 225,229 **** 'Carrot' => '#FF6600'); ! //ignored popup define('L_IGNOR_TIT', 'µÑ´·Ôé§'); define('L_IGNOR_NON', 'àÅ×Í¡ËÁ´'); --- 229,233 ---- 'Carrot' => '#FF6600'); ! // ignored popup define('L_IGNOR_TIT', 'µÑ´·Ôé§'); define('L_IGNOR_NON', 'àÅ×Í¡ËÁ´'); |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:04
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/portuguese In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/portuguese Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/portuguese/chat.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** chat.loc 2001/04/20 20:42:47 1.5 --- chat.loc 2001/04/30 22:44:59 1.6 *************** *** 175,183 **** // help popup ! define('L_HELP_TIT_1', 'Smilies'); ! define('L_HELP_TIT_2', 'Formatação de texto para mensagens'); define('L_HELP_FMT_1', 'Pode colocar texto em negrito, italico e sublinhado usando os simbolos apropriados <b> </b>, <i> </i> ou <u> </u>.<br />Por exemplo, <b>este texto</b> irá aparecer como <b>este texto</b>.'); define('L_HELP_FMT_2', 'Para criar um hyperlink (para e-mail ou página web) nas suas mensagens, simplesmente escreva a morada sem tages. O hyperlink será gerado automáticamente.'); ! define('L_HELP_TIT_3', 'Comandos'); define('L_HELP_USR', 'utilizador'); define('L_HELP_MSG', 'mensagem'); --- 175,182 ---- // help popup ! define('L_HELP_TIT_1', 'Formatação de texto para mensagens'); define('L_HELP_FMT_1', 'Pode colocar texto em negrito, italico e sublinhado usando os simbolos apropriados <b> </b>, <i> </i> ou <u> </u>.<br />Por exemplo, <b>este texto</b> irá aparecer como <b>este texto</b>.'); define('L_HELP_FMT_2', 'Para criar um hyperlink (para e-mail ou página web) nas suas mensagens, simplesmente escreva a morada sem tages. O hyperlink será gerado automáticamente.'); ! define('L_HELP_TIT_2', 'Comandos'); define('L_HELP_USR', 'utilizador'); define('L_HELP_MSG', 'mensagem'); *************** *** 208,212 **** define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! //message frame define('L_NO_MSG', 'Não existe neste momento nenhuma mensagem ...'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); --- 207,216 ---- define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! // smilies popup ! define('L_SMIL_TIT', 'Smilies'); ! define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); ! define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); ! ! // message frame define('L_NO_MSG', 'Não existe neste momento nenhuma mensagem ...'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); *************** *** 226,230 **** 'Cenoura' => '#FF6600'); ! //ignored popup define('L_IGNOR_TIT', 'Ignorado'); define('L_IGNOR_NON', 'Nenhum utilizador ignorado'); --- 230,234 ---- 'Cenoura' => '#FF6600'); ! // ignored popup define('L_IGNOR_TIT', 'Ignorado'); define('L_IGNOR_NON', 'Nenhum utilizador ignorado'); |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:04
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/swedish In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/swedish Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/swedish/chat.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** chat.loc 2001/04/20 20:42:47 1.6 --- chat.loc 2001/04/30 22:44:59 1.7 *************** *** 174,182 **** // help popup ! define('L_HELP_TIT_1', 'Smileys'); ! define('L_HELP_TIT_2', 'Textformattering för meddelanden'); define('L_HELP_FMT_1', 'Du kan göra text fet, kursiv eller understruken genom att innesluta textavsnittet med <b> </b>, <i> </i> or <u> </u> taggar.<br />Till exempel, <b>den här texten</b> genererar <b>den här texten</b>.'); define('L_HELP_FMT_2', 'För att skapa en hyperlänk i dina meddelanden så skriver du bara in adressen utan några taggar. Länken skapas automatiskt.'); ! define('L_HELP_TIT_3', 'Kommandon'); define('L_HELP_USR', 'användare'); define('L_HELP_MSG', 'meddelande'); --- 174,181 ---- // help popup ! define('L_HELP_TIT_1', 'Textformattering för meddelanden'); define('L_HELP_FMT_1', 'Du kan göra text fet, kursiv eller understruken genom att innesluta textavsnittet med <b> </b>, <i> </i> or <u> </u> taggar.<br />Till exempel, <b>den här texten</b> genererar <b>den här texten</b>.'); define('L_HELP_FMT_2', 'För att skapa en hyperlänk i dina meddelanden så skriver du bara in adressen utan några taggar. Länken skapas automatiskt.'); ! define('L_HELP_TIT_2', 'Kommandon'); define('L_HELP_USR', 'användare'); define('L_HELP_MSG', 'meddelande'); *************** *** 207,210 **** --- 206,214 ---- define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.'); define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); + + // smilies popup + define('L_SMIL_TIT', 'Smileys'); + define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); + define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); // messages frame |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:04
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/romanian In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/romanian Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/romanian/chat.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** chat.loc 2001/04/20 20:42:47 1.5 --- chat.loc 2001/04/30 22:44:59 1.6 *************** *** 187,195 **** // help popup ! define('L_HELP_TIT_1', 'Imagini pe care le poti introduce in mesaje.'); ! define('L_HELP_TIT_2', 'Formatarea textului pentru mesaje'); define('L_HELP_FMT_1', 'Textul poate fi ingrosat (bold), inclinat (italic) sau subliniat (underline) prin simpla sa incadrare intre cuvintele cheie <b> </b>, <i> </i> sau <u> </u><br />Exemplu, <b>acest text</b> va produce <b>acest text</b>.'); define('L_HELP_FMT_2', 'Pentru a crea un hyperlink (pentru e-mail sau pagina www) in mesajul tau, tasteaza pur-si-simplu adresa corespunzatoare. Hyperlink-ul va fi creat automat.'); ! define('L_HELP_TIT_3', 'Comenzi'); define('L_HELP_USR', 'utilizator'); define('L_HELP_MSG', 'mesaj'); --- 187,194 ---- // help popup ! define('L_HELP_TIT_1', 'Formatarea textului pentru mesaje'); define('L_HELP_FMT_1', 'Textul poate fi ingrosat (bold), inclinat (italic) sau subliniat (underline) prin simpla sa incadrare intre cuvintele cheie <b> </b>, <i> </i> sau <u> </u><br />Exemplu, <b>acest text</b> va produce <b>acest text</b>.'); define('L_HELP_FMT_2', 'Pentru a crea un hyperlink (pentru e-mail sau pagina www) in mesajul tau, tasteaza pur-si-simplu adresa corespunzatoare. Hyperlink-ul va fi creat automat.'); ! define('L_HELP_TIT_2', 'Comenzi'); define('L_HELP_USR', 'utilizator'); define('L_HELP_MSG', 'mesaj'); *************** *** 220,223 **** --- 219,227 ---- define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.'); define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); + + // smilies popup + define('L_SMIL_TIT', 'Imagini pe care le poti introduce in mesaje'); + define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); + define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); // messages frame |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:04
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/norwegian In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/norwegian Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/norwegian/chat.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** chat.loc 2001/04/20 20:42:47 1.6 --- chat.loc 2001/04/30 22:44:59 1.7 *************** *** 174,182 **** // help popup ! define('L_HELP_TIT_1', 'Smilefjes'); ! 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', 'Kommandoer'); define('L_HELP_USR', 'bruker'); define('L_HELP_MSG', 'melding'); --- 174,181 ---- // help popup ! define('L_HELP_TIT_1', '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_2', 'Kommandoer'); define('L_HELP_USR', 'bruker'); define('L_HELP_MSG', 'melding'); *************** *** 208,212 **** define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! //message frame define('L_NO_MSG', 'Det er ingen meldinger her nå ...'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); --- 207,216 ---- define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! // smilies popup ! define('L_SMIL_TIT', 'Smilefjes'); ! define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); ! define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); ! ! // message frame define('L_NO_MSG', 'Det er ingen meldinger her nå ...'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); *************** *** 226,230 **** 'Gulrot' => '#FF6600'); ! //ignored popup define('L_IGNOR_TIT', 'Ignorert'); define('L_IGNOR_NON', 'Ingen ignorerte brukere'); --- 230,234 ---- 'Gulrot' => '#FF6600'); ! // ignored popup define('L_IGNOR_TIT', 'Ignorert'); define('L_IGNOR_NON', 'Ingen ignorerte brukere'); |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:04
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/estonian In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/estonian Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/estonian/chat.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** chat.loc 2001/04/20 20:42:46 1.6 --- chat.loc 2001/04/30 22:44:58 1.7 *************** *** 174,182 **** // help popup ! define('L_HELP_TIT_1', 'Smilies'); ! define('L_HELP_TIT_2', 'Sõnumite teksti formateerimine'); define('L_HELP_FMT_1', 'Võid panna bold, italic või underlined teksti sõnumitesse ümbritsedes vastava koha kas <b> </b>, <i> </i> või <u> </u> tagidega.<br />Näiteks, <b>see tekst</b> annab tulemuseks <b>see tekst</b>.'); define('L_HELP_FMT_2', 'Lingi tekitamiseks (e-maili või URLi) sõnumites, lihtsalt sisesta vastav aadress ilma tagidetta. Link tekitatakse automaatselt.'); ! define('L_HELP_TIT_3', 'Käsud'); define('L_HELP_USR', 'kasutaja'); define('L_HELP_MSG', 'sõnum'); --- 174,181 ---- // help popup ! define('L_HELP_TIT_1', 'Sõnumite teksti formateerimine'); define('L_HELP_FMT_1', 'Võid panna bold, italic või underlined teksti sõnumitesse ümbritsedes vastava koha kas <b> </b>, <i> </i> või <u> </u> tagidega.<br />Näiteks, <b>see tekst</b> annab tulemuseks <b>see tekst</b>.'); define('L_HELP_FMT_2', 'Lingi tekitamiseks (e-maili või URLi) sõnumites, lihtsalt sisesta vastav aadress ilma tagidetta. Link tekitatakse automaatselt.'); ! define('L_HELP_TIT_2', 'Käsud'); define('L_HELP_USR', 'kasutaja'); define('L_HELP_MSG', 'sõnum'); *************** *** 206,209 **** --- 205,213 ---- define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.'); define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); + + // smilies popup + define('L_SMIL_TIT', 'Smilies'); + define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); + define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); // messages frame |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:04
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/polish In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/polish Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/polish/chat.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** chat.loc 2001/04/20 20:42:47 1.5 --- chat.loc 2001/04/30 22:44:59 1.6 *************** *** 175,183 **** // help popup ! define('L_HELP_TIT_1', 'U¶mieszki'); ! define('L_HELP_TIT_2', 'Formatowanie tekstu dla wiadomo¶ci'); define('L_HELP_FMT_1', 'Mo¿esz u¿ywaæ pogrubienia, pochylenia lub podkre¶lenia w wiadomo¶ciach u¿ywaj±c odpowiednich znaczników HTML: <b> </b>, <i> </i> lub <u> </u> tags.<br />Na przyk³ad, <b>ten tekst</b> wy¶wietli <b>ten tekst</b>.'); define('L_HELP_FMT_2', 'Aby utworzyæ link (dla adresu e-mail lub strony WWW) w twojej wiadomo¶ci po prostu podaj ten adres bez ¿adnych tagów HTML\'a. Odno¶nik zostanie stworzony automatycznie.'); ! define('L_HELP_TIT_3', 'Polecenia'); define('L_HELP_USR', 'u¿ytkownik(ów)'); define('L_HELP_MSG', 'wiadomo¶ci'); --- 175,182 ---- // help popup ! define('L_HELP_TIT_1', 'Formatowanie tekstu dla wiadomo¶ci'); define('L_HELP_FMT_1', 'Mo¿esz u¿ywaæ pogrubienia, pochylenia lub podkre¶lenia w wiadomo¶ciach u¿ywaj±c odpowiednich znaczników HTML: <b> </b>, <i> </i> lub <u> </u> tags.<br />Na przyk³ad, <b>ten tekst</b> wy¶wietli <b>ten tekst</b>.'); define('L_HELP_FMT_2', 'Aby utworzyæ link (dla adresu e-mail lub strony WWW) w twojej wiadomo¶ci po prostu podaj ten adres bez ¿adnych tagów HTML\'a. Odno¶nik zostanie stworzony automatycznie.'); ! define('L_HELP_TIT_2', 'Polecenia'); define('L_HELP_USR', 'u¿ytkownik(ów)'); define('L_HELP_MSG', 'wiadomo¶ci'); *************** *** 208,212 **** define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! //message frame define('L_NO_MSG', 'Aktualnie nie ma ¿adnych wiadomo¶ci...'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); --- 207,216 ---- define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! // smilies popup ! define('L_SMIL_TIT', 'U¶mieszki'); ! define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); ! define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); ! ! // message frame define('L_NO_MSG', 'Aktualnie nie ma ¿adnych wiadomo¶ci...'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); *************** *** 226,230 **** 'Carrot' => '#FF6600'); ! //ignored popup define('L_IGNOR_TIT', 'Zignorowany'); define('L_IGNOR_NON', 'brak ignorowanych u¿ytkowników'); --- 230,234 ---- 'Carrot' => '#FF6600'); ! // ignored popup define('L_IGNOR_TIT', 'Zignorowany'); define('L_IGNOR_NON', 'brak ignorowanych u¿ytkowników'); |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/dutch In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/dutch Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/dutch/chat.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** chat.loc 2001/04/20 20:42:46 1.5 --- chat.loc 2001/04/30 22:44:58 1.6 *************** *** 176,184 **** // help popup ! define('L_HELP_TIT_1', 'Smile'); ! define('L_HELP_TIT_2', 'Text codes voor de berichten'); define('L_HELP_FMT_1', 'Je kan bold, italic en onderline tekst gebruiken in bericht in de HTML codes zoals <b> </b>, <i> </i> of <u> </u> tags.<br />Ter voorbeeld, <b>deze tekst</b> wordt <b>deze tekst</b>.'); define('L_HELP_FMT_2', 'Om link te maken (voor e-mail of URL) in jouw bericht, kun je gemakkelijk jou adres zonder alle tags in te voeren. De URL zal dan automatisch aangemaakt.'); ! define('L_HELP_TIT_3', 'Commando\'s'); define('L_HELP_USR', 'gebruiker'); define('L_HELP_MSG', 'bericht'); --- 176,183 ---- // help popup ! define('L_HELP_TIT_1', 'Text codes voor de berichten'); define('L_HELP_FMT_1', 'Je kan bold, italic en onderline tekst gebruiken in bericht in de HTML codes zoals <b> </b>, <i> </i> of <u> </u> tags.<br />Ter voorbeeld, <b>deze tekst</b> wordt <b>deze tekst</b>.'); define('L_HELP_FMT_2', 'Om link te maken (voor e-mail of URL) in jouw bericht, kun je gemakkelijk jou adres zonder alle tags in te voeren. De URL zal dan automatisch aangemaakt.'); ! define('L_HELP_TIT_2', 'Commando\'s'); define('L_HELP_USR', 'gebruiker'); define('L_HELP_MSG', 'bericht'); *************** *** 210,214 **** define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! // message frame define('L_NO_MSG', 'Geen bericht'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); --- 209,218 ---- define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! // smilies popup ! define('L_SMIL_TIT', 'Smile'); ! define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); ! define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); ! ! // messages frame define('L_NO_MSG', 'Geen bericht'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/malay In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/malay Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/malay/chat.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** chat.loc 2001/04/20 20:42:47 1.6 --- chat.loc 2001/04/30 22:44:58 1.7 *************** *** 174,182 **** // help popup ! define('L_HELP_TIT_1', 'Senyuman'); ! define('L_HELP_TIT_2', 'Format teks untuk mesej'); define('L_HELP_FMT_1', 'Anda boleh meletakkan teks tebal, teks senget atau teks bergaris bawah didalam mesej anda dengan memasukkan teks tersebut didalam kurungan berserta dengan salah satu dari tag berikut <b> </b>,<i> </i> or <u> </u>.<br />Sebagai contohnya, <b>teks ini</b> akan menghasilkan <b>teks ini</b>.'); define('L_HELP_FMT_2', 'Untuk membuat pautan (untuk emel atau URL) di dalam mesej anda, cuma taipkan alamat emelnya tanpa sebarang tag. Pautannya akan dibuat dengan secara automatik.'); ! define('L_HELP_TIT_3', 'Arahan'); define('L_HELP_USR', 'pengguna'); define('L_HELP_MSG', 'mesej'); --- 174,181 ---- // help popup ! define('L_HELP_TIT_1', 'Format teks untuk mesej'); define('L_HELP_FMT_1', 'Anda boleh meletakkan teks tebal, teks senget atau teks bergaris bawah didalam mesej anda dengan memasukkan teks tersebut didalam kurungan berserta dengan salah satu dari tag berikut <b> </b>,<i> </i> or <u> </u>.<br />Sebagai contohnya, <b>teks ini</b> akan menghasilkan <b>teks ini</b>.'); define('L_HELP_FMT_2', 'Untuk membuat pautan (untuk emel atau URL) di dalam mesej anda, cuma taipkan alamat emelnya tanpa sebarang tag. Pautannya akan dibuat dengan secara automatik.'); ! define('L_HELP_TIT_2', 'Arahan'); define('L_HELP_USR', 'pengguna'); define('L_HELP_MSG', 'mesej'); *************** *** 206,209 **** --- 205,213 ---- define('L_HELP_CMD_20', 'Terangkan apa yang anda sedang lakukan tanpa merujuk kepada diri anda sendiri.'); define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); + + // smilies popup + define('L_SMIL_TIT', 'Senyuman'); + define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); + define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); // messages frame |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/icelandic In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/icelandic Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/icelandic/chat.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** chat.loc 2001/04/20 20:42:47 1.6 --- chat.loc 2001/04/30 22:44:58 1.7 *************** *** 175,183 **** // help popup ! define('L_HELP_TIT_1', 'Broskallar'); ! 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', 'Skipanir'); define('L_HELP_USR', 'notandi'); define('L_HELP_MSG', 'skilaboð'); --- 175,182 ---- // help popup ! define('L_HELP_TIT_1', '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_2', 'Skipanir'); define('L_HELP_USR', 'notandi'); define('L_HELP_MSG', 'skilaboð'); *************** *** 209,213 **** define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! //message frame define('L_NO_MSG', 'Engin skilaboð'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); --- 208,217 ---- define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! // smilies popup ! define('L_SMIL_TIT', 'Broskallar'); ! define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); ! define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); ! ! // messages frame define('L_NO_MSG', 'Engin skilaboð'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); *************** *** 227,231 **** 'Appelsínugulur' => '#FF6600'); ! //ignored popup define('L_IGNOR_TIT', 'Hunsaður'); define('L_IGNOR_NON', 'Enginn hunsaður notandi'); --- 231,235 ---- 'Appelsínugulur' => '#FF6600'); ! // ignored popup define('L_IGNOR_TIT', 'Hunsaður'); define('L_IGNOR_NON', 'Enginn hunsaður notandi'); |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/georgian In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/georgian Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/georgian/chat.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** chat.loc 2001/04/20 20:42:47 1.6 --- chat.loc 2001/04/30 22:44:58 1.7 *************** *** 179,187 **** // help popup ! define('L_HELP_TIT_1', 'ÓÌÀÉËÄÁÉ'); ! 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', 'ÁÒÞÀÍÄÁÄÁÉ'); define('L_HELP_USR', 'ÌÏÌáÌÀÒÄÁÄËÉ'); define('L_HELP_MSG', 'message'); --- 179,186 ---- // help popup ! define('L_HELP_TIT_1', '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_2', 'ÁÒÞÀÍÄÁÄÁÉ'); define('L_HELP_USR', 'ÌÏÌáÌÀÒÄÁÄËÉ'); define('L_HELP_MSG', 'message'); *************** *** 216,219 **** --- 215,223 ---- define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.'); define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); + + // smilies popup + define('L_SMIL_TIT', 'ÓÌÀÉËÄÁÉ'); + define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); + define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); // messages frame |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/danish In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/danish Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/danish/chat.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** chat.loc 2001/04/20 20:42:46 1.6 --- chat.loc 2001/04/30 22:44:58 1.7 *************** *** 174,182 **** // help popup ! define('L_HELP_TIT_1', 'Smiley\'er'); ! 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', 'Kommandoer'); define('L_HELP_USR', 'bruger'); define('L_HELP_MSG', 'besked'); --- 174,181 ---- // help popup ! define('L_HELP_TIT_1', '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_2', 'Kommandoer'); define('L_HELP_USR', 'bruger'); define('L_HELP_MSG', 'besked'); *************** *** 208,212 **** define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! //message frame define('L_NO_MSG', 'Ingen besked'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); --- 207,216 ---- define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! // smilies popup ! define('L_SMIL_TIT', 'Smiley\'er'); ! define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); ! define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); ! ! // messages frame define('L_NO_MSG', 'Ingen besked'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); *************** *** 226,230 **** 'Orange' => '#FF6600'); ! //ignored popup define('L_IGNOR_TIT', 'Ignoreret'); define('L_IGNOR_NON', 'Ingen ignoreret bruger'); --- 230,234 ---- 'Orange' => '#FF6600'); ! // ignored popup define('L_IGNOR_TIT', 'Ignoreret'); define('L_IGNOR_NON', 'Ingen ignoreret bruger'); |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/greek In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/greek Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/greek/chat.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** chat.loc 2001/04/20 20:42:47 1.6 --- chat.loc 2001/04/30 22:44:58 1.7 *************** *** 174,182 **** // help popup ! define('L_HELP_TIT_1', 'Aéóèçìáôüóçìá'); ! 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', 'ÅíôïëÝò'); define('L_HELP_USR', '÷ñÞóôçò'); define('L_HELP_MSG', 'message'); --- 174,181 ---- // help popup ! define('L_HELP_TIT_1', '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_2', 'ÅíôïëÝò'); define('L_HELP_USR', '÷ñÞóôçò'); define('L_HELP_MSG', 'message'); *************** *** 207,210 **** --- 206,214 ---- define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.'); define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); + + // smilies popup + define('L_SMIL_TIT', 'Aéóèçìáôüóçìá'); + define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); + define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); // messages frame |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:02
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/chinese_simplified In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/chinese_simplified Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/chinese_simplified/chat.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** chat.loc 2001/04/20 20:42:46 1.5 --- chat.loc 2001/04/30 22:44:58 1.6 *************** *** 175,183 **** // help popup ! define('L_HELP_TIT_1', '±íÇé·ûºÅ'); ! 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', '¿ÉÓÃÃüÁî'); define('L_HELP_USR', '¸öÓû§'); define('L_HELP_MSG', 'message'); --- 175,182 ---- // help popup ! define('L_HELP_TIT_1', '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_2', '¿ÉÓÃÃüÁî'); define('L_HELP_USR', '¸öÓû§'); define('L_HELP_MSG', 'message'); *************** *** 209,213 **** define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! //message frame define('L_NO_MSG', 'ÔÝÎÞÏûÏ¢'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); --- 208,217 ---- define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! // smilies popup ! define('L_SMIL_TIT', '±íÇé·ûºÅ'); ! define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); ! define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); ! ! // messages frame define('L_NO_MSG', 'ÔÝÎÞÏûÏ¢'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); *************** *** 227,231 **** '·Ûºì' => '#FF6600'); ! //ignored popup define('L_IGNOR_TIT', 'ÆÁ±ÎÓû§'); define('L_IGNOR_NON', '²»ÆÁ±ÎÓû§'); --- 231,235 ---- '·Ûºì' => '#FF6600'); ! // ignored popup define('L_IGNOR_TIT', 'ÆÁ±ÎÓû§'); define('L_IGNOR_NON', '²»ÆÁ±ÎÓû§'); |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:02
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/images In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/images Added Files: smilies_on.gif smilies_off.gif Log Message: Updated to the new 'input' frame --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a |
From: Lo?c C. <lo...@us...> - 2001-04-30 22:45:02
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/brazilian_portuguese In directory usw-pr-cvs1:/tmp/cvs-serv3139/chat/localization/brazilian_portuguese Modified Files: chat.loc Log Message: Updated to the new 'input' frame Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/brazilian_portuguese/chat.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** chat.loc 2001/04/20 20:42:46 1.6 --- chat.loc 2001/04/30 22:44:58 1.7 *************** *** 174,182 **** // help popup ! define('L_HELP_TIT_1', 'Emoticons'); ! define('L_HELP_TIT_2', 'Formatação de texto para mensagens'); define('L_HELP_FMT_1', 'Você pode usar texto bold (negrito), itálicos ou sublinhado colocando as tags <b> </b>, <i> </i> ou <u> </u> antes e depois de parte ou de todo o texto.<br />Exemplo: <b>este texto</b> vai gerar <b>este texto</b>.'); define('L_HELP_FMT_2', 'Para criar um link (para email ou URL) na sua mensagem, simplesmente digite o texto sem tag html alguma. O link será gerado automaticamente.'); ! define('L_HELP_TIT_3', 'Comandos'); define('L_HELP_USR', 'usuário'); define('L_HELP_MSG', 'mensagem'); --- 174,181 ---- // help popup ! define('L_HELP_TIT_1', 'Formatação de texto para mensagens'); define('L_HELP_FMT_1', 'Você pode usar texto bold (negrito), itálicos ou sublinhado colocando as tags <b> </b>, <i> </i> ou <u> </u> antes e depois de parte ou de todo o texto.<br />Exemplo: <b>este texto</b> vai gerar <b>este texto</b>.'); define('L_HELP_FMT_2', 'Para criar um link (para email ou URL) na sua mensagem, simplesmente digite o texto sem tag html alguma. O link será gerado automaticamente.'); ! define('L_HELP_TIT_2', 'Comandos'); define('L_HELP_USR', 'usuário'); define('L_HELP_MSG', 'mensagem'); *************** *** 208,212 **** define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! //message frame define('L_NO_MSG', 'Não existe atualmente nenhuma mensagem ...'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); --- 207,216 ---- define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.'); ! // smilies popup ! define('L_SMIL_TIT', 'Emoticons'); ! define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.'); ! define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.'); ! ! // messages frame define('L_NO_MSG', 'Não existe atualmente nenhuma mensagem ...'); define('L_TODAY_DWN', 'The messages that have been sent today start below'); *************** *** 226,230 **** 'Cenoura' => '#FF6600'); ! //ignored popup define('L_IGNOR_TIT', 'Ignorado'); define('L_IGNOR_NON', 'Nenhum usuário ignorado'); --- 230,234 ---- 'Cenoura' => '#FF6600'); ! // ignored popup define('L_IGNOR_TIT', 'Ignorado'); define('L_IGNOR_NON', 'Nenhum usuário ignorado'); |