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-07-05 19:39:32
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/install/languages In directory usw-pr-cvs1:/tmp/cvs-serv20060/chat/install/languages Modified Files: czech.setup.php3 Log Message: Font faces are taken into account in the CSS files ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/install/languages Index: czech.setup.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/install/languages/czech.setup.php3,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** czech.setup.php3 2001/07/04 22:52:53 1.4 --- czech.setup.php3 2001/07/05 19:39:29 1.5 *************** *** 6,10 **** $S_Charset = "iso-8859-2"; $S_FontSize = "10"; - $S_FontName = "helvetica, arial, geneva"; // Settings for setup.php3 file --- 6,9 ---- |
|
From: Lo?c C. <lo...@us...> - 2001-07-05 19:38:17
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/config
In directory usw-pr-cvs1:/tmp/cvs-serv19587/chat/config
Modified Files:
style.css.php3 start_page.css.php3 admin.css.php3
Log Message:
iso-8859-1 charset uses the same font faces than iso-8859-1
***** Bogus filespec: -
***** Bogus filespec: 0.14/chat/config
Index: style.css.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/config/style.css.php3,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** style.css.php3 2001/02/25 18:27:48 1.1.1.1
--- style.css.php3 2001/07/05 19:38:14 1.2
***************
*** 17,21 ****
<?php
}
! elseif ($Charset == "iso-8859-1")
{
?>
--- 17,21 ----
<?php
}
! elseif ($Charset == "iso-8859-1" || $Charset == "iso-8859-2")
{
?>
Index: start_page.css.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/config/start_page.css.php3,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** start_page.css.php3 2001/02/25 18:27:48 1.1.1.1
--- start_page.css.php3 2001/07/05 19:38:14 1.2
***************
*** 16,20 ****
$SpecialFont = "1";
}
! elseif ($Charset == "iso-8859-1")
{
$FontFace = "font-family: helvetica, arial, geneva, sans-serif;";
--- 16,20 ----
$SpecialFont = "1";
}
! elseif ($Charset == "iso-8859-1" || $Charset == "iso-8859-2")
{
$FontFace = "font-family: helvetica, arial, geneva, sans-serif;";
Index: admin.css.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/config/admin.css.php3,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** admin.css.php3 2001/02/25 18:27:47 1.1.1.1
--- admin.css.php3 2001/07/05 19:38:14 1.2
***************
*** 17,21 ****
<?php
}
! elseif ($Charset == "iso-8859-1")
{
?>
--- 17,21 ----
<?php
}
! elseif ($Charset == "iso-8859-1" || $Charset == "iso-8859-2")
{
?>
|
|
From: Lo?c C. <lo...@us...> - 2001-07-04 00:38:52
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib/database
In directory usw-pr-cvs1:/tmp/cvs-serv8139/chat/lib/database
Modified Files:
pgsql.lib.php3
Log Message:
Tried a fix for the bug #438170 (Connecting to postgres on port 5433)
***** Bogus filespec: -
***** Bogus filespec: 0.14/chat/lib/database
Index: pgsql.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib/database/pgsql.lib.php3,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** pgsql.lib.php3 2001/03/17 10:04:39 1.3
--- pgsql.lib.php3 2001/07/03 20:19:21 1.4
***************
*** 26,41 ****
if($this->Link_ID == 0)
{
! $options = "dbname=".$this->Database;
if ($this->Host)
{
! $tmp = split(":", $this->Host);
! if ($tmp[0])
{
! $options .= " host=".$tmp[0];
! if ($tmp[1]) $options .= " port=".$tmp[1];
}
}
! if ($this->User) $options .= " user=".$this->User;
! if ($this->Password) $options .= " password=".$this->Password;
$this->Link_ID = @pg_Connect($options);
if (!$this->Link_ID)
--- 26,48 ----
if($this->Link_ID == 0)
{
! $options = '';
if ($this->Host)
{
! $tmp = split(':', $this->Host);
! $options .= 'host=' . $tmp[0];
! if ($tmp[1])
{
! $options .= ' port=' . $tmp[1];
}
}
! $options .= ' dbname=' . $this->Database;
! if ($this->User)
! {
! $options .= ' user=' . $this->User;
! }
! if ($this->Password)
! {
! $options .= ' password=' . $this->Password;
! }
$this->Link_ID = @pg_Connect($options);
if (!$this->Link_ID)
|
|
From: Lo?c C. <lo...@us...> - 2001-07-02 19:54:22
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/docs
In directory usw-pr-cvs1:/tmp/cvs-serv19015
Modified Files:
changes.txt
Log Message:
Fixed a typo
***** Bogus filespec: -
***** Bogus filespec: 0.14/docs
Index: changes.txt
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/docs/changes.txt,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** changes.txt 2001/07/02 19:39:16 1.18
--- changes.txt 2001/07/02 19:54:19 1.19
***************
*** 15,21 ****
BUG FIXED : nicks containing dot characters can't be deleted/banished/updated
in the administration sheets
! BUG FIXED : when registered users used the '/join' command or on the link in an
! invitation messages they may loose their rights or be kicked off
! because of a wrong password encoding.
Bug fixed thanks to Tinou <ti...@ti...>.
ENHANCEMENT : some translations have been completed.
--- 15,21 ----
BUG FIXED : nicks containing dot characters can't be deleted/banished/updated
in the administration sheets
! BUG FIXED : when registered users used the '/join' command or clicked on the
! link in an invitation messages they may loose their rights or be
! kicked off because of a wrong password encoding.
Bug fixed thanks to Tinou <ti...@ti...>.
ENHANCEMENT : some translations have been completed.
|
|
From: Lo?c C. <lo...@us...> - 2001-07-02 19:39:19
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/docs
In directory usw-pr-cvs1:/tmp/cvs-serv14292/docs
Modified Files:
changes.txt
Log Message:
Prepare the 0.14.5 release
***** Bogus filespec: -
***** Bogus filespec: 0.14/docs
Index: changes.txt
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/docs/changes.txt,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** changes.txt 2001/06/12 18:46:37 1.17
--- changes.txt 2001/07/02 19:39:16 1.18
***************
*** 8,13 ****
! v 0.14.5-RC1 - 12/06/2001
! """""""""""""""""""""""""
BUG FIXED : two security issues has been fixed thanks to
--- 8,13 ----
! v 0.14.5 - 02/07/2001
! """""""""""""""""""""
BUG FIXED : two security issues has been fixed thanks to
|
|
From: Lo?c C. <lo...@us...> - 2001-07-02 19:39:19
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv14292/chat/lib
Modified Files:
release.lib.php3
Log Message:
Prepare the 0.14.5 release
***** Bogus filespec: -
***** Bogus filespec: 0.14/chat/lib
Index: release.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib/release.lib.php3,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** release.lib.php3 2001/06/08 17:47:16 1.9
--- release.lib.php3 2001/07/02 19:39:16 1.10
***************
*** 1,4 ****
<?php
define("APP_NAME", "phpMyChat"); // Application name
! define("APP_VERSION", "0.14.5-RC1"); // Application version number
?>
--- 1,4 ----
<?php
define("APP_NAME", "phpMyChat"); // Application name
! define("APP_VERSION", "0.14.5"); // Application version number
?>
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 20:47:24
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/dutch In directory usw-pr-cvs1:/tmp/cvs-serv32703/chat/localization/dutch Modified Files: admin.loc Log Message: Updated by Edwin van Vliet Index: admin.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/dutch/admin.loc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** admin.loc 2001/05/05 17:22:37 1.3 --- admin.loc 2001/07/01 20:47:21 1.4 *************** *** 4,8 **** // | phpMyChat version 0.15.0 | // +--------------------------------------------------------------------------+ ! // | Copyright (c) 2000-2001 The phpHeaven-team & the author | // +--------------------------------------------------------------------------+ // | License: GNU/GPL - http://www.gnu.org/copyleft/gpl.html | --- 4,8 ---- // | phpMyChat version 0.15.0 | // +--------------------------------------------------------------------------+ ! // | Copyright (c) 2000-2001 The phpHeaven-team & the authors | // +--------------------------------------------------------------------------+ // | License: GNU/GPL - http://www.gnu.org/copyleft/gpl.html | *************** *** 13,17 **** // | http://www.phpheaven.net/projects/phpMyChat/ | // | | ! // | Author: Sander Corbesir <ro...@ja...> | // +--------------------------------------------------------------------------+ // --- 13,18 ---- // | http://www.phpheaven.net/projects/phpMyChat/ | // | | ! // | Authors: Sander Corbesir <ro...@ja...> | ! // | Edwin van Vliet <web...@50...> | // +--------------------------------------------------------------------------+ // *************** *** 22,85 **** // extra header for charset ! define('A_CHARSET', 'iso-8859-1'); // medium font size in pt. ! define('A_FONT_SIZE', 10); // Top frame ! define('A_MENU_0', 'Administration for %s'); ! define('A_MENU_1', 'Registered users'); ! define('A_MENU_2', 'Banished users'); ! define('A_MENU_3', 'Clean rooms'); ! define('A_MENU_4', 'Send mails'); // Frame for registered users ! define('A_SHEET1_1', 'List of registered users and their permissions'); define('A_SHEET1_2', 'Gebruikersnaam'); define('A_SHEET1_3', 'Permissies'); ! define('A_SHEET1_4', 'Gemodereerde rooms'); ! define('A_SHEET1_5', 'Gemodereerde rooms worden geschijden door komma\'s (,) zonder spaties.'); ! define('A_SHEET1_6', 'Remove checked profiles'); define('A_SHEET1_7', 'Veranderen'); ! define('A_SHEET1_8', 'There is no registered user except yourself.'); ! define('A_SHEET1_9', 'Banish checked profiles'); ! define('A_SHEET1_10', 'Now you have to move to the banished users sheet to refine your choices.'); ! define('A_SHEET1_11', 'Last connection'); ! define('A_USER', 'Gebruikers'); ! define('A_MODER', 'Supervisor'); ! define('A_PAGE_CNT', 'Page %s of %s'); // Frame for banished users ! define('A_SHEET2_1', 'List of banished users and concerned rooms'); define('A_SHEET2_2', 'IP'); ! define('A_SHEET2_3', 'Concerned rooms'); ! define('A_SHEET2_4', 'Until'); ! define('A_SHEET2_5', 'no end'); ! define('A_SHEET2_6', 'rooms are splitted by comma without spaces (,) if they are less than 4, else the \'<b> * </b>\' sign<br />banish from all rooms.'); ! define('A_SHEET2_7', 'Remove banishment for checked user(s)'); ! define('A_SHEET2_8', 'There is no banished user.'); // Frame for cleaning rooms define('A_SHEET3_1', 'Lijst met alle beschikbare kamers'); ! define('A_SHEET3_2', 'Clean a \'non-default\' room will also remove all moderator<br />status for this room.'); ! define('A_SHEET3_3', 'Clean selected rooms'); ! define('A_SHEET3_4', 'There is no room to clean.'); // Frame for sending mails ! define('A_SHEET4_0', 'The \'C_ADM_SENDER\' and \'C_ADM_EMAIL\' constants<br />aren\'t defined inside the configuration file!'); ! define('A_SHEET4_1', 'Send e-mails'); ! define('A_SHEET4_2', 'To:'); ! define('A_SHEET4_3', 'Select all'); ! define('A_SHEET4_4', 'Subject:'); ! define('A_SHEET4_5', 'Messages:'); ! define('A_SHEET4_6', 'Start sending'); ! define('A_SHEET4_7', 'All e-mails have been sent.'); ! define('A_SHEET4_8', 'Some e-mails failed (see the list <a href="#mailErrors" class="errorLink">below</a>).'); ! define('A_SHEET4_9', 'Addresse(s), subject or message is missing!'); ! define('A_SHEET4_10', 'Priority :'); ! define('A_SHEET4_11', 'Low'); ! define('A_SHEET4_12', 'Normal'); ! define('A_SHEET4_13', 'Urgent'); ! define('A_SHEET4_14', 'List of the sendings that failed'); ! define('A_SHEET4_15', 'E-mail address'); ?> --- 23,86 ---- // extra header for charset ! define('L_CHARSET', 'iso-8859-1'); // medium font size in pt. ! define('L_FONT_SIZE', 10); // Top frame ! define('A_MENU_0', 'Administratie voor %s'); ! define('A_MENU_1', 'Geregistreerde gebruikers'); ! define('A_MENU_2', 'Geblokkeerde gebruikers'); ! define('A_MENU_3', 'Maak kamer leeg'); ! define('A_MENU_4', 'Verstuur e-mails'); // Frame for registered users ! define('A_SHEET1_1', 'Lijst met geregistreerde gebruikers en hun permissies'); define('A_SHEET1_2', 'Gebruikersnaam'); define('A_SHEET1_3', 'Permissies'); ! define('A_SHEET1_4', 'Gemodereerde kamers'); ! define('A_SHEET1_5', 'Gemodereerde kamers worden gescheiden door komma\'s (,) zonder spaties'); ! define('A_SHEET1_6', 'Verwijder gemarkeerde profielen'); define('A_SHEET1_7', 'Veranderen'); ! define('A_SHEET1_8', 'Er zijn geen andere geregistreerde gebruikers dan uzelf'); ! define('A_SHEET1_9', 'Blokkeer gemarkeerde profielen'); ! define('A_SHEET1_10', 'Ga nu naar de geblokkeerde gebruikers pagina om uw keuze te specificeren'); ! define('A_SHEET1_11', 'Laatste verbinding'); ! define('A_USER', 'Gebruiker'); ! define('A_MODER', 'Moderator'); ! define('A_PAGE_CNT', 'Pagina %s van %s'); // Frame for banished users ! define('A_SHEET2_1', 'Lijst met verbannen gebruikers en de betreffende kamers'); define('A_SHEET2_2', 'IP'); ! define('A_SHEET2_3', 'Betreffende kamers'); ! define('A_SHEET2_4', 'Tot'); ! define('A_SHEET2_5', 'ongelimiteerd'); ! define('A_SHEET2_6', 'kamers worden gescheiden door een komma zonder spaties (,) als er minder dan 4 zijn, anders het \'<b> * </b>\' teken<br />blokkeer uit alle kamers'); ! define('A_SHEET2_7', 'Verwijder alle restricties voor de gemarkeerde gebruiker'); ! define('A_SHEET2_8', 'Er zijn geen geblokkeerde gebruikers'); // Frame for cleaning rooms define('A_SHEET3_1', 'Lijst met alle beschikbare kamers'); ! define('A_SHEET3_2', 'Een \'niet-standaard\' kamer leegmaken zal ook alle moderator<br />permissies voor deze kamer verwijderen'); ! define('A_SHEET3_3', 'Maak geselecteerde kamers leeg'); ! define('A_SHEET3_4', 'Er is geen kamer om leeg te maken'); // Frame for sending mails ! define('A_SHEET4_0', 'De \'C_ADM_SENDER\' en \'C_ADM_EMAIL\' constanten<br />zijn niet gedefinieerd in het configuratiebestand!'); ! define('A_SHEET4_1', 'Verstuur e-mails'); ! define('A_SHEET4_2', 'Aan:'); ! define('A_SHEET4_3', 'Selecteer allemaal'); ! define('A_SHEET4_4', 'Onderwerp:'); ! define('A_SHEET4_5', 'Berichten:'); ! define('A_SHEET4_6', 'Begin met versturen'); ! define('A_SHEET4_7', 'Alle e-mails zijn verstuurd'); ! define('A_SHEET4_8', 'Sommige e-mails zijn niet verstuurd (bekijk de lijst <a href="#mailErrors" class="errorLink">hieronder</a>)'); ! define('A_SHEET4_9', 'Adres(sen), Onderwerp of Bericht ontbreekt!'); ! define('A_SHEET4_10', 'Prioriteit:'); ! define('A_SHEET4_11', 'Laag'); ! define('A_SHEET4_12', 'Normaal'); ! define('A_SHEET4_13', 'Dringend'); ! define('A_SHEET4_14', 'Lijst met berichten die niet verstuurd zijn'); ! define('A_SHEET4_15', 'E-mail adres'); ?> |
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:51
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/russian
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/russian
Modified Files:
chat.loc _chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/russian/chat.loc,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** chat.loc 2001/06/17 08:09:59 1.13
--- chat.loc 2001/07/01 10:38:46 1.14
***************
*** 175,179 ****
define('L_NO_ADMIN', 'Òîëüêî àäìèíèñòðàòîð ìîæåò èñïîëüçîâàòü ýòó êîìàíäó.');
define('L_ANNOUNCE', 'Îáúÿâëåíèå');
! define('L_INVITE', '%s ïðèãëàøàåò Âàñ â êîìíàòó <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\')">%s</a>.');
define('L_INVITE_REG', ' Âû äîëæíû áûòü çàðåãèñòðèðîâàíû â ÷àòå, ÷òîáû âîéòòè â ýòó êîìíàòó.');
define('L_INVITE_DONE', 'Âàøå ïðèãëàøåíèå áûëî îòïðàâëåíî %s.');
--- 175,179 ----
define('L_NO_ADMIN', 'Òîëüêî àäìèíèñòðàòîð ìîæåò èñïîëüçîâàòü ýòó êîìàíäó.');
define('L_ANNOUNCE', 'Îáúÿâëåíèå');
! define('L_INVITE', '%s ïðèãëàøàåò Âàñ â êîìíàòó <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%s</a>.');
define('L_INVITE_REG', ' Âû äîëæíû áûòü çàðåãèñòðèðîâàíû â ÷àòå, ÷òîáû âîéòòè â ýòó êîìíàòó.');
define('L_INVITE_DONE', 'Âàøå ïðèãëàøåíèå áûëî îòïðàâëåíî %s.');
Index: _chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/russian/_chat.loc,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** _chat.loc 2001/06/17 08:08:48 1.11
--- _chat.loc 2001/07/01 10:38:46 1.12
***************
*** 173,177 ****
define('L_NO_ADMIN', 'ôÏÌØËÏ ÁÄÍÉÎ ÍÏÖÅÔ ÉÓÐÏÌØÚÏ×ÁÔØ ÄÁÎÎÕÀ ËÏÍÁÎÄÕ.');
define('L_ANNOUNCE', 'ïÂßÑ×ÌÅÎÉÅ');
! define('L_INVITE', '%s ÐÒÉÇÌÁÛÁÅÔ ÷ÁÓ × <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\')">%s</a> ËÏÍÎÁÔÕ.');
define('L_INVITE_REG', ' You have to be registered to enter this room.');
define('L_INVITE_DONE', 'ðÒÉÇÌÁÛÅÎÉÅ ÞÁÔÌÁÎÕ %s ÏÔÐÒÁ×ÌÅÎÏ.');
--- 173,177 ----
define('L_NO_ADMIN', 'ôÏÌØËÏ ÁÄÍÉÎ ÍÏÖÅÔ ÉÓÐÏÌØÚÏ×ÁÔØ ÄÁÎÎÕÀ ËÏÍÁÎÄÕ.');
define('L_ANNOUNCE', 'ïÂßÑ×ÌÅÎÉÅ');
! define('L_INVITE', '%s ÐÒÉÇÌÁÛÁÅÔ ÷ÁÓ × <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%s</a> ËÏÍÎÁÔÕ.');
define('L_INVITE_REG', ' You have to be registered to enter this room.');
define('L_INVITE_DONE', 'ðÒÉÇÌÁÛÅÎÉÅ ÞÁÔÌÁÎÕ %s ÏÔÐÒÁ×ÌÅÎÏ.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:51
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/argentinian_spanish
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/argentinian_spanish
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/argentinian_spanish/chat.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** chat.loc 2001/06/10 14:57:48 1.2
--- chat.loc 2001/07/01 10:38:46 1.3
***************
*** 172,176 ****
define('L_NO_ADMIN', 'Solamente el administrador puede utilizar este comando.');
define('L_ANNOUNCE', 'ANUNCIO');
! define('L_INVITE', '%s solicitud para que ingrese al usuario a <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\')">%s</a> salón.');
define('L_INVITE_REG', ' Debes estar registrado para ingresar en este salón.');
define('L_INVITE_DONE', 'Su invitación ha sido enviada a %s.');
--- 172,176 ----
define('L_NO_ADMIN', 'Solamente el administrador puede utilizar este comando.');
define('L_ANNOUNCE', 'ANUNCIO');
! define('L_INVITE', '%s solicitud para que ingrese al usuario a <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%s</a> salón.');
define('L_INVITE_REG', ' Debes estar registrado para ingresar en este salón.');
define('L_INVITE_DONE', 'Su invitación ha sido enviada a %s.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:51
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/swedish
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/swedish
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/swedish/chat.loc,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** chat.loc 2001/06/10 14:57:50 1.10
--- chat.loc 2001/07/01 10:38:46 1.11
***************
*** 172,176 ****
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%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.');
--- 172,176 ----
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%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.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:51
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/slovak
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/slovak
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/slovak/chat.loc,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** chat.loc 2001/06/10 14:57:50 1.9
--- chat.loc 2001/07/01 10:38:46 1.10
***************
*** 174,178 ****
define('L_NO_ADMIN', 'Iba administrátor môe poui tento príkaz.');
define('L_ANNOUNCE', 'OZNÁMENIE');
! define('L_INVITE', '%s navrhuje aby ste preli do <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\')">%s</a> miestnosti.');
define('L_INVITE_REG', ' Pre vstup do tejto miestnosti musíte by zaregistrovaný.');
define('L_INVITE_DONE', 'Vae pozvanie bolo poslané uívate¾ovi %s.');
--- 174,178 ----
define('L_NO_ADMIN', 'Iba administrátor môe poui tento príkaz.');
define('L_ANNOUNCE', 'OZNÁMENIE');
! define('L_INVITE', '%s navrhuje aby ste preli do <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%s</a> miestnosti.');
define('L_INVITE_REG', ' Pre vstup do tejto miestnosti musíte by zaregistrovaný.');
define('L_INVITE_DONE', 'Vae pozvanie bolo poslané uívate¾ovi %s.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:51
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/thai
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/thai
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/thai/chat.loc,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** chat.loc 2001/06/10 14:57:50 1.10
--- chat.loc 2001/07/01 10:38:46 1.11
***************
*** 171,175 ****
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%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.');
--- 171,175 ----
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%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.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:51
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/turkish
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/turkish
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/turkish/chat.loc,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** chat.loc 2001/06/10 14:57:50 1.9
--- chat.loc 2001/07/01 10:38:46 1.10
***************
*** 172,176 ****
define('L_NO_ADMIN', 'Sadece administratör bu komutu kullanabilir.');
define('L_ANNOUNCE', 'ILAN..ILAN');
! define('L_INVITE', '%s sizi <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\')">%s</a> odasina davet ediyor.');
define('L_INVITE_REG', ' You have to be registered to enter this room.');
define('L_INVITE_DONE', 'Davetiniz %s e gönderildi.');
--- 172,176 ----
define('L_NO_ADMIN', 'Sadece administratör bu komutu kullanabilir.');
define('L_ANNOUNCE', 'ILAN..ILAN');
! define('L_INVITE', '%s sizi <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%s</a> odasina davet ediyor.');
define('L_INVITE_REG', ' You have to be registered to enter this room.');
define('L_INVITE_DONE', 'Davetiniz %s e gönderildi.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:51
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/portuguese
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/portuguese
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/portuguese/chat.loc,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** chat.loc 2001/06/10 14:57:49 1.9
--- chat.loc 2001/07/01 10:38:46 1.10
***************
*** 173,177 ****
define('L_NO_ADMIN', 'Só o administrador pode usar este comando.');
define('L_ANNOUNCE', 'ANUNCIAR');
! define('L_INVITE', '%s suggest you to join her/him into the <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%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.');
--- 173,177 ----
define('L_NO_ADMIN', 'Só o administrador pode usar este comando.');
define('L_ANNOUNCE', 'ANUNCIAR');
! define('L_INVITE', '%s suggest you to join her/him into the <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%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.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/romanian
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/romanian
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/romanian/chat.loc,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** chat.loc 2001/06/10 14:57:49 1.9
--- chat.loc 2001/07/01 10:38:46 1.10
***************
*** 185,189 ****
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%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.');
--- 185,189 ----
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%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.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/polish
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/polish
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/polish/chat.loc,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** chat.loc 2001/06/10 14:57:49 1.9
--- chat.loc 2001/07/01 10:38:46 1.10
***************
*** 173,177 ****
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%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.');
--- 173,177 ----
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%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.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/norwegian
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/norwegian
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/norwegian/chat.loc,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** chat.loc 2001/06/10 14:57:49 1.10
--- chat.loc 2001/07/01 10:38:46 1.11
***************
*** 172,176 ****
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%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.');
--- 172,176 ----
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%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.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/malay
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/malay
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/malay/chat.loc,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** chat.loc 2001/06/10 14:57:49 1.10
--- chat.loc 2001/07/01 10:38:46 1.11
***************
*** 172,176 ****
define('L_NO_ADMIN', 'Hanya pentadbir boleh menggunakan arahan ini.');
define('L_ANNOUNCE', 'PERHATIAN');
! define('L_INVITE', '%s meminta anda untuk memasuki <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\')">%s</a>bilik boraknya.');
define('L_INVITE_REG', ' Anda perlu menjadi pengguna berdaftar untuk memasuki bilik borak ini.');
define('L_INVITE_DONE', 'Jemputan anda telahpun dihantar kepada %s.');
--- 172,176 ----
define('L_NO_ADMIN', 'Hanya pentadbir boleh menggunakan arahan ini.');
define('L_ANNOUNCE', 'PERHATIAN');
! define('L_INVITE', '%s meminta anda untuk memasuki <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%s</a>bilik boraknya.');
define('L_INVITE_REG', ' Anda perlu menjadi pengguna berdaftar untuk memasuki bilik borak ini.');
define('L_INVITE_DONE', 'Jemputan anda telahpun dihantar kepada %s.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/korean
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/korean
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/korean/chat.loc,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** chat.loc 2001/06/10 14:57:49 1.9
--- chat.loc 2001/07/01 10:38:46 1.10
***************
*** 173,177 ****
define('L_NO_ADMIN', '°ü¸®ÀÚ¿¡°Ô¸¸ ÁÖ¾îÁø ¸í·ÉÀÔ´Ï´Ù.');
define('L_ANNOUNCE', '¾Ë¸²');
! define('L_INVITE', '%s´ÔÀÌ <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\')">%s</a> ¹æ¿¡¼ ´ç½ÅÀ» ÃÊûÇß½À´Ï´Ù.');
define('L_INVITE_REG', ' À̹濡 µé¾î°¡·Á¸é »ç¿ëÀÚµî·ÏÀÌ µÇ¾îÀÖ¾î¾ß ÇÕ´Ï´Ù.');
define('L_INVITE_DONE', '%s´ÔÀ» ÃÊûÇß½À´Ï´Ù.');
--- 173,177 ----
define('L_NO_ADMIN', '°ü¸®ÀÚ¿¡°Ô¸¸ ÁÖ¾îÁø ¸í·ÉÀÔ´Ï´Ù.');
define('L_ANNOUNCE', '¾Ë¸²');
! define('L_INVITE', '%s´ÔÀÌ <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%s</a> ¹æ¿¡¼ ´ç½ÅÀ» ÃÊûÇß½À´Ï´Ù.');
define('L_INVITE_REG', ' À̹濡 µé¾î°¡·Á¸é »ç¿ëÀÚµî·ÏÀÌ µÇ¾îÀÖ¾î¾ß ÇÕ´Ï´Ù.');
define('L_INVITE_DONE', '%s´ÔÀ» ÃÊûÇß½À´Ï´Ù.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/italian
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/italian
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/italian/chat.loc,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** chat.loc 2001/06/10 14:57:49 1.9
--- chat.loc 2001/07/01 10:38:46 1.10
***************
*** 177,181 ****
define('L_NO_SAVE', 'Nesun messaggio da salvare!');
define('L_ANNOUNCE', 'ANNUNCIO');
! define('L_INVITE', '%s ti invita ad unirti a lei/lui nella chat <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\')">%s</a>.');
define('L_INVITE_REG', ' Devi essere registrato per accedere in quest\'area.');
define('L_INVITE_DONE', 'Il tuo invito è stato inviato a %s.');
--- 177,181 ----
define('L_NO_SAVE', 'Nesun messaggio da salvare!');
define('L_ANNOUNCE', 'ANNUNCIO');
! define('L_INVITE', '%s ti invita ad unirti a lei/lui nella chat <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%s</a>.');
define('L_INVITE_REG', ' Devi essere registrato per accedere in quest\'area.');
define('L_INVITE_DONE', 'Il tuo invito è stato inviato a %s.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/japanese
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/japanese
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/japanese/chat.loc,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** chat.loc 2001/06/10 14:57:49 1.11
--- chat.loc 2001/07/01 10:38:46 1.12
***************
*** 172,176 ****
define('L_NO_ADMIN', '´ÉÍý¼Ô¤Î¤ß¤¬¤³¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤǤ¤Þ¤¹');
define('L_ANNOUNCE', '¥¢¥Ê¥¦¥ó¥¹');
! define('L_INVITE', '%s ¤¬¤¢¤Ê¤¿¤ò <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\')">%s</a> ¤Ë¾Ò²ð¤·¤Æ¤¤¤Þ¤¹.');
define('L_INVITE_REG', ' ¤³¤ÎÉô²°¤ËÆþ¤ë¤¿¤á¤Ë¤Ï¡¢ÅÐÏ¿¤¬É¬ÍפǤ¹');
define('L_INVITE_DONE', '¾·ÂÔʸ¤Ï¡¢%s ¤ËÁ÷¿®¤µ¤ì¤Þ¤·¤¿');
--- 172,176 ----
define('L_NO_ADMIN', '´ÉÍý¼Ô¤Î¤ß¤¬¤³¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤǤ¤Þ¤¹');
define('L_ANNOUNCE', '¥¢¥Ê¥¦¥ó¥¹');
! define('L_INVITE', '%s ¤¬¤¢¤Ê¤¿¤ò <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%s</a> ¤Ë¾Ò²ð¤·¤Æ¤¤¤Þ¤¹.');
define('L_INVITE_REG', ' ¤³¤ÎÉô²°¤ËÆþ¤ë¤¿¤á¤Ë¤Ï¡¢ÅÐÏ¿¤¬É¬ÍפǤ¹');
define('L_INVITE_DONE', '¾·ÂÔʸ¤Ï¡¢%s ¤ËÁ÷¿®¤µ¤ì¤Þ¤·¤¿');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/estonian
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/estonian
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/estonian/chat.loc,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** chat.loc 2001/06/10 14:57:48 1.10
--- chat.loc 2001/07/01 10:38:45 1.11
***************
*** 172,176 ****
define('L_NO_ADMIN', 'Ainult administraator saab seda käsku kasutada.');
define('L_ANNOUNCE', 'TEADE');
! define('L_INVITE', '%s palub sind enda juurde <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\')">%s</a> tuppa.');
define('L_INVITE_REG', ' Siia tuppa sisenemiseks pead olema registreerunud.');
define('L_INVITE_DONE', 'Sinu kutse on saadetud kasutajale %s.');
--- 172,176 ----
define('L_NO_ADMIN', 'Ainult administraator saab seda käsku kasutada.');
define('L_ANNOUNCE', 'TEADE');
! define('L_INVITE', '%s palub sind enda juurde <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%s</a> tuppa.');
define('L_INVITE_REG', ' Siia tuppa sisenemiseks pead olema registreerunud.');
define('L_INVITE_DONE', 'Sinu kutse on saadetud kasutajale %s.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/greek
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/greek
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/greek/chat.loc,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** chat.loc 2001/06/10 14:57:49 1.10
--- chat.loc 2001/07/01 10:38:46 1.11
***************
*** 172,176 ****
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%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.');
--- 172,176 ----
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%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.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/icelandic
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/icelandic
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/icelandic/chat.loc,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** chat.loc 2001/06/10 14:57:49 1.10
--- chat.loc 2001/07/01 10:38:46 1.11
***************
*** 173,177 ****
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%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.');
--- 173,177 ----
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%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.');
|
|
From: Lo?c C. <lo...@us...> - 2001-07-01 10:38:49
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/georgian
In directory usw-pr-cvs1:/tmp/cvs-serv19896/chat/localization/georgian
Modified Files:
chat.loc
Log Message:
Fixes a js error that caused a bug with the '/invite' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/georgian/chat.loc,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** chat.loc 2001/06/10 14:57:49 1.10
--- chat.loc 2001/07/01 10:38:45 1.11
***************
*** 177,181 ****
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%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.');
--- 177,181 ----
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="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%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.');
|