phpfreechat-svn Mailing List for phpFreeChat (Page 17)
Status: Beta
Brought to you by:
kerphi
You can subscribe to this list here.
2006 |
Jan
|
Feb
(2) |
Mar
|
Apr
(61) |
May
(56) |
Jun
(96) |
Jul
(23) |
Aug
(62) |
Sep
(76) |
Oct
(48) |
Nov
(28) |
Dec
(28) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(31) |
Feb
(40) |
Mar
(29) |
Apr
(11) |
May
(6) |
Jun
(18) |
Jul
(18) |
Aug
(108) |
Sep
(24) |
Oct
(6) |
Nov
(21) |
Dec
|
2008 |
Jan
|
Feb
(1) |
Mar
(16) |
Apr
|
May
(3) |
Jun
|
Jul
(7) |
Aug
(1) |
Sep
(3) |
Oct
|
Nov
(3) |
Dec
(2) |
2009 |
Jan
(2) |
Feb
|
Mar
(2) |
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
(1) |
Nov
|
Dec
(1) |
2010 |
Jan
(2) |
Feb
|
Mar
|
Apr
(6) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2018 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ke...@us...> - 2006-11-28 16:52:45
|
Revision: 879 http://svn.sourceforge.net/phpfreechat/?rev=879&view=rev Author: kerphi Date: 2006-11-28 08:52:37 -0800 (Tue, 28 Nov 2006) Log Message: ----------- [en] Hide the isadmin user metadata from the whois box. This parameter is useless because of the glod shield icon. [15min] [fr] Cache le param?\195?\168tre isadmin dans la boite whois car le bouclier en or suffit amplement pour montrer que l'utilisateur est administrateur. [15min] Modified Paths: -------------- trunk/src/client/pfcclient.js Modified: trunk/src/client/pfcclient.js =================================================================== --- trunk/src/client/pfcclient.js 2006-11-27 17:36:52 UTC (rev 878) +++ trunk/src/client/pfcclient.js 2006-11-28 16:52:37 UTC (rev 879) @@ -1014,6 +1014,7 @@ var k = um_keys[i]; var v = um[k]; if (v && k != 'nickid' + && k != 'isadmin' // useless because of the gold shield icon && k != 'floodtime' && k != 'flood_nbmsg' && k != 'flood_nbchar' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-27 17:36:53
|
Revision: 878 http://svn.sourceforge.net/phpfreechat/?rev=878&view=rev Author: kerphi Date: 2006-11-27 09:36:52 -0800 (Mon, 27 Nov 2006) Log Message: ----------- [en] New /invite command. Syntax is: /invite {nickname to invite} [{target channel}] (thanks to Benedikt Hallinger) [20min] [fr] Nouvelle commande /invite permettant d'inviter une personne dans un salon. La syntaxe de la commande est : /invite {pseudo a inviter} [{salon de destination}] (merci ?\195?\160 Benedikt Hallinger) [20min] Added Paths: ----------- trunk/src/commands/invite.class.php Added: trunk/src/commands/invite.class.php =================================================================== --- trunk/src/commands/invite.class.php (rev 0) +++ trunk/src/commands/invite.class.php 2006-11-27 17:36:52 UTC (rev 878) @@ -0,0 +1,82 @@ +<?php + +/** + * invite.class.php + * + * Copyright \xA9 2006 Stephane Gully <ste...@gm...> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301 USA + */ + +/** + * /invite command + * + * Invites other users into a channel + * Currently this is implemented as a "autojoin", so the invited user joins automatically. + * The parameter "target channel" is optional, if not set it defaults to the current channel + * + * @author Benedikt Hallinger <be...@ph...> + */ +class pfcCommand_invite extends pfcCommand +{ + var $usage = "/invite {nickname to invite} [{target channel}]"; + + function run(&$xml_reponse, $p) + { + $clientid = $p["clientid"]; + $param = $p["param"]; + $sender = $p["sender"]; + $recipient = $p["recipient"]; + $recipientid = $p["recipientid"]; + + $c =& $this->c; // pfcGlobalConfig + $u =& $this->u; // pfcUserConfig + $container =& $c->getContainerInstance(); // Connection to the chatbackend + + $p_array = split(' ', $param); // Split the parameters: [0]= targetnick, [1]=targetchannel + if (!isset($p_array[1])) $p_array[1] = $u->channels[$recipientid]["name"]; // Default: current channel + if (!isset($p_array[0]) || !isset($p_array[1])) + { + // Parameters not ok! + $cmdp = $p; + $cmdp["param"] = _pfc("Missing parameter"); + $cmdp["param"] .= " (".$this->usage.")"; + $cmd =& pfcCommand::Factory("error"); + $cmd->run($xml_reponse, $cmdp); + return; + } + + // inviting a user: just add a join command to play to the aimed user metadata. + $nickid = $container->getNickId($p_array[0]); // get the internal ID of that chatter + if ($nickid != "") + { + $cmdtoplay = $container->getUserMeta($nickid, 'cmdtoplay'); // get the users command queue + $cmdtoplay = ($cmdtoplay == NULL) ? array() : unserialize($cmdtoplay); + $cmdtmp = array("join", /* cmdname */ + $p_array[1], /* param */ + $sender, /* sender */ + $recipient, /* recipient */ + $recipientid,/* recipientid */ + ); + $cmdtoplay[] = $cmdtmp; // store the command in the queue + $container->setUserMeta($nickid, 'cmdtoplay', serialize($cmdtoplay)); // close and store the queue + + // Ok, the user is invited, now write something into the chat, so his tab opens + $container->write($recipient, 'SYSTEM', "notice", $p_array[0].' was invited by '.$sender); + } + } +} +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-23 15:40:41
|
Revision: 877 http://svn.sourceforge.net/phpfreechat/?rev=877&view=rev Author: kerphi Date: 2006-11-23 07:40:40 -0800 (Thu, 23 Nov 2006) Log Message: ----------- [en] Bug fix: some servers don't like 777 permissions and the chat was broken. I changed the proxy.php creation rights to 755. It should fix lot of "Error: the chat cannot be loaded!..." (thanks to Mirco D'Inc?\195?\160 - http://www.bellunodolomiti.it)[50min] [fr] Bug fix : certains serveurs n'acceptent pas les repertoires avec les droits 777 ce qui empechait de fonctionner le chat. J'ai donc change les droit de creation du fichier proxy.php et de ses repertoire a 755. Ceci devrait r?\195?\169soudre de nombreux probl?\195?\168mes "Error: the chat cannot be loaded!..." (merci ?\195?\160 Mirco D'Inc?\195?\160 - http://www.bellunodolomiti.it)[50min] Modified Paths: -------------- trunk/src/pfcglobalconfig.class.php trunk/src/pfctools.php Modified: trunk/src/pfcglobalconfig.class.php =================================================================== --- trunk/src/pfcglobalconfig.class.php 2006-11-21 18:12:57 UTC (rev 876) +++ trunk/src/pfcglobalconfig.class.php 2006-11-23 15:40:40 UTC (rev 877) @@ -412,12 +412,15 @@ $proxycontent = file_get_contents(dirname(__FILE__)."/client/proxy.php.tpl"); $proxycontent = str_replace("//%allowedpath%", $allowedpath_string, $proxycontent); if (!file_exists(dirname($proxyfile))) - @mkdir(dirname($proxyfile)); + mkdir_r(dirname($proxyfile)); if (file_exists($proxyfile) && !is_writable($proxyfile)) $this->errors[] = _pfc("'%s' must be writable", $proxyfile); else - @file_put_contents($proxyfile, $proxycontent); + { + file_put_contents($proxyfile, $proxycontent); + chmod( $proxyfile, 0755 ); // should fix problems on OVH mutualized servers + } } Modified: trunk/src/pfctools.php =================================================================== --- trunk/src/pfctools.php 2006-11-21 18:12:57 UTC (rev 876) +++ trunk/src/pfctools.php 2006-11-23 15:40:40 UTC (rev 877) @@ -112,7 +112,7 @@ } -function mkdir_r($path, $modedir = 0775) +function mkdir_r($path, $modedir = 0755) { // This function creates the specified directory using mkdir(). Note // that the recursive feature on mkdir() is broken with PHP 5.0.4 for @@ -146,7 +146,7 @@ * @param string $dest Destination path * @return bool Returns TRUE on success, FALSE on failure */ -function copy_r($source, $dest, $modedir = 0775, $modefile = 0664) +function copy_r($source, $dest, $modedir = 0755, $modefile = 0664) { // Simple copy for a file if (is_file($source)) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-21 18:13:14
|
Revision: 876 http://svn.sourceforge.net/phpfreechat/?rev=876&view=rev Author: kerphi Date: 2006-11-21 10:12:57 -0800 (Tue, 21 Nov 2006) Log Message: ----------- [en] Bug fix: on some servers (ex: free.fr), the file_exists php function throw a warning which break pfc [15min] [fr] Bug fix : sur certains serveurs (ex: free.fr), la fonction php file_exists produit un warning qui rend inutilisable pfc [15min] Modified Paths: -------------- trunk/src/pfccommand.class.php Modified: trunk/src/pfccommand.class.php =================================================================== --- trunk/src/pfccommand.class.php 2006-11-15 07:40:50 UTC (rev 875) +++ trunk/src/pfccommand.class.php 2006-11-21 18:12:57 UTC (rev 876) @@ -75,7 +75,7 @@ foreach($cmd_paths as $cp) { $cmd_filename = $cp."/".$cmd_name.".class.php"; - if (file_exists($cmd_filename)) require_once($cmd_filename); + if (@file_exists($cmd_filename)) require_once($cmd_filename); } } if (class_exists($cmd_classname)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-15 07:40:54
|
Revision: 875 http://svn.sourceforge.net/phpfreechat/?rev=875&view=rev Author: kerphi Date: 2006-11-14 23:40:50 -0800 (Tue, 14 Nov 2006) Log Message: ----------- [en] Fix a url parsing bug : the ~ character was ignored. (thanks to firebane) [15min] [fr] R?\195?\169soud un probl?\195?\168me de parsing des urls ayant le caract?\195?\168re ~ (merci ?\195?\160 firebane) [15min] Modified Paths: -------------- trunk/src/client/pfcclient.js Modified: trunk/src/client/pfcclient.js =================================================================== --- trunk/src/client/pfcclient.js 2006-11-15 07:30:57 UTC (rev 874) +++ trunk/src/client/pfcclient.js 2006-11-15 07:40:50 UTC (rev 875) @@ -1117,7 +1117,7 @@ var rx = null; // parse urls - var rx_url = new RegExp('(^|[^\\"])([a-z]+\:\/\/[a-z0-9.\\/\\?\\=\\&\\-\\_\\#:;%]*)([^\\"]|$)','ig'); + var rx_url = new RegExp('(^|[^\\"])([a-z]+\:\/\/[a-z0-9.\\~\\/\\?\\=\\&\\-\\_\\#:;%]*)([^\\"]|$)','ig'); var ttt = msg.split(rx_url); if (ttt.length > 1 && !navigator.appName.match("Explorer|Konqueror") && This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-15 07:31:10
|
Revision: 874 http://svn.sourceforge.net/phpfreechat/?rev=874&view=rev Author: kerphi Date: 2006-11-14 23:30:57 -0800 (Tue, 14 Nov 2006) Log Message: ----------- [en] Add the word-wrap CSS3 property to replace the dirty regex code in order to cut the long words. (thanks to firebane) [15min] [fr] Ajoute la r?\195?\168gle CSS3 word-wrap en remplacement des regex permettant de couper les mots. (merci ?\195?\160 firebane) [15min] Modified Paths: -------------- trunk/src/client/pfcclient.js trunk/themes/default/style.css Modified: trunk/src/client/pfcclient.js =================================================================== --- trunk/src/client/pfcclient.js 2006-11-14 13:19:22 UTC (rev 873) +++ trunk/src/client/pfcclient.js 2006-11-15 07:30:57 UTC (rev 874) @@ -1192,6 +1192,9 @@ rx = new RegExp('(^|[ :,;])'+RegExp.escape(this.nickname)+'([ :,;]|$)','gi'); msg = msg.replace(rx, '$1<strong>'+ this.nickname +'</strong>$2'); + + // this piece of code is replaced by the word-wrap CSS3 rule. + /* // don't allow to post words bigger than 65 caracteres // doesn't work with crappy IE and Konqueror ! rx = new RegExp('([^ \\:\\<\\>\\/\\&\\;]{60})','ig'); @@ -1206,6 +1209,7 @@ msg = msg + ttt[i] + ' '; } } + */ return msg; }, Modified: trunk/themes/default/style.css =================================================================== --- trunk/themes/default/style.css 2006-11-14 13:19:22 UTC (rev 873) +++ trunk/themes/default/style.css 2006-11-15 07:30:57 UTC (rev 874) @@ -96,6 +96,7 @@ /* WARNING: do not fix height in % because it will display blank screens on IE6 */ /* height: 100%;*/ overflow: auto; + word-wrap: break-word; } div.pfc_online { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-14 13:19:28
|
Revision: 873 http://svn.sourceforge.net/phpfreechat/?rev=873&view=rev Author: kerphi Date: 2006-11-14 05:19:22 -0800 (Tue, 14 Nov 2006) Log Message: ----------- rename ua_UA local to uk_UA (Ukrainian translation) Modified Paths: -------------- trunk/demo/demo36_in_ukrainian.php Added Paths: ----------- trunk/i18n/uk_UA/ Removed Paths: ------------- trunk/i18n/ua_UA/ Modified: trunk/demo/demo36_in_ukrainian.php =================================================================== --- trunk/demo/demo36_in_ukrainian.php 2006-11-13 21:35:31 UTC (rev 872) +++ trunk/demo/demo36_in_ukrainian.php 2006-11-14 13:19:22 UTC (rev 873) @@ -3,7 +3,7 @@ require_once dirname(__FILE__)."/../src/phpfreechat.class.php"; $params["serverid"] = md5(__FILE__); // calculate a unique id for this chat -$params["language"] = "ua_UA"; +$params["language"] = "uk_UA"; $chat = new phpFreeChat( $params ); ?> Copied: trunk/i18n/uk_UA (from rev 872, trunk/i18n/ua_UA) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-13 21:35:45
|
Revision: 872 http://svn.sourceforge.net/phpfreechat/?rev=872&view=rev Author: kerphi Date: 2006-11-13 13:35:31 -0800 (Mon, 13 Nov 2006) Log Message: ----------- new translations areminian and bangla Modified Paths: -------------- trunk/demo/demo52_in_bangla.php trunk/demo/demo53_in_armenian.php trunk/i18n/bn_BD/main.php trunk/i18n/hy_AM/main.php Modified: trunk/demo/demo52_in_bangla.php =================================================================== --- trunk/demo/demo52_in_bangla.php 2006-11-13 17:43:16 UTC (rev 871) +++ trunk/demo/demo52_in_bangla.php 2006-11-13 21:35:31 UTC (rev 872) @@ -1,4 +1,4 @@ -<?php +<?php require_once dirname(__FILE__)."/../src/phpfreechat.class.php"; Modified: trunk/demo/demo53_in_armenian.php =================================================================== --- trunk/demo/demo53_in_armenian.php 2006-11-13 17:43:16 UTC (rev 871) +++ trunk/demo/demo53_in_armenian.php 2006-11-13 21:35:31 UTC (rev 872) @@ -1,4 +1,4 @@ -<?php +<?php require_once dirname(__FILE__)."/../src/phpfreechat.class.php"; Modified: trunk/i18n/bn_BD/main.php =================================================================== --- trunk/i18n/bn_BD/main.php 2006-11-13 17:43:16 UTC (rev 871) +++ trunk/i18n/bn_BD/main.php 2006-11-13 21:35:31 UTC (rev 872) @@ -2,7 +2,7 @@ /** * i18n/bn_BD/main.php * - * Copyright \xA9 2006 Stephane Gully + * Copyright © 2006 Stephane Gully * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -26,6 +26,284 @@ * @author Shuvro Prakash Paul */ +// line 45 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["My Chat"] = "আমার আড্ডা"; +// line 201 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s not found, %s library can't be found."] = "%s কে পাওয়া যায় নি , %s লাইব্রেরী খুঁজে পাওয়া গেল না।"; -?> \ No newline at end of file +// line 355 in phpfreechat.class.php +$GLOBALS["i18n"]["Please enter your nickname"] = "আপনার ডাকনাম লিখুন"; + +// line 565 in phpfreechat.class.php +$GLOBALS["i18n"]["Text cannot be empty"] = "টেক্সট ফাঁকা রাখা যাবে না"; + +// line 392 in phpfreechat.class.php +$GLOBALS["i18n"]["%s changes his nickname to %s"] = " জনাব/বেগম %s তার নাম পরিবর্তন করে রেখেছেন %s"; + +// line 398 in phpfreechat.class.php +$GLOBALS["i18n"]["%s is connected"] = "%s সংযুক্ত"; + +// line 452 in phpfreechat.class.php +$GLOBALS["i18n"]["%s quit"] = "%s ক্ষান্ত দাও"; + +// line 468 in phpfreechat.class.php +$GLOBALS["i18n"]["%s disconnected (timeout)"] = "%s সংযোগ বিচ্ছিন্ন (টাইম আউট)"; + +// line 262 in phpfreechat.class.php +$GLOBALS["i18n"]["Unknown command [%s]"] = "অজানা নির্দেশ (কমান্ড)[%s]"; + +// line 149 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s doesn't exist: %s"] = "%sএর কোন অস্তিত্ত্ব নেই: %s"; + +// line 180 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["You need %s"] = "আপনার প্রয়োজন %s"; + +// line 241 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s doesn't exist, %s library can't be found"] = "%s অস্তিত্ত্বহীন, %s লাইব্রেরী খুঁজে পাওয়া গেল না।"; + +// line 280 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s doesn't exist"] = "%s অস্তিত্ত্বহীন"; + +// line 433 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s directory must be specified"] = "%s ডিরেক্টরী অবশ্যই উল্লেখ করতে হবে"; + +// line 439 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s must be a directory"] = "%s কে অবশ্যই একটি ডিরেক্টরী হতে হবে"; + +// line 446 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s can't be created"] = "%s কে তৈরী করা সম্ভব নয়।"; + +// line 451 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s is not writeable"] = "%s লেখন উপযোগী নয়।"; + +// line 496 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s is not readable"] = "%s পঠন উপযোগী নয়।"; + +// line 469 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s is not a file"] = "%s টি কোন ফাইল নয়"; + +// line 491 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s is not a directory"] = "%s টি কোন ডিরেক্টরী নয়।"; + +// line 23 in chat.html.tpl.php +$GLOBALS["i18n"]["PHP FREE CHAT [powered by phpFreeChat-%s]"] = "পিএইচপি ফ্রি চ্যাট[phpFreeChat এর দ্বারা চালিত-%s]"; + +// line 296 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Hide nickname marker"] = "ডাকনামের রং লুকাও"; + +// line 304 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Show nickname marker"] = "ডাকনামের রং দেখাও"; + +// line 389 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Disconnect"] = "সংযোগ বিচ্ছিন্ন কর "; + +// line 395 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Connect"] = "সংযোগ কর"; + +// line 427 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Magnify"] = "বিবর্ধন কর"; + +// line 434 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Cut down"] = "কেটে ফেল"; + +// line 345 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Hide dates and hours"] = "তারিখ আর সময় লুকাও"; + +// line 353 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Show dates and hours"] = "তারিখ আর সময় দেখাও"; + +// line 21 in chat.html.tpl.php +$GLOBALS["i18n"]["Enter your message here"] = "আপনার বার্তা এখানে লিখুন"; + +// line 24 in chat.html.tpl.php +$GLOBALS["i18n"]["Enter your nickname here"] = "আপনার ডাকনাম এখানে লিখুন"; + +// line 93 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["Error: undefined or obsolete parameter '%s', please correct or remove this parameter"] = "সমস্যা: অনির্ধারিত বা অসংজ্ঞায়িত মান '%s', দয়া করে এই মান সঠিক ভাবে লিখুন কিংবা মুছে ফেলুন "; + +// line 86 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Hide smiley box"] = "স্মাইলি লুকাও"; + +// line 87 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Show smiley box"] = "স্মাইলি দেখাও"; + +// line 88 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Hide online users box"] = "অনলাইনে থাকা ব্যাবহারকারী তালিকা লুকাও"; + +// line 89 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Show online users box"] = "অনলাইনে থাকা ব্যাবহারকারী তালিকা দেখাও"; + +// line 33 in chat.html.tpl.php +$GLOBALS["i18n"]["Bold"] = "গাঢ়"; + +// line 34 in chat.html.tpl.php +$GLOBALS["i18n"]["Italics"] = "ডানদিকে বাঁকানো"; + +// line 35 in chat.html.tpl.php +$GLOBALS["i18n"]["Underline"] = "নিম্নরেখাঙ্কন"; + +// line 36 in chat.html.tpl.php +$GLOBALS["i18n"]["Delete"] = "মুছে ফেল"; + +// line 37 in chat.html.tpl.php +$GLOBALS["i18n"]["Pre"] = "পূর্ব"; + +// line 38 in chat.html.tpl.php +$GLOBALS["i18n"]["Mail"] = "মেইল"; + +// line 39 in chat.html.tpl.php +$GLOBALS["i18n"]["Color"] = "রং"; + +// line 48 in phpfreechattemplate.class.php +$GLOBALS["i18n"]["%s template could not be found"] = "%s ছাঁদটি (টেমপ্লেট) খুঁজে পাওয়া গেল না।"; + +// line 512 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your themepath '%s' and your theme '%s' are correct"] = "সমস্যা : '%s' খুঁজে পাওয়া যায় নি , দয়া করে আপনার থীমের path '%s' পরখ করে দেখুন আপনার '%s' থীমগুলি সঠিক কি না"; + +// line 75 in pfccommand.class.php +$GLOBALS["i18n"]["%s must be implemented"] = "%s অবশ্যই বাস্তবায়ন করতে হবে"; + + +// line 343 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["'%s' parameter is mandatory by default use '%s' value"] = "'%s' এর মান অবশ্যই থাকতে হবে। পূর্বনির্ধারিত মান হিসাবে '%s' ব্যাবহার করুন "; + +// line 378 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["'%s' parameter must be a positive number"] = "'%s' এর মান অবশ্যই ধনাত্মক সংখ্যা হতে হবে"; + +// line 386 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["'%s' parameter is not valid. Available values are : '%s'"] = "'%s' মান টি সঠিক নয়. অন্যান্য সুলভ মান হলো: '%s'"; + +// line 185 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["My room"] = "আমার কক্ষ"; + +// line 109 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Private message"] = "ব্যাক্তিগত বার্তা"; + +// line 110 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Close this tab"] = "এই ট্যাবটি বন্ধ কর "; + +// line 225 in pfcgui.js.tpl.php +$GLOBALS["i18n"]["Do you really want to leave this room ?"] = "আপনি কি সত্যি সত্যি এই কক্ষ পরিত্যাগ করতে চান ?"; + +// line 19 in unban.class.php +$GLOBALS["i18n"]["Missing parameter"] = "হারানো মান "; + +// line 38 in ban.class.php +$GLOBALS["i18n"]["banished from %s by %s"] = " %s থেকে %s banish করেছে"; + +// line 23 in banlist.class.php +$GLOBALS["i18n"]["The banished user's id list is:"] = " banished ব্যবহার কারীর ID তালিকা :"; + +// line 32 in banlist.class.php +$GLOBALS["i18n"]["Empty"] = " খালি কর"; + +// line 34 in banlist.class.php +$GLOBALS["i18n"]["'/unban {id}' will unban the user identified by {id}"] = "'/unban {id}' নির্দেশটি এই {id} ব্যবহারকারী কে unban করবে "; + +// line 35 in banlist.class.php +$GLOBALS["i18n"]["'/unban all' will unban all the users on this channel"] = "'/unban all' নির্দেশটি এই চ্যানেলের সমস্ত ব্যাবহারকারী কে unban করবে "; + +// line 24 in update.class.php +$GLOBALS["i18n"]["%s quit (timeout)"] = "%s ক্ষান্ত (টাইম আউট)"; + +// line 46 in join.class.php +$GLOBALS["i18n"]["%s joins %s"] = "%s %s তে যোগ দিয়েছে"; + +// line 31 in kick.class.php +$GLOBALS["i18n"]["kicked from %s by %s"] = " %s থেকে %s বের করে দিয়েছে"; + +// line 38 in send.class.php +$GLOBALS["i18n"]["Can't send the message, %s is offline"] = "বার্তা পাঠানো যাচ্ছে না, %s এখন অফলাইনে"; + +// line 27 in unban.class.php +$GLOBALS["i18n"]["Nobody has been unbanished"] = "কাউকে unbanish করা হয় নি।"; + +// line 42 in unban.class.php +$GLOBALS["i18n"]["%s has been unbanished"] = "%s কে unbanish করা হয়েছে"; + +// line 49 in unban.class.php +$GLOBALS["i18n"]["%s users have been unbanished"] = "%s জন ব্যবহারকারী কে unbanish করা হয়েছে"; + +// line 47 in auth.class.php +$GLOBALS["i18n"]["You are not allowed to run '%s' command"] = "আপনাকে এই '%s' নির্দেশচালানোর অনুমতি দেওয়া হয় নি।"; + +// line 67 in auth.class.php +$GLOBALS["i18n"]["Can't join %s because you are banished"] = " %s তে যোগ দিতে পারবেন না, যেহেতু আপনাকে banish করা হয়েছে"; + +// line 79 in auth.class.php +$GLOBALS["i18n"]["You are not allowed to change your nickname"] = "আপনি আপনার ডাকনাম বদলাতে পারবেন না।"; + +// line 76 in auth.class.php +$GLOBALS["i18n"]["Can't join %s because the channels list is restricted"] = " %s এ যোগ দিতে পারবেন না কেননা চ্যানেল তালিকার অধিকার সংরক্ষিত"; + +// line 56 in noflood.class.php +$GLOBALS["i18n"]["Please don't post so many message, flood is not tolerated"] = "এত বেশি বেশী বার্তা লিখবেন না। ফ্লাডিং সহ্য করা হবে না।"; + +// line 169 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' is a private parameter, you are not allowed to change it"] = "সমস্যা: '%s' মান টি ব্যাক্তিগত । এটা পরিবর্তনের অধিকার আপনার নেই।"; + +// line 253 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' parameter must be an array"] = "'%s' এর মান অবশ্যই একটি array হতে হবে"; + +// line 265 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' parameter must be a boolean"] = "'%s' এর মান অবশ্যই একটি বুলিয়ান মান হতে হবে"; + +// line 271 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' parameter must be a charatere string"] = "'%s' এর মান অবশ্যই charatere স্ট্রিং হতে হবে"; + +// line 395 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' must be writable"] = "'%s' কে অবশ্যই লেখার যোগ্য হতে হবে"; + +// line 425 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' directory doesn't exist"] = "'%s'ডিরেক্টরী অস্তিত্ত্বহীন"; + +// line 544 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Please correct these errors"] = "দয়া করে এই সমস্যাগুলোর সমাধান করুন"; + +// line 21 in pfcinfo.class.php +$GLOBALS["i18n"]["Error: the cached config file doesn't exists"] = "সমস্যা: cached config ফাইলটির অস্তিত্ত্ব নেই"; + +// line 190 in phpfreechat.class.php +$GLOBALS["i18n"]["Error: the chat cannot be loaded! two possibilities: your browser doesn't support javascript or you didn't setup correctly the server directories rights - don't hesitate to ask some help on the forum"] = "সমস্যা: আড্ডা লোড করা যাচ্ছে না। দুইটা সম্ভাবনা থাকতে পারে :হয় আপনার ব্রাউজার জাভাস্ক্রীপ্ট সাপোর্ট করে না নয়তো সার্ভার ডিরেক্টরীর অধিকার আপনি সঠিকভাবে সেটআপ করেননি। আলোচনা চক্রে যে কোন সাহায্যের জন্য আসুন ;ইতস্তত: বোধ করার কিছু নেই।"; + +// line 31 in help.class.php +$GLOBALS["i18n"]["Here is the command list:"] = "এই হলো নির্দেশ(কমান্ড) তালিকা:"; + +// line 63 in identify.class.php +$GLOBALS["i18n"]["Succesfully identified"] = " সনাক্তকরণ সফল হয়েছে"; + +// line 68 in identify.class.php +$GLOBALS["i18n"]["Identification failure"] = "সনাক্তকরণ ব্যর্থ"; + +// line 25 in send.class.php +$GLOBALS["i18n"]["Your must be connected to send a message"] = "বার্তা পাঠাতে হলে অবশ্যই আপনাকে সংযুক্ত হতে হবে"; + +// line 87 in chat.js.tpl.php +$GLOBALS["i18n"]["Click here to send your message"] = "বার্তা পাঠাতে এখানে ক্লিক করুন"; + +// line 80 in chat.js.tpl.php +$GLOBALS["i18n"]["Enter the text to format"] = "ফরম্যাট করতে টেক্সট লিখুন"; + +// line 81 in chat.js.tpl.php +$GLOBALS["i18n"]["Configuration has been rehashed"] = "কনফিগারেশন কে rehash করা হয়েছে"; + +// line 82 in chat.js.tpl.php +$GLOBALS["i18n"]["A problem occurs during rehash"] = " Rehash করার সময় সমস্যা দেখা দিচ্ছে"; + +// line 83 in chat.js.tpl.php +$GLOBALS["i18n"]["Choosen nickname is allready used"] = "পছন্দের ডাকনামটি আগেই কেউ নিয়ে নিয়েছে"; + +// line 84 in chat.js.tpl.php +$GLOBALS["i18n"]["phpfreechat current version is %s"] = "phpfreechat এর বর্তমান ভার্সন হলো %s"; + +// line 85 in chat.js.tpl.php +$GLOBALS["i18n"]["Maximum number of joined channels has been reached"] = "যোগ দেওয়া চ্যানেলের সংখ্যা সর্বোচ্চ সীমায় পৌঁছে গিয়েছে।"; + +// line 86 in chat.js.tpl.php +$GLOBALS["i18n"]["Maximum number of private chat has been reached"] = "ব্যাক্তিগত আড্ডার সংখ্যা সর্বোচ্চ সীমায় পৌঁছে গিয়েছে"; + +// line 88 in chat.js.tpl.php +$GLOBALS["i18n"]["Send"] = "পাঠাও"; + +?> Modified: trunk/i18n/hy_AM/main.php =================================================================== --- trunk/i18n/hy_AM/main.php 2006-11-13 17:43:16 UTC (rev 871) +++ trunk/i18n/hy_AM/main.php 2006-11-13 21:35:31 UTC (rev 872) @@ -1,4 +1,4 @@ -<?php +<?php /** * i18n/hy_AM/main.php * @@ -308,4 +308,4 @@ // line 88 in chat.js.tpl.php $GLOBALS["i18n"]["Send"] = "Ասել"; -?> \ No newline at end of file +?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-13 17:43:29
|
Revision: 871 http://svn.sourceforge.net/phpfreechat/?rev=871&view=rev Author: kerphi Date: 2006-11-13 09:43:16 -0800 (Mon, 13 Nov 2006) Log Message: ----------- New Armenian translation (work in progress) Modified Paths: -------------- trunk/demo/demo52_in_bangla.php trunk/demo/index.php Added Paths: ----------- trunk/demo/demo53_in_armenian.php trunk/i18n/hy_AM/ trunk/i18n/hy_AM/main.php Modified: trunk/demo/demo52_in_bangla.php =================================================================== --- trunk/demo/demo52_in_bangla.php 2006-11-13 17:36:30 UTC (rev 870) +++ trunk/demo/demo52_in_bangla.php 2006-11-13 17:43:16 UTC (rev 871) @@ -1,4 +1,4 @@ -<?php +<?php require_once dirname(__FILE__)."/../src/phpfreechat.class.php"; Added: trunk/demo/demo53_in_armenian.php =================================================================== --- trunk/demo/demo53_in_armenian.php (rev 0) +++ trunk/demo/demo53_in_armenian.php 2006-11-13 17:43:16 UTC (rev 871) @@ -0,0 +1,36 @@ +<?php + +require_once dirname(__FILE__)."/../src/phpfreechat.class.php"; + +$params["serverid"] = md5(__FILE__); // calculate a unique id for this chat +$params["language"] = "hy_AM"; +$chat = new phpFreeChat( $params ); + +?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html> + <head> + <meta http-equiv="content-type" content="text/html; charset=utf-8" /> + <title>phpFreeChat demo</title> + + <?php $chat->printJavascript(); ?> + <?php $chat->printStyle(); ?> + + </head> + + <body> + <?php $chat->printChat(); ?> + +<?php + // print the current file + echo "<h2>The source code</h2>"; + $filename = __FILE__; + echo "<p><code>".$filename."</code></p>"; + echo "<pre style=\"margin: 0 50px 0 50px; padding: 10px; background-color: #DDD;\">"; + $content = file_get_contents($filename); + echo htmlentities($content); + echo "</pre>"; +?> + + </body> +</html> Modified: trunk/demo/index.php =================================================================== --- trunk/demo/index.php 2006-11-13 17:36:30 UTC (rev 870) +++ trunk/demo/index.php 2006-11-13 17:43:16 UTC (rev 871) @@ -119,6 +119,7 @@ <li><a href="demo46_in_hungarian.php">demo46 - the Hungarian translation of the chat</a></li> <li><a href="demo47_in_polish.php">demo47 - the Polish translation of the chat</a></li> <li><a href="demo52_in_bangla.php">demo52 - the Bangla translation of the chat</a></li> + <li><a href="demo53_in_armenian.php">demo53 - the Armenian translation of the chat</a></li> </ul> </div> Added: trunk/i18n/hy_AM/main.php =================================================================== --- trunk/i18n/hy_AM/main.php (rev 0) +++ trunk/i18n/hy_AM/main.php 2006-11-13 17:43:16 UTC (rev 871) @@ -0,0 +1,311 @@ +<?php +/** + * i18n/hy_AM/main.php + * + * Copyright © 2006 Stephane Gully + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301 USA + */ + +/** + * Armenian translation of the messages (utf8 encoded!) + * + * @author Shadowed + */ + +$GLOBALS["i18n"]["My Chat"] = "Իմ չատը"; + +// line 201 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s not found, %s library can't be found."] = "%s գոյություն չունի, %s գրադարանը բացակայում է"; + +// line 355 in phpfreechat.class.php +$GLOBALS["i18n"]["Please enter your nickname"] = "Խնդրում ենք ներմուծել Ձեր ծածկանունը"; + +// line 565 in phpfreechat.class.php +$GLOBALS["i18n"]["Text cannot be empty"] = "Տեքստը չի կարող դատարկ լինել"; + +// line 392 in phpfreechat.class.php +$GLOBALS["i18n"]["%s changes his nickname to %s"] = "%s անունով անձը փոխեց իր ծածկանունը %s -ի"; + +// line 398 in phpfreechat.class.php +$GLOBALS["i18n"]["%s is connected"] = "%s անունով անձը ցանցում է"; + +// line 452 in phpfreechat.class.php +$GLOBALS["i18n"]["%s quit"] = "%s անունով անձը հեռացավ"; + +// line 468 in phpfreechat.class.php +$GLOBALS["i18n"]["%s disconnected (timeout)"] = "%s անունով անձը դուրս ընկավ (timeout)"; + +// line 262 in phpfreechat.class.php +$GLOBALS["i18n"]["Unknown command [%s]"] = "Անհայտ հրաման [%s]"; + +// line 149 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s doesn't exist: %s"] = "%s գոյություն չունի` %s"; + +// line 180 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["You need %s"] = "Ձեզ անհրաժեշտ է %s"; + +// line 241 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s doesn't exist, %s library can't be found"] = "%s գոյություն չունի, %s գրադարանը բացակայում է"; + +// line 280 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s doesn't exist"] = "%s գոյություն չունի"; + +// line 433 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s directory must be specified"] = "%s ուղին պետք է սահմանված լինի"; + +// line 439 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s must be a directory"] = "%s -ը պետք է ուղի հանդիսանա"; + +// line 446 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s can't be created"] = "%s -ը անհնար է ստեղծել"; + +// line 451 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s is not writeable"] = "%s -ը հասանելի չէ գրելու համար"; + +// line 496 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s is not readable"] = "%s -ը հասանելի չէ կարդալու համար"; + +// line 469 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s is not a file"] = "%s -ը ֆայլ չի հանդիսանում"; + +// line 491 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s is not a directory"] = "%s -ը ուղի չի հանդիսանում"; + +// line 23 in chat.html.tpl.php +$GLOBALS["i18n"]["PHP FREE CHAT [powered by phpFreeChat-%s]"] = " "; + +// line 296 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Hide nickname marker"] = "Թաքցնել ծածկանունների գույները"; + +// line 304 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Show nickname marker"] = "Ցույց տալ ծածկանունների գույները"; + +// line 389 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Disconnect"] = "Անջատվել"; + +// line 395 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Connect"] = "Միանալ"; + +// line 427 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Magnify"] = "Բացել"; + +// line 434 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Cut down"] = "Փակել"; + +// line 345 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Hide dates and hours"] = "Թաքցնել ամսաթվերն ու ժամերը"; + +// line 353 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Show dates and hours"] = "Ցույց տալ ամսաթվերն ու ժամերը"; + +// line 21 in chat.html.tpl.php +$GLOBALS["i18n"]["Enter your message here"] = "Ներմուծեք Ձեր հաղորդագրությունն այստեղ"; + +// line 24 in chat.html.tpl.php +$GLOBALS["i18n"]["Enter your nickname here"] = "Ներմուծեք Ձեր ծածկանունն այստեղ"; + +// line 93 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["Error: undefined or obsolete parameter '%s', please correct or remove this parameter"] = "Սխալ` չսահմանված կամ հնացած պարամետր '%s', խնդրում ենք ուղղել կամ ջնջել այդ պարամետրը"; + +// line 86 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Hide smiley box"] = "Թաքցնել ժպտիկների բլոկը"; + +// line 87 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Show smiley box"] = "Ցույց տալ ժպտիկների բլոկը"; + +// line 88 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Hide online users box"] = "Թաքցնել ներկաների բլոկը"; + +// line 89 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Show online users box"] = "Ցույց տալ ներկաների բլոկը"; + +// line 33 in chat.html.tpl.php +$GLOBALS["i18n"]["Bold"] = "Հաստ"; + +// line 34 in chat.html.tpl.php +$GLOBALS["i18n"]["Italics"] = "Շեղ"; + +// line 35 in chat.html.tpl.php +$GLOBALS["i18n"]["Underline"] = "Ընդգծված"; + +// line 36 in chat.html.tpl.php +$GLOBALS["i18n"]["Delete"] = "Ջնջել"; + +// line 37 in chat.html.tpl.php +$GLOBALS["i18n"]["Pre"] = "Պրե"; + +// line 38 in chat.html.tpl.php +$GLOBALS["i18n"]["Mail"] = "Փոստ"; + +// line 39 in chat.html.tpl.php +$GLOBALS["i18n"]["Color"] = "Գույն"; + +// line 48 in phpfreechattemplate.class.php +$GLOBALS["i18n"]["%s template could not be found"] = "%s շաբլոնը բացակայում է"; + +// line 324 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["'serverid' parameter is mandatory by default use 'md5(__FILE__)' value"] = "'serverid' պարամետրը պարտադիր է, ընդհանուր դեպքում օգտագործեք 'md5(__FILE__)' արժեքը"; + +// line 512 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your themepath '%s' and your theme '%s' are correct"] = "Սխալ` '%s'-ը բացակայում է, խնդրում ենք ստուգել '%s' թեմայի ուղին և '%s' թեման"; + +// line 75 in pfccommand.class.php +$GLOBALS["i18n"]["%s must be implemented"] = "%s -ը պետք է իրականացված լինի"; + +// line 343 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["'%s' parameter is mandatory by default use '%s' value"] = "'%s' պարամետրը պարտադիր է, ընդհանուր դեպքում օգտագործեք '%s' արժեքը"; + +// line 378 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["'%s' parameter must be a positive number"] = "'%s' պարամետրը պետք է դրական թիվ լինի"; + +// line 386 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["'%s' parameter is not valid. Available values are : '%s'"] = "'%s' պարամետրը չի համապատասխանում: Թույլատրելի արժեքներն են` '%s'"; + +// line 186 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["My room"] = "Իմ սենյակը"; + +// line 19 in unban.class.php +$GLOBALS["i18n"]["Missing parameter"] = "Պարամետրը բացակայում է"; + +// line 38 in ban.class.php +$GLOBALS["i18n"]["banished from %s by %s"] = "բան եղավ %s-ից %s-ի կողմից"; + +// line 23 in banlist.class.php +$GLOBALS["i18n"]["The banished user's id list is:"] = "Բան եղած անձանց ցուցակը`"; + +// line 32 in banlist.class.php +$GLOBALS["i18n"]["Empty"] = "Դատարկ է"; + +// line 34 in banlist.class.php +$GLOBALS["i18n"]["'/unban {id}' will unban the user identified by {id}"] = "'/unban {id}' հրամանը չբան կանի {id} ունեցող անձին"; + +// line 35 in banlist.class.php +$GLOBALS["i18n"]["'/unban all' will unban all the users on this channel"] = "'/unban all' հրամանը չբան կանի սենյակում գտնվող բոլոր անձանց"; + +// line 24 in update.class.php +$GLOBALS["i18n"]["%s quit (timeout)"] = "%s անունով անձը հեռացավ (timeout)"; + +// line 46 in join.class.php +$GLOBALS["i18n"]["%s joins %s"] = "%s անունով անձը մտնում է %s"; + +// line 31 in kick.class.php +$GLOBALS["i18n"]["kicked from %s by %s"] = "%s անունով անձը քացի կերավ %s-ի կողմից"; + +// line 38 in send.class.php +$GLOBALS["i18n"]["Can't send the message, %s is offline"] = "Անհնար է ուղարկել հաղորդագրությունը, %s անունով անձը միացած չէ"; + +// line 27 in unban.class.php +$GLOBALS["i18n"]["Nobody has been unbanished"] = "Ոչ ոք չբան չեղավ"; + +// line 42 in unban.class.php +$GLOBALS["i18n"]["%s has been unbanished"] = "%s անունով անձը չբան եղավ"; + +// line 49 in unban.class.php +$GLOBALS["i18n"]["%s users have been unbanished"] = "%s անձինք չբան եղան"; + +// line 47 in auth.class.php +$GLOBALS["i18n"]["You are not allowed to run '%s' command"] = "Ձեզ չի թույլատրվում աշխատացնել '%s' հրամանը"; + +// line 66 in auth.class.php +$GLOBALS["i18n"]["Can't join %s because you are banished"] = "Անհնար է մտնել %s, քանի որ Դուք բան եք եղած"; + +// line 76 in auth.class.php +$GLOBALS["i18n"]["Can't join %s because the channels list is restricted"] = "Անհնար է մտնել %s, քանի որ սենյակների ցանկը սահմանափակ է"; + +// line 89 in auth.class.php +$GLOBALS["i18n"]["You are not allowed to change your nickname"] = "Ձեզ չի թույլատրվում փոխել ծածկանունը"; + +// line 56 in noflood.class.php +$GLOBALS["i18n"]["Please don't post so many message, flood is not tolerated"] = "Խնդրում ենք չուղարկել այդքան շատ հաղորդագրություններ, հեղեղը չի ներվում"; + +// line 109 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Private message"] = "Անձնական հաղորդագրություն"; + +// line 110 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Close this tab"] = "Փակել այս ներդիրը"; + +// line 199 in pfcgui.js.tpl.php +$GLOBALS["i18n"]["Do you really want to leave this room ?"] = "Իսկապես ցանկանում եք հեռանա՞լ այս սենյակից"; + + +// line 169 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' is a private parameter, you are not allowed to change it"] = "Սխալ` '%s'-ը անձնական պարամետր է, Ձեզ չի թույլատրվում այն փոխել"; + +// line 253 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' parameter must be an array"] = "'%s' պարամետրը պետք է զանգված լինի"; + +// line 265 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' parameter must be a boolean"] = "'%s' պարամետրը պետք է բուլյան լինի"; + +// line 271 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' parameter must be a charatere string"] = "'%s' պարամետրը պետք է սիմվոլային տող լինի"; + +// line 395 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' must be writable"] = "'%s'-ը պետք է գրվելի լինի"; + +// line 425 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' directory doesn't exist"] = "'%s' ուղին գոյություն չունի"; + +// line 544 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Please correct these errors"] = "Խնդրում ենք ուղղել այս սխալները"; + +// line 21 in pfcinfo.class.php +$GLOBALS["i18n"]["Error: the cached config file doesn't exists"] = "Սխալ` պահված պարամետրերի ֆայլը գոյություն չունի"; + +// line 190 in phpfreechat.class.php +$GLOBALS["i18n"]["Error: the chat cannot be loaded! two possibilities: your browser doesn't support javascript or you didn't setup correctly the server directories rights - don't hesitate to ask some help on the forum"] = "Սխալ` չատն անհնար է բեռնավորել! Հնարավոր է երկու պատճառ` Ձեր բրոուզերը javascript չի ապահովում, կամ Դուք սխալ եք նշել սերվերի ուղիների հասանելիության իրավունքները. մի երկմտեք և խնդրեք օգնություն ֆորումում"; + +// line 31 in help.class.php +$GLOBALS["i18n"]["Here is the command list:"] = "Ահա հրամանների ցանկը`"; + +// line 63 in identify.class.php +$GLOBALS["i18n"]["Succesfully identified"] = "Ճանաչումը բարեհաջող է"; + +// line 68 in identify.class.php +$GLOBALS["i18n"]["Identification failure"] = "Ձեզ չհաջողվեց ճանաչել"; + +// line 25 in send.class.php +$GLOBALS["i18n"]["Your must be connected to send a message"] = "Հաղորդագրություն ուղարկելու համար Դուք պետք է միացած լինեք"; + +// line 87 in chat.js.tpl.php +$GLOBALS["i18n"]["Click here to send your message"] = "Սեղմեք այստեղ հաղորդագրությունն ուղարկելու համար"; + +// line 80 in chat.js.tpl.php +$GLOBALS["i18n"]["Enter the text to format"] = "Ներմուծեք ֆորմատի ենթակա տեքստը"; + +// line 81 in chat.js.tpl.php +$GLOBALS["i18n"]["Configuration has been rehashed"] = "Փոփոխությունները վերաբեռնավորվեցին"; + +// line 82 in chat.js.tpl.php +$GLOBALS["i18n"]["A problem occurs during rehash"] = "Վերաբեռնավորման ընթացքում սխալ տեղի ունեցավ"; + +// line 83 in chat.js.tpl.php +$GLOBALS["i18n"]["Choosen nickname is allready used"] = "Ընտրված ծածկանունն արդեն զբաղված է"; + +// line 84 in chat.js.tpl.php +$GLOBALS["i18n"]["phpfreechat current version is %s"] = "phpfreechat-ի ներկա տարբերակը` %s"; + +// line 85 in chat.js.tpl.php +$GLOBALS["i18n"]["Maximum number of joined channels has been reached"] = "Մտած սենյակների քանակը հասել է առավելագույնին"; + +// line 86 in chat.js.tpl.php +$GLOBALS["i18n"]["Maximum number of private chat has been reached"] = "Անձնական խոսակցությունների քանակը հասել է առավելագույնին"; + +// line 88 in chat.js.tpl.php +$GLOBALS["i18n"]["Send"] = "Ասել"; + +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-13 17:36:40
|
Revision: 870 http://svn.sourceforge.net/phpfreechat/?rev=870&view=rev Author: kerphi Date: 2006-11-13 09:36:30 -0800 (Mon, 13 Nov 2006) Log Message: ----------- New bangla translation (work in progress) Modified Paths: -------------- trunk/demo/index.php Added Paths: ----------- trunk/demo/demo52_in_bangla.php trunk/i18n/bn_BD/ trunk/i18n/bn_BD/main.php Added: trunk/demo/demo52_in_bangla.php =================================================================== --- trunk/demo/demo52_in_bangla.php (rev 0) +++ trunk/demo/demo52_in_bangla.php 2006-11-13 17:36:30 UTC (rev 870) @@ -0,0 +1,36 @@ +<?php + +require_once dirname(__FILE__)."/../src/phpfreechat.class.php"; + +$params["serverid"] = md5(__FILE__); // calculate a unique id for this chat +$params["language"] = "bn_BD"; +$chat = new phpFreeChat( $params ); + +?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html> + <head> + <meta http-equiv="content-type" content="text/html; charset=utf-8" /> + <title>phpFreeChat demo</title> + + <?php $chat->printJavascript(); ?> + <?php $chat->printStyle(); ?> + + </head> + + <body> + <?php $chat->printChat(); ?> + +<?php + // print the current file + echo "<h2>The source code</h2>"; + $filename = __FILE__; + echo "<p><code>".$filename."</code></p>"; + echo "<pre style=\"margin: 0 50px 0 50px; padding: 10px; background-color: #DDD;\">"; + $content = file_get_contents($filename); + echo htmlentities($content); + echo "</pre>"; +?> + + </body> +</html> Modified: trunk/demo/index.php =================================================================== --- trunk/demo/index.php 2006-11-05 18:28:56 UTC (rev 869) +++ trunk/demo/index.php 2006-11-13 17:36:30 UTC (rev 870) @@ -118,6 +118,7 @@ <li><a href="demo45_in_bulgarian.php">demo45 - the Bulgarian translation of the chat</a></li> <li><a href="demo46_in_hungarian.php">demo46 - the Hungarian translation of the chat</a></li> <li><a href="demo47_in_polish.php">demo47 - the Polish translation of the chat</a></li> + <li><a href="demo52_in_bangla.php">demo52 - the Bangla translation of the chat</a></li> </ul> </div> Added: trunk/i18n/bn_BD/main.php =================================================================== --- trunk/i18n/bn_BD/main.php (rev 0) +++ trunk/i18n/bn_BD/main.php 2006-11-13 17:36:30 UTC (rev 870) @@ -0,0 +1,31 @@ +<?php +/** + * i18n/bn_BD/main.php + * + * Copyright \xA9 2006 Stephane Gully + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301 USA + */ + +/** + * Bangla translation of the messages (utf8 encoded!) + * + * @author Shuvro Prakash Paul + */ + + + +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-05 18:29:25
|
Revision: 869 http://svn.sourceforge.net/phpfreechat/?rev=869&view=rev Author: kerphi Date: 2006-11-05 10:28:56 -0800 (Sun, 05 Nov 2006) Log Message: ----------- [en] Italian translation update (thanks to bellakioma) [fr] Mise ?\195?\160 jour de la traduction Italienne (merci ?\195?\160 bellakioma) Modified Paths: -------------- trunk/i18n/it_IT/main.php Added Paths: ----------- trunk/i18n/it_IT/admin.php Added: trunk/i18n/it_IT/admin.php =================================================================== --- trunk/i18n/it_IT/admin.php (rev 0) +++ trunk/i18n/it_IT/admin.php 2006-11-05 18:28:56 UTC (rev 869) @@ -0,0 +1,74 @@ +<?php +/** + * i18n/it_IT/admin.php + * + * Copyright © 2006 Stephane Gully <ste...@gm...> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301 USA + */ + +/** + * Italian translation of the messages (utf8 encoded!) + * + * @author bellakioma + */ + +$GLOBALS["i18n"]["lang"] = "Italiano"; + +// admin/index.php +$GLOBALS["i18n"]["Administration"] = "Amministrazione"; +$GLOBALS["i18n"]["Available Languages"] = "Linugue disponibili"; +$GLOBALS["i18n"]["PFC version verification"] = "Verifica della versione di PFC"; +$GLOBALS["i18n"]["Internet connection is not possible"] = "La connessione a Internet non è possibile"; +$GLOBALS["i18n"]["PFC is update"] = "PFC è aggiornata"; +$GLOBALS["i18n"]["PFC version"] = "versione di PFC"; +$GLOBALS["i18n"]["The last official version"] = "L'ultima versione ufficiale"; +$GLOBALS["i18n"]["PFC is not update"] = "PFC non è aggiornato"; +$GLOBALS["i18n"]["Your version"] = "La vostra versione"; +//$GLOBALS["i18n"]["The last official version"] = "L'ultima versione ufficiale"; +$GLOBALS["i18n"]["Download the last version %s here %s."] = "Scarica l'ultima versione %s qui %s."; + + +// admin/user.php +$GLOBALS["i18n"]["Users management"] = "Gestione degli utenti"; + +$GLOBALS["i18n"]["At least one user must be declare to activate authentication."] = "Deve essere creato almeno un utente per attivare l'autenticazione."; +$GLOBALS["i18n"]["It is not possible to delete the last user."] = "È impossibile eliminare l'ultimo utente."; + +$GLOBALS["i18n"]["User %s deleted."] = "Utente %s eliminato."; +$GLOBALS["i18n"]["User %s added."] = "Utente %s aggiunto."; +$GLOBALS["i18n"]["User %s edited."] = "Utente %s modificato."; + +$GLOBALS["i18n"]["Authentication disable"] = "Autenticazione disattivata"; +$GLOBALS["i18n"]["Enable here"] = "Attivare qui"; +$GLOBALS["i18n"]["Authentication enable"] = "Autenticazione attivata"; +$GLOBALS["i18n"]["Disable here"] = "Disattivare qui"; + +$GLOBALS["i18n"]["Username"] = "Utente"; +$GLOBALS["i18n"]["Password"] = "Password"; +$GLOBALS["i18n"]["Group"] = "Gruppo"; + +$GLOBALS["i18n"]["Do you really want to delete %s ?"] = "Vuoi veramente eliminare %s ?"; +$GLOBALS["i18n"]["Add a new user"] = "Aggiungere un nuovo utente"; + +$GLOBALS["i18n"]["Edit"] = "Modificare"; +$GLOBALS["i18n"]["Delete"] = "Eliminare"; + +// admin/themes.php +$GLOBALS["i18n"]["Available themes"] = "Elenco dei temi disponibili"; +$GLOBALS["i18n"]["Screenshot"] = "Cattura schermata"; + +?> Modified: trunk/i18n/it_IT/main.php =================================================================== --- trunk/i18n/it_IT/main.php 2006-11-05 18:23:57 UTC (rev 868) +++ trunk/i18n/it_IT/main.php 2006-11-05 18:28:56 UTC (rev 869) @@ -174,135 +174,135 @@ $GLOBALS["i18n"]["'%s' parameter is not valid. Available values are : '%s'"] = "Il parametro '%s' non è valido. I valori disponibili sono : '%s'"; // line 186 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["My room"] = ""; +$GLOBALS["i18n"]["My room"] = "La mia stanza"; // line 19 in unban.class.php -$GLOBALS["i18n"]["Missing parameter"] = ""; +$GLOBALS["i18n"]["Missing parameter"] = "Parametro mancante"; // line 38 in ban.class.php -$GLOBALS["i18n"]["banished from %s by %s"] = ""; +$GLOBALS["i18n"]["banished from %s by %s"] = "Esplulso dalla stanza %s da %s"; // line 23 in banlist.class.php -$GLOBALS["i18n"]["The banished user's id list is:"] = ""; +$GLOBALS["i18n"]["The banished user's id list is:"] = "L'id di lista dell'utente espulso è:"; // line 32 in banlist.class.php -$GLOBALS["i18n"]["Empty"] = ""; +$GLOBALS["i18n"]["Empty"] = "Vuoto"; // line 34 in banlist.class.php -$GLOBALS["i18n"]["'/unban {id}' will unban the user identified by {id}"] = ""; +$GLOBALS["i18n"]["'/unban {id}' will unban the user identified by {id}"] = "'/unban {id}' riammetterà l'utente identificato da {id}"; // line 35 in banlist.class.php -$GLOBALS["i18n"]["'/unban all' will unban all the users on this channel"] = ""; +$GLOBALS["i18n"]["'/unban all' will unban all the users on this channel"] = "'/unban all' riammetterà tutti gli utenti di questa stanza"; // line 24 in update.class.php -$GLOBALS["i18n"]["%s quit (timeout)"] = ""; +$GLOBALS["i18n"]["%s quit (timeout)"] = "%s abbandona (timeout)"; // line 46 in join.class.php -$GLOBALS["i18n"]["%s joins %s"] = ""; +$GLOBALS["i18n"]["%s joins %s"] = "%s entra in %s"; // line 31 in kick.class.php -$GLOBALS["i18n"]["kicked from %s by %s"] = ""; +$GLOBALS["i18n"]["kicked from %s by %s"] = "espulso dalla chat %s da %s"; // line 38 in send.class.php -$GLOBALS["i18n"]["Can't send the message, %s is offline"] = ""; +$GLOBALS["i18n"]["Can't send the message, %s is offline"] = "Impossibile spedire il messaggio, %s non è collagato"; // line 27 in unban.class.php -$GLOBALS["i18n"]["Nobody has been unbanished"] = ""; +$GLOBALS["i18n"]["Nobody has been unbanished"] = "Nessuno è stato riammesso"; // line 42 in unban.class.php -$GLOBALS["i18n"]["%s has been unbanished"] = ""; +$GLOBALS["i18n"]["%s has been unbanished"] = "L'utente %s è stato riammesso"; // line 49 in unban.class.php -$GLOBALS["i18n"]["%s users have been unbanished"] = ""; +$GLOBALS["i18n"]["%s users have been unbanished"] = "%s utenti sono stati riammessi"; // line 47 in auth.class.php -$GLOBALS["i18n"]["You are not allowed to run '%s' command"] = ""; +$GLOBALS["i18n"]["You are not allowed to run '%s' command"] = "Non hai i diritti per eseguire il comando '%s'"; // line 66 in auth.class.php -$GLOBALS["i18n"]["Can't join %s because you are banished"] = ""; +$GLOBALS["i18n"]["Can't join %s because you are banished"] = "Non puoi entrare in %s perché sei stato bandito"; // line 76 in auth.class.php -$GLOBALS["i18n"]["Can't join %s because the channels list is restricted"] = ""; +$GLOBALS["i18n"]["Can't join %s because the channels list is restricted"] = "Non puoi entrare in %s perché la chat è riservata"; // line 89 in auth.class.php -$GLOBALS["i18n"]["You are not allowed to change your nickname"] = ""; +$GLOBALS["i18n"]["You are not allowed to change your nickname"] = "Non hai i diritti per cambiare il tuo pseudonimo"; // line 56 in noflood.class.php -$GLOBALS["i18n"]["Please don't post so many message, flood is not tolerated"] = ""; +$GLOBALS["i18n"]["Please don't post so many message, flood is not tolerated"] = "Non spedire così tanti messaggi, questo comportamento non è tollerato"; // line 109 in pfcclient.js.tpl.php -$GLOBALS["i18n"]["Private message"] = ""; +$GLOBALS["i18n"]["Private message"] = "Messaggio privato"; // line 110 in pfcclient.js.tpl.php -$GLOBALS["i18n"]["Close this tab"] = ""; +$GLOBALS["i18n"]["Close this tab"] = "Chiudi questa scheda"; // line 199 in pfcgui.js.tpl.php -$GLOBALS["i18n"]["Do you really want to leave this room ?"] = ""; +$GLOBALS["i18n"]["Do you really want to leave this room ?"] = "Vuoi veramente lasciare questa stanza?"; // line 169 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["Error: '%s' is a private parameter, you are not allowed to change it"] = ""; +$GLOBALS["i18n"]["Error: '%s' is a private parameter, you are not allowed to change it"] = "Errore: '%s' è un parametro privato, non possiedi i diritti per modificarlo"; // line 253 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be an array"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be an array"] = "Il parametro '%s' deve essere un array"; // line 265 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be a boolean"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be a boolean"] = "Il parametro '%s' deve essere un booleano"; // line 271 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be a charatere string"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be a character string"] = "Il parametro '%s' deve essere una stringa di testo"; // line 395 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' must be writable"] = ""; +$GLOBALS["i18n"]["'%s' must be writable"] = "'%s' deve essere scrivibile"; // line 425 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' directory doesn't exist"] = ""; +$GLOBALS["i18n"]["'%s' directory doesn't exist"] = "La directory '%s' non esiste"; // line 544 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["Please correct these errors"] = ""; +$GLOBALS["i18n"]["Please correct these errors"] = "Per favore correggi questi errori"; // line 21 in pfcinfo.class.php -$GLOBALS["i18n"]["Error: the cached config file doesn't exists"] = ""; +$GLOBALS["i18n"]["Error: the cached config file doesn't exists"] = "Errore: il file di configurazione non esiste"; // line 190 in phpfreechat.class.php -$GLOBALS["i18n"]["Error: the chat cannot be loaded! two possibilities: your browser doesn't support javascript or you didn't setup correctly the server directories rights - don't hesitate to ask some help on the forum"] = ""; +$GLOBALS["i18n"]["Error: the chat cannot be loaded! two possibilities: your browser doesn't support javascript or you didn't setup correctly the server directories rights - don't hesitate to ask some help on the forum"] = "Errore: la chat non può essere caricata! Due possibilità: il tuo browser non supporta javascript oppure non hai settato correttamente i diritti sulle cartelle del server - non esitare a chiedere aiuto nel forum"; // line 31 in help.class.php -$GLOBALS["i18n"]["Here is the command list:"] = ""; +$GLOBALS["i18n"]["Here is the command list:"] = "Ecco la lista dei comandi"; // line 63 in identify.class.php -$GLOBALS["i18n"]["Succesfully identified"] = ""; +$GLOBALS["i18n"]["Succesfully identified"] = "Identificato con successo"; // line 68 in identify.class.php -$GLOBALS["i18n"]["Identification failure"] = ""; +$GLOBALS["i18n"]["Identification failure"] = "Indentificazione fallita"; // line 25 in send.class.php -$GLOBALS["i18n"]["Your must be connected to send a message"] = ""; +$GLOBALS["i18n"]["Your must be connected to send a message"] = "Per inviare un messaggio devi essere connesso"; // line 87 in chat.js.tpl.php -$GLOBALS["i18n"]["Click here to send your message"] = ""; +$GLOBALS["i18n"]["Click here to send your message"] = "Clicca qui per inviare il tuo messaggio"; // line 80 in chat.js.tpl.php -$GLOBALS["i18n"]["Enter the text to format"] = ""; +$GLOBALS["i18n"]["Enter the text to format"] = "Inserisci il testo nel formato"; // line 81 in chat.js.tpl.php -$GLOBALS["i18n"]["Configuration has been rehashed"] = ""; +$GLOBALS["i18n"]["Configuration has been rehashed"] = "La configurazione è stata ricaricata"; // line 82 in chat.js.tpl.php -$GLOBALS["i18n"]["A problem occurs during rehash"] = ""; +$GLOBALS["i18n"]["A problem occurs during rehash"] = "Si è verificato un problema durante l'aggiornamento"; // line 83 in chat.js.tpl.php -$GLOBALS["i18n"]["Choosen nickname is allready used"] = ""; +$GLOBALS["i18n"]["Choosen nickname is allready used"] = "Lo pseudonimo scelto è già in uso"; // line 84 in chat.js.tpl.php -$GLOBALS["i18n"]["phpfreechat current version is %s"] = ""; +$GLOBALS["i18n"]["phpfreechat current version is %s"] = "phpfreechat versione &s"; // line 85 in chat.js.tpl.php -$GLOBALS["i18n"]["Maximum number of joined channels has been reached"] = ""; +$GLOBALS["i18n"]["Maximum number of joined channels has been reached"] = "È stato raggiunto il numero massimo di stanze"; // line 86 in chat.js.tpl.php -$GLOBALS["i18n"]["Maximum number of private chat has been reached"] = ""; +$GLOBALS["i18n"]["Maximum number of private chat has been reached"] = "Il numero massimo di chat private è stato raggiunto"; // line 88 in chat.js.tpl.php -$GLOBALS["i18n"]["Send"] = ""; +$GLOBALS["i18n"]["Send"] = "Invia"; -?> \ No newline at end of file +?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-05 18:24:14
|
Revision: 868 http://svn.sourceforge.net/phpfreechat/?rev=868&view=rev Author: kerphi Date: 2006-11-05 10:23:57 -0800 (Sun, 05 Nov 2006) Log Message: ----------- [en] Portuguese Brazilian translation update (thanks to candido) [10min] [fr] Mise ?\195?\160 jour de la traduction Portugais du Br?\195?\169sil (merci ?\195?\160 candido) [10min] Modified Paths: -------------- trunk/i18n/pt_BR/main.php Modified: trunk/i18n/pt_BR/main.php =================================================================== --- trunk/i18n/pt_BR/main.php 2006-11-05 18:18:34 UTC (rev 867) +++ trunk/i18n/pt_BR/main.php 2006-11-05 18:23:57 UTC (rev 868) @@ -24,6 +24,7 @@ * Portuguese translation of the messages (utf8 encoded!) * * @author Frederico Costa <fre...@gm...> + * @author candido */ // line 45 in phpfreechatconfig.class.php @@ -33,13 +34,13 @@ $GLOBALS["i18n"]["%s not found, %s library can't be found."] = "%s não encontrada, a biblioteca %s não pode ser encontrada."; // line 355 in phpfreechat.class.php -$GLOBALS["i18n"]["Please enter your nickname"] = "Porfavor, informe seu apelido"; +$GLOBALS["i18n"]["Please enter your nickname"] = "Por favor, informe seu apelido"; // line 565 in phpfreechat.class.php -$GLOBALS["i18n"]["Text cannot be empty"] = "O Texto não de ser em branco"; +$GLOBALS["i18n"]["Text cannot be empty"] = "O Texto não ser em branco"; // line 392 in phpfreechat.class.php -$GLOBALS["i18n"]["%s changes his nickname to %s"] = "%s mudou de apeildo para %s"; +$GLOBALS["i18n"]["%s changes his nickname to %s"] = "%s mudou de apelido para %s"; // line 398 in phpfreechat.class.php $GLOBALS["i18n"]["%s is connected"] = "%s acabou de entrar na sala"; @@ -90,10 +91,10 @@ $GLOBALS["i18n"]["PHP FREE CHAT [powered by phpFreeChat-%s]"] = "PHP FREE CHAT [powered by phpFreeChat-%s]"; // line 296 in javascript1.js.tpl.php -$GLOBALS["i18n"]["Hide nickname marker"] = "Esconder as cores dos apelidos"; +$GLOBALS["i18n"]["Hide nickname marker"] = "Esconder os marcadores dos apelidos"; // line 304 in javascript1.js.tpl.php -$GLOBALS["i18n"]["Show nickname marker"] = "Mostrar as cores dos apelidos"; +$GLOBALS["i18n"]["Show nickname marker"] = "Mostrar as marcadores dos apelidos"; // line 389 in javascript1.js.tpl.php $GLOBALS["i18n"]["Disconnect"] = "Desconectar"; @@ -120,193 +121,191 @@ $GLOBALS["i18n"]["Enter your nickname here"] = "Digie seu apelido"; // line 92 in phpfreechatconfig.class.php -$GLOBALS["i18n"]["Error: undefined or obsolete parameter '%s', please correct or remove this parameter"] = ""; +$GLOBALS["i18n"]["Error: undefined or obsolete parameter '%s', please correct or remove this parameter"] = "Erro: indefinido ou parâmetro obsoleto '%s', favor corrija ou remova esta parâmetro"; // line 48 in phpfreechattemplate.class.php -$GLOBALS["i18n"]["%s template could not be found"] = ""; +$GLOBALS["i18n"]["%s template could not be found"] = "Template %s não pode ser encontrado "; // line 324 in phpfreechatconfig.class.php -$GLOBALS["i18n"]["'serverid' parameter is mandatory by default use 'md5(__FILE__)' value"] = ""; +$GLOBALS["i18n"]["'serverid' parameter is mandatory by default use 'md5(__FILE__)' value"] = "'serverid' "; // line 512 in phpfreechatconfig.class.php -$GLOBALS["i18n"]["Error: '%s' could not be found, please check your themepath '%s' and your theme '%s' are correct"] = ""; +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your themepath '%s' and your theme '%s' are correct"] = "Erro: '%s' não foi encontrado, por favor o caminho '%s' e seu tema '%s' se estão corretos"; // line 33 in chat.html.tpl.php -$GLOBALS["i18n"]["Bold"] = ""; +$GLOBALS["i18n"]["Bold"] = "Negrito"; // line 34 in chat.html.tpl.php -$GLOBALS["i18n"]["Italics"] = ""; +$GLOBALS["i18n"]["Italics"] = "Itálico"; // line 35 in chat.html.tpl.php -$GLOBALS["i18n"]["Underline"] = ""; +$GLOBALS["i18n"]["Underline"] = "Sublinhado"; // line 36 in chat.html.tpl.php -$GLOBALS["i18n"]["Delete"] = ""; +$GLOBALS["i18n"]["Delete"] = "Remover"; // line 37 in chat.html.tpl.php $GLOBALS["i18n"]["Pre"] = ""; // line 38 in chat.html.tpl.php -$GLOBALS["i18n"]["Mail"] = ""; +$GLOBALS["i18n"]["Mail"] = "Email"; // line 39 in chat.html.tpl.php -$GLOBALS["i18n"]["Color"] = ""; +$GLOBALS["i18n"]["Color"] = "Cor"; // line 86 in pfcclient.js.tpl.php -$GLOBALS["i18n"]["Hide smiley box"] = ""; +$GLOBALS["i18n"]["Hide smiley box"] = "Esconder Caixa de Smiley"; // line 87 in pfcclient.js.tpl.php -$GLOBALS["i18n"]["Show smiley box"] = ""; +$GLOBALS["i18n"]["Show smiley box"] = "Mostrar Caixa de Smiley"; // line 88 in pfcclient.js.tpl.php -$GLOBALS["i18n"]["Hide online users box"] = ""; +$GLOBALS["i18n"]["Hide online users box"] = "Esconder usuários online"; // line 89 in pfcclient.js.tpl.php -$GLOBALS["i18n"]["Show online users box"] = ""; +$GLOBALS["i18n"]["Show online users box"] = "Monstrar usuários online"; // line 75 in pfccommand.class.php -$GLOBALS["i18n"]["%s must be implemented"] = ""; +$GLOBALS["i18n"]["%s must be implemented"] = "%s será implementado"; - // line 343 in phpfreechatconfig.class.php -$GLOBALS["i18n"]["'%s' parameter is mandatory by default use '%s' value"] = ""; +$GLOBALS["i18n"]["'%s' parameter is mandatory by default use '%s' value"] = "'%s' parametro is enviado por padrão, use o valor '%s'"; // line 378 in phpfreechatconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be a positive number"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be a positive number"] = "O parametro '%s' deve ser um número positivo"; // line 386 in phpfreechatconfig.class.php -$GLOBALS["i18n"]["'%s' parameter is not valid. Available values are : '%s'"] = ""; +$GLOBALS["i18n"]["'%s' parameter is not valid. Available values are : '%s'"] = "O parametro '%s' não é válido. Valores disponíveis: '%s'"; // line 186 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["My room"] = ""; +$GLOBALS["i18n"]["My room"] = "Minha Sala"; // line 19 in unban.class.php -$GLOBALS["i18n"]["Missing parameter"] = ""; +$GLOBALS["i18n"]["Missing parameter"] = "Faltando parametro"; // line 38 in ban.class.php -$GLOBALS["i18n"]["banished from %s by %s"] = ""; +$GLOBALS["i18n"]["banished from %s by %s"] = "Banido de %s por %s"; // line 23 in banlist.class.php -$GLOBALS["i18n"]["The banished user's id list is:"] = ""; +$GLOBALS["i18n"]["The banished user's id list is:"] = "O usuário banido"; // line 32 in banlist.class.php -$GLOBALS["i18n"]["Empty"] = ""; +$GLOBALS["i18n"]["Empty"] = "Vazio"; // line 34 in banlist.class.php -$GLOBALS["i18n"]["'/unban {id}' will unban the user identified by {id}"] = ""; +$GLOBALS["i18n"]["'/unban {id}' will unban the user identified by {id}"] = "'/unban {id}' será desbanido o usuário indentificado pelo {id}"; // line 35 in banlist.class.php -$GLOBALS["i18n"]["'/unban all' will unban all the users on this channel"] = ""; +$GLOBALS["i18n"]["'/unban all' will unban all the users on this channel"] = "'/unban all' desbanir todos usuários da sala"; // line 24 in update.class.php -$GLOBALS["i18n"]["%s quit (timeout)"] = ""; +$GLOBALS["i18n"]["%s quit (timeout)"] = "%s abandonou(tempo esgotado)"; // line 46 in join.class.php -$GLOBALS["i18n"]["%s joins %s"] = ""; +$GLOBALS["i18n"]["%s joins %s"] = "%s entrou %s"; // line 31 in kick.class.php -$GLOBALS["i18n"]["kicked from %s by %s"] = ""; +$GLOBALS["i18n"]["kicked from %s by %s"] = "chutado de %s por %s"; // line 38 in send.class.php -$GLOBALS["i18n"]["Can't send the message, %s is offline"] = ""; +$GLOBALS["i18n"]["Can't send the message, %s is offline"] = "Não ode envia a menssagem, %s está fora"; // line 27 in unban.class.php -$GLOBALS["i18n"]["Nobody has been unbanished"] = ""; +$GLOBALS["i18n"]["Nobody has been unbanished"] = "Ninguém tem sido desbanido"; // line 42 in unban.class.php -$GLOBALS["i18n"]["%s has been unbanished"] = ""; +$GLOBALS["i18n"]["%s has been unbanished"] = "%s tem sido desbanido"; // line 49 in unban.class.php -$GLOBALS["i18n"]["%s users have been unbanished"] = ""; +$GLOBALS["i18n"]["%s users have been unbanished"] = "%s usuarios tem sido desbanido"; // line 47 in auth.class.php -$GLOBALS["i18n"]["You are not allowed to run '%s' command"] = ""; +$GLOBALS["i18n"]["You are not allowed to run '%s' command"] = "Você não está autorizado a executar o comand '%s'"; // line 66 in auth.class.php -$GLOBALS["i18n"]["Can't join %s because you are banished"] = ""; +$GLOBALS["i18n"]["Can't join %s because you are banished"] = "Não pode entrar '%s' porque você está banido"; // line 76 in auth.class.php -$GLOBALS["i18n"]["Can't join %s because the channels list is restricted"] = ""; +$GLOBALS["i18n"]["Can't join %s because the channels list is restricted"] = "Não pode entrar '%s' porque a lista do canal é restrito"; // line 89 in auth.class.php -$GLOBALS["i18n"]["You are not allowed to change your nickname"] = ""; +$GLOBALS["i18n"]["You are not allowed to change your nickname"] = "Você não está autorizado a mudar o seu apelido"; // line 56 in noflood.class.php -$GLOBALS["i18n"]["Please don't post so many message, flood is not tolerated"] = ""; +$GLOBALS["i18n"]["Please don't post so many message, flood is not tolerated"] = "Por favor, não postar muitas mensagens, flood não será tolerado"; // line 109 in pfcclient.js.tpl.php -$GLOBALS["i18n"]["Private message"] = ""; +$GLOBALS["i18n"]["Private message"] = "Mensagem privada"; // line 110 in pfcclient.js.tpl.php -$GLOBALS["i18n"]["Close this tab"] = ""; +$GLOBALS["i18n"]["Close this tab"] = "Fechar Aba"; // line 199 in pfcgui.js.tpl.php -$GLOBALS["i18n"]["Do you really want to leave this room ?"] = ""; +$GLOBALS["i18n"]["Do you really want to leave this room ?"] = "Você realmente quer deixar esta sala"; // line 169 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["Error: '%s' is a private parameter, you are not allowed to change it"] = ""; +$GLOBALS["i18n"]["Error: '%s' is a private parameter, you are not allowed to change it"] = "Erro: '%s' é uma sala privada, você não está autorizado a mudá-la"; // line 253 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be an array"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be an array"] = "'%s' deve ser um array"; // line 265 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be a boolean"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be a boolean"] = "'%s' deve ser um booleano"; // line 271 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be a charatere string"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be a charatere string"] = "'%s' deve ser um caracter"; // line 395 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' must be writable"] = ""; +$GLOBALS["i18n"]["'%s' must be writable"] = "'%s' deve ser gravável"; // line 425 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' directory doesn't exist"] = ""; +$GLOBALS["i18n"]["'%s' directory doesn't exist"] = "'%s' não existe este diretório "; // line 544 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["Please correct these errors"] = ""; +$GLOBALS["i18n"]["Please correct these errors"] = "Por favor corrija este erros"; // line 21 in pfcinfo.class.php -$GLOBALS["i18n"]["Error: the cached config file doesn't exists"] = ""; +$GLOBALS["i18n"]["Error: the cached config file doesn't exists"] = "Erro: o arquivo de configuração do cache não existe"; // line 190 in phpfreechat.class.php -$GLOBALS["i18n"]["Error: the chat cannot be loaded! two possibilities: your browser doesn't support javascript or you didn't setup correctly the server directories rights - don't hesitate to ask some help on the forum"] = ""; +$GLOBALS["i18n"]["Error: the chat cannot be loaded! two possibilities: your browser doesn't support javascript or you didn't setup correctly the server directories rights - don't hesitate to ask some help on the forum"] = "Erro: o chat não foi carregado! Duas possibilidades: seu navegador não suporta javascript ou você não configurou corretamente as permissões dos diretórios do servidor - não me pergunte como fazer no fórum"; // line 31 in help.class.php -$GLOBALS["i18n"]["Here is the command list:"] = ""; +$GLOBALS["i18n"]["Here is the command list:"] = "Aqui esta a lista de comandos"; // line 63 in identify.class.php -$GLOBALS["i18n"]["Succesfully identified"] = ""; +$GLOBALS["i18n"]["Succesfully identified"] = "Identificado com sucesso"; // line 68 in identify.class.php -$GLOBALS["i18n"]["Identification failure"] = ""; +$GLOBALS["i18n"]["Identification failure"] = "Falha da identificação"; // line 25 in send.class.php -$GLOBALS["i18n"]["Your must be connected to send a message"] = ""; +$GLOBALS["i18n"]["Your must be connected to send a message"] = "Você deve estar conectado para enviar mensagem"; // line 87 in chat.js.tpl.php -$GLOBALS["i18n"]["Click here to send your message"] = ""; +$GLOBALS["i18n"]["Click here to send your message"] = "Clique aqui para enviar sua mensagem"; // line 80 in chat.js.tpl.php -$GLOBALS["i18n"]["Enter the text to format"] = ""; +$GLOBALS["i18n"]["Enter the text to format"] = "Entre com um texto para formatar"; // line 81 in chat.js.tpl.php -$GLOBALS["i18n"]["Configuration has been rehashed"] = ""; +$GLOBALS["i18n"]["Configuration has been rehashed"] = "Configuração foi rehashed "; // line 82 in chat.js.tpl.php -$GLOBALS["i18n"]["A problem occurs during rehash"] = ""; +$GLOBALS["i18n"]["A problem occurs during rehash"] = "Um problema ocorreu durante rehash"; // line 83 in chat.js.tpl.php -$GLOBALS["i18n"]["Choosen nickname is allready used"] = ""; +$GLOBALS["i18n"]["Choosen nickname is allready used"] = "O apelido escolhido já está sendo usado"; // line 84 in chat.js.tpl.php -$GLOBALS["i18n"]["phpfreechat current version is %s"] = ""; +$GLOBALS["i18n"]["phpfreechat current version is %s"] = "corrente versão é %s"; // line 85 in chat.js.tpl.php -$GLOBALS["i18n"]["Maximum number of joined channels has been reached"] = ""; +$GLOBALS["i18n"]["Maximum number of joined channels has been reached"] = "Atingido o número máximo de canais que pode entrar"; // line 86 in chat.js.tpl.php -$GLOBALS["i18n"]["Maximum number of private chat has been reached"] = ""; +$GLOBALS["i18n"]["Maximum number of private chat has been reached"] = "Atingido o número máximo de conversas particulares"; // line 88 in chat.js.tpl.php -$GLOBALS["i18n"]["Send"] = ""; - -?> \ No newline at end of file +$GLOBALS["i18n"]["Send"] = "Enviar"; +?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-05 18:18:38
|
Revision: 867 http://svn.sourceforge.net/phpfreechat/?rev=867&view=rev Author: kerphi Date: 2006-11-05 10:18:34 -0800 (Sun, 05 Nov 2006) Log Message: ----------- [en] Remove the underline text decoration on the nicknames list [5min] [fr] Retire le soulignement dans la liste des pseudonymes [5min] Modified Paths: -------------- trunk/themes/default/style.css Modified: trunk/themes/default/style.css =================================================================== --- trunk/themes/default/style.css 2006-11-05 18:14:36 UTC (rev 866) +++ trunk/themes/default/style.css 2006-11-05 18:18:34 UTC (rev 867) @@ -335,6 +335,9 @@ ul.pfc_nicklist span.pfc_nickmarker { } +ul.pfc_nicklist a { + text-decoration: none; +} img.pfc_nickbutton { cursor: pointer; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-05 18:14:49
|
Revision: 866 http://svn.sourceforge.net/phpfreechat/?rev=866&view=rev Author: kerphi Date: 2006-11-05 10:14:36 -0800 (Sun, 05 Nov 2006) Log Message: ----------- [en] Ignore the ini_set warnings. It can occurs on servers which have disabled it for security reasons. [10min] [fr] Ignore les warnings de ini_set. Ceci peut arriver lorsque le serveur a d?\195?\169sactiv?\195?\169 cette fonction pour raison de s?\195?\169curit?\195?\169. [10min] Modified Paths: -------------- trunk/src/client/proxy.php.tpl Modified: trunk/src/client/proxy.php.tpl =================================================================== --- trunk/src/client/proxy.php.tpl 2006-11-05 11:09:12 UTC (rev 865) +++ trunk/src/client/proxy.php.tpl 2006-11-05 18:14:36 UTC (rev 866) @@ -1,7 +1,7 @@ <?php // gzip compression should not be used because it can slowdown a lot the page loading (>60 seconds!) -ini_set('zlib.output_compression','Off'); +@ini_set('zlib.output_compression','Off'); ob_start(); // start capturing output This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-05 11:09:27
|
Revision: 865 http://svn.sourceforge.net/phpfreechat/?rev=865&view=rev Author: kerphi Date: 2006-11-05 03:09:12 -0800 (Sun, 05 Nov 2006) Log Message: ----------- [en] Makes possible to use regular expressions for the words in the censor proxy. [45min] [fr] Rend possible l'utilisation d'expressions r?\195?\169guli?\195?\168res pour les mots ?\195?\160 censurer. [45min] Modified Paths: -------------- trunk/src/pfcglobalconfig.class.php trunk/src/proxies/censor.class.php Modified: trunk/src/pfcglobalconfig.class.php =================================================================== --- trunk/src/pfcglobalconfig.class.php 2006-11-02 20:12:51 UTC (rev 864) +++ trunk/src/pfcglobalconfig.class.php 2006-11-05 11:09:12 UTC (rev 865) @@ -49,9 +49,13 @@ var $post_proxies = array(); // these proxies will be handled just before to process commands and just after system proxies var $pre_proxies = array(); // these proxies will be handled before system proxies (at begining) var $proxies_cfg = array("auth" => array(), - "noflood" => array("charlimit"=>450,"msglimit"=>10,"delay"=>5), - "censor" => array("words"=>array("fuck","sex","bitch"),"replaceby"=>"*"), - "log" => array("path"=>"")); + "noflood" => array("charlimit" => 450, + "msglimit" => 10, + "delay" => 5), + "censor" => array("words" => array("fuck","sex","bitch"), + "replaceby" => "*", + "regex" => false), + "log" => array("path" => "")); var $proxies_path = ""; // a custom proxies path var $proxies_path_default = ""; // dirname(__FILE__).'/proxies' var $cmd_path = ""; // a custom commands path Modified: trunk/src/proxies/censor.class.php =================================================================== --- trunk/src/proxies/censor.class.php 2006-11-02 20:12:51 UTC (rev 864) +++ trunk/src/proxies/censor.class.php 2006-11-05 11:09:12 UTC (rev 865) @@ -46,13 +46,24 @@ { $words = $c->proxies_cfg[$this->proxyname]["words"]; $replaceby = $c->proxies_cfg[$this->proxyname]["replaceby"]; - + $regex = $c->proxies_cfg[$this->proxyname]["regex"]; + $patterns = array(); $replacements = array(); foreach($words as $w) { - $patterns[] = "/".preg_quote($w)."/i"; - $replacements[] = str_repeat($replaceby,strlen($w)); + if ($regex) + { + // the words are regular expressions + $patterns[] = "/".$w."/ie"; + $replacements[] = "'\\1'.str_repeat('$replaceby',strlen('\\2')).'\\3'"; + } + else + { + // the words are simple words + $patterns[] = "/".preg_quote($w)."/i"; + $replacements[] = str_repeat($replaceby,strlen($w)); + } } $param = preg_replace($patterns, $replacements, $param); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-02 20:13:07
|
Revision: 864 http://svn.sourceforge.net/phpfreechat/?rev=864&view=rev Author: kerphi Date: 2006-11-02 12:12:51 -0800 (Thu, 02 Nov 2006) Log Message: ----------- [en] Japanese translation update (thanks to elf2000) [15min] [fr] Mise ?\195?\160 jour de la traduction japonaise (merci ?\195?\160 elf2000) [15min] Modified Paths: -------------- trunk/i18n/ja_JP/main.php Modified: trunk/i18n/ja_JP/main.php =================================================================== --- trunk/i18n/ja_JP/main.php 2006-11-02 08:26:10 UTC (rev 863) +++ trunk/i18n/ja_JP/main.php 2006-11-02 20:12:51 UTC (rev 864) @@ -238,73 +238,73 @@ $GLOBALS["i18n"]["Can't join %s because the channels list is restricted"] = "チャンネル一覧が制限されているので「%s」に参加できません。"; // line 56 in noflood.class.php -$GLOBALS["i18n"]["Please don't post so many message, flood is not tolerated"] = "大量で黙認できません大量のメッセージを投稿しないでください。"; +$GLOBALS["i18n"]["Please don't post so many message, flood is not tolerated"] = "大量で黙認できません。大量のメッセージを投稿しないでください。"; - // line 169 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["Error: '%s' is a private parameter, you are not allowed to change it"] = ""; +$GLOBALS["i18n"]["Error: '%s' is a private parameter, you are not allowed to change it"] = "エラー: 「%s」はプライベートパラメーターで、変更は許可されていません"; // line 253 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be an array"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be an array"] = "パラメーター「%s」は配列でなければいけません"; // line 265 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be a boolean"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be a boolean"] = "パラメーター「%s」は boolean でなければなりません"; // line 271 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be a charatere string"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be a charatere string"] = "パラメーター「%s」は文字列でなければなりません"; // line 395 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' must be writable"] = ""; +$GLOBALS["i18n"]["'%s' must be writable"] = "「%s」は書き込めなければいけません"; // line 425 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' directory doesn't exist"] = ""; +$GLOBALS["i18n"]["'%s' directory doesn't exist"] = "ディレクトリ「%s」が存在しません"; // line 544 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["Please correct these errors"] = ""; +$GLOBALS["i18n"]["Please correct these errors"] = "これらのエラーを修正してください"; // line 21 in pfcinfo.class.php -$GLOBALS["i18n"]["Error: the cached config file doesn't exists"] = ""; +$GLOBALS["i18n"]["Error: the cached config file doesn't exists"] = "エラー: キャッシュ済設定ファイルが存在しません"; // line 190 in phpfreechat.class.php -$GLOBALS["i18n"]["Error: the chat cannot be loaded! two possibilities: your browser doesn't support javascript or you didn't setup correctly the server directories rights - don't hesitate to ask some help on the forum"] = ""; +$GLOBALS["i18n"]["Error: the chat cannot be loaded! two possibilities: your browser doesn't support javascript or you didn't setup correctly the server directories rights - don't hesitate to ask some help on the forum"] = "エラー: チャットを読み込めません! 2 つの可能性: ブラウザーが JavaScript をサポートしていないか、 +サーバーのディレクトリ権限を正しく設定していません - don't hesitate to ask some help on the forum"; // line 31 in help.class.php -$GLOBALS["i18n"]["Here is the command list:"] = ""; +$GLOBALS["i18n"]["Here is the command list:"] = "ここはコマンド一覧です:"; // line 63 in identify.class.php -$GLOBALS["i18n"]["Succesfully identified"] = ""; +$GLOBALS["i18n"]["Succesfully identified"] = "識別に成功しました"; // line 68 in identify.class.php -$GLOBALS["i18n"]["Identification failure"] = ""; +$GLOBALS["i18n"]["Identification failure"] = "識別に失敗しました"; // line 25 in send.class.php -$GLOBALS["i18n"]["Your must be connected to send a message"] = ""; +$GLOBALS["i18n"]["Your must be connected to send a message"] = "メッセージの送信には接続しなければなりません"; // line 87 in chat.js.tpl.php -$GLOBALS["i18n"]["Click here to send your message"] = ""; +$GLOBALS["i18n"]["Click here to send your message"] = "メッセージの送信にはここをクリックします"; // line 80 in chat.js.tpl.php -$GLOBALS["i18n"]["Enter the text to format"] = ""; +$GLOBALS["i18n"]["Enter the text to format"] = "書式化するテキストを入力します"; // line 81 in chat.js.tpl.php -$GLOBALS["i18n"]["Configuration has been rehashed"] = ""; +$GLOBALS["i18n"]["Configuration has been rehashed"] = "設定は作り直されました"; // line 82 in chat.js.tpl.php -$GLOBALS["i18n"]["A problem occurs during rehash"] = ""; +$GLOBALS["i18n"]["A problem occurs during rehash"] = "作成中に問題が発生しました"; // line 83 in chat.js.tpl.php -$GLOBALS["i18n"]["Choosen nickname is allready used"] = ""; +$GLOBALS["i18n"]["Choosen nickname is allready used"] = "選択したニックネームは既に試用されています"; // line 84 in chat.js.tpl.php -$GLOBALS["i18n"]["phpfreechat current version is %s"] = ""; +$GLOBALS["i18n"]["phpfreechat current version is %s"] = "phpfreechat の現在のバージョンは %s です"; // line 85 in chat.js.tpl.php -$GLOBALS["i18n"]["Maximum number of joined channels has been reached"] = ""; +$GLOBALS["i18n"]["Maximum number of joined channels has been reached"] = "最大チャンネルの最大数に到達しました"; // line 86 in chat.js.tpl.php -$GLOBALS["i18n"]["Maximum number of private chat has been reached"] = ""; +$GLOBALS["i18n"]["Maximum number of private chat has been reached"] = "プライベートチャットの最大数に到達しました"; // line 88 in chat.js.tpl.php -$GLOBALS["i18n"]["Send"] = ""; +$GLOBALS["i18n"]["Send"] = "送信する"; ?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-02 08:26:23
|
Revision: 863 http://svn.sourceforge.net/phpfreechat/?rev=863&view=rev Author: kerphi Date: 2006-11-02 00:26:10 -0800 (Thu, 02 Nov 2006) Log Message: ----------- add the customize.js source code to help understanding Modified Paths: -------------- trunk/demo/demo50_customized_usermetadata.php Modified: trunk/demo/demo50_customized_usermetadata.php =================================================================== --- trunk/demo/demo50_customized_usermetadata.php 2006-11-02 08:20:09 UTC (rev 862) +++ trunk/demo/demo50_customized_usermetadata.php 2006-11-02 08:26:10 UTC (rev 863) @@ -35,6 +35,17 @@ echo htmlentities($content); echo "</pre>"; ?> + +<?php + // print the current file + echo "<h2>The customized javascript</h2>"; + $filename = dirname(__FILE__).'/demo50_data/mytheme/customize.js'; + echo "<p><code>".$filename."</code></p>"; + echo "<pre style=\"margin: 0 50px 0 50px; padding: 10px; background-color: #DDD;\">"; + $content = file_get_contents($filename); + echo htmlentities($content); + echo "</pre>"; +?> </body> </html> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-02 08:24:38
|
Revision: 860 http://svn.sourceforge.net/phpfreechat/?rev=860&view=rev Author: kerphi Date: 2006-11-02 00:17:26 -0800 (Thu, 02 Nov 2006) Log Message: ----------- exclude the unused admin directory from the release Modified Paths: -------------- trunk/misc/tarSource Modified: trunk/misc/tarSource =================================================================== --- trunk/misc/tarSource 2006-11-02 08:04:22 UTC (rev 859) +++ trunk/misc/tarSource 2006-11-02 08:17:26 UTC (rev 860) @@ -8,6 +8,8 @@ rm -rf ./$NAME svn export .. ./$NAME rm -rf ./$NAME/contrib +rm -rf ./$NAME/admin + echo "-> downloading documentation" wget http://www.phpfreechat.net/pages/fr/install.html -q -O ./$NAME/install.fr.html wget http://www.phpfreechat.net/pages/en/install.html -q -O ./$NAME/install.en.html This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-02 08:11:51
|
Revision: 859 http://svn.sourceforge.net/phpfreechat/?rev=859&view=rev Author: kerphi Date: 2006-11-02 00:04:22 -0800 (Thu, 02 Nov 2006) Log Message: ----------- release 1.0-beta7 Added Paths: ----------- tags/1.0-beta7/ Copied: tags/1.0-beta7 (from rev 858, trunk) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-01 19:05:49
|
Revision: 858 http://svn.sourceforge.net/phpfreechat/?rev=858&view=rev Author: kerphi Date: 2006-11-01 11:05:33 -0800 (Wed, 01 Nov 2006) Log Message: ----------- preparation de la version 1.0-beta7 Modified Paths: -------------- trunk/version Modified: trunk/version =================================================================== --- trunk/version 2006-11-01 17:27:54 UTC (rev 857) +++ trunk/version 2006-11-01 19:05:33 UTC (rev 858) @@ -1 +1 @@ -1.0-beta7-pre1 +1.0-beta7 \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-01 17:28:28
|
Revision: 857 http://svn.sourceforge.net/phpfreechat/?rev=857&view=rev Author: kerphi Date: 2006-11-01 09:27:54 -0800 (Wed, 01 Nov 2006) Log Message: ----------- [en] Bug fix: fix a IE6 scroll problem, see sourceforge bug 1568264 (thanks to bcc) [fr] Bug fix : r?\195?\169soud un probl?\195?\168me de scroll sous IE6, voyez le bug sourceforge 1568264 (merci ?\195?\160 bcc) Modified Paths: -------------- trunk/src/client/pfcgui.js Modified: trunk/src/client/pfcgui.js =================================================================== --- trunk/src/client/pfcgui.js 2006-11-01 17:10:55 UTC (rev 856) +++ trunk/src/client/pfcgui.js 2006-11-01 17:27:54 UTC (rev 857) @@ -43,6 +43,11 @@ // the wanted tab is active so just scroll down the tab content element // by elttoscroll element height (use 'offsetHeight' attribute) var content = this.getChatContentFromTabId(tabid); + + // the next line seems to help with IE6 scroll on the first load + // http://sourceforge.net/tracker/index.php?func=detail&aid=1568264&group_id=158880&atid=809601 + var dudVar = content.scrollTop; + content.scrollTop += elttoscroll.offsetHeight+2; this.scrollpos[tabid] = content.scrollTop; }, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-11-01 17:28:14
|
Revision: 856 http://svn.sourceforge.net/phpfreechat/?rev=856&view=rev Author: kerphi Date: 2006-11-01 09:10:55 -0800 (Wed, 01 Nov 2006) Log Message: ----------- [en] Russian translation update (thanks to Fromme) [20min] [fr] Mise ?\195?\160 jour de la traduction Russe (merci ?\195?\160 Fromme) [20min] Modified Paths: -------------- trunk/i18n/ru_RU/main.php Modified: trunk/i18n/ru_RU/main.php =================================================================== --- trunk/i18n/ru_RU/main.php 2006-10-31 20:50:47 UTC (rev 855) +++ trunk/i18n/ru_RU/main.php 2006-11-01 17:10:55 UTC (rev 856) @@ -25,6 +25,7 @@ * * @author Stanislav Kondratyuk <an...@gm...> * @author Kamashev Maim <m.k...@gm...> + * @author Fromme */ // line 45 in phpfreechatconfig.class.php @@ -243,71 +244,70 @@ // line 199 in pfcgui.js.tpl.php $GLOBALS["i18n"]["Do you really want to leave this room ?"] = "Вы на самом деле хотите покинуть эту комнату?"; - // line 169 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["Error: '%s' is a private parameter, you are not allowed to change it"] = ""; +$GLOBALS["i18n"]["Error: '%s' is a private parameter, you are not allowed to change it"] = "Ошибка: '%s' это личный параметр, вам запрещено его менять"; // line 253 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be an array"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be an array"] = "'%s' параметр должен быть массивом"; // line 265 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be a boolean"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be a boolean"] = "'%s' параметр должен быть булевым"; // line 271 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be a charatere string"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be a charatere string"] = "'%s' параметр должен быть символьной строкой"; // line 395 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' must be writable"] = ""; +$GLOBALS["i18n"]["'%s' must be writable"] = "'%s' должен быть перезаписываемый"; // line 425 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' directory doesn't exist"] = ""; +$GLOBALS["i18n"]["'%s' directory doesn't exist"] = "'%s' директория не существует"; // line 544 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["Please correct these errors"] = ""; +$GLOBALS["i18n"]["Please correct these errors"] = "Пожалуйста, исправьте эти ошибки"; // line 21 in pfcinfo.class.php -$GLOBALS["i18n"]["Error: the cached config file doesn't exists"] = ""; +$GLOBALS["i18n"]["Error: the cached config file doesn't exists"] = "Ошибка: кешированый файл конфигурации не существует"; // line 190 in phpfreechat.class.php -$GLOBALS["i18n"]["Error: the chat cannot be loaded! two possibilities: your browser doesn't support javascript or you didn't setup correctly the server directories rights - don't hesitate to ask some help on the forum"] = ""; +$GLOBALS["i18n"]["Error: the chat cannot be loaded! two possibilities: your browser doesn't support javascript or you didn't setup correctly the server directories rights - don't hesitate to ask some help on the forum"] = "Ошибка: невозможно загрузить чат! две причины: ваш браузер не поддерживает javascript или вы не настроили правильно права доступа к директориям сервера - не колебайтесь и спросите помощи на форуме"; // line 31 in help.class.php -$GLOBALS["i18n"]["Here is the command list:"] = ""; +$GLOBALS["i18n"]["Here is the command list:"] = "Здесь подан список команд"; // line 63 in identify.class.php -$GLOBALS["i18n"]["Succesfully identified"] = ""; +$GLOBALS["i18n"]["Succesfully identified"] = "Идентификация прошла успешно"; // line 68 in identify.class.php -$GLOBALS["i18n"]["Identification failure"] = ""; +$GLOBALS["i18n"]["Identification failure"] = "Вас не удалось идентифицировать"; // line 25 in send.class.php -$GLOBALS["i18n"]["Your must be connected to send a message"] = ""; +$GLOBALS["i18n"]["Your must be connected to send a message"] = "Вы должны быть подключены для отправки сообщения"; // line 87 in chat.js.tpl.php -$GLOBALS["i18n"]["Click here to send your message"] = ""; +$GLOBALS["i18n"]["Click here to send your message"] = "Нажмите здесь для отправки сообщения"; // line 80 in chat.js.tpl.php -$GLOBALS["i18n"]["Enter the text to format"] = ""; +$GLOBALS["i18n"]["Enter the text to format"] = "Введите текст для форматирования"; // line 81 in chat.js.tpl.php -$GLOBALS["i18n"]["Configuration has been rehashed"] = ""; +$GLOBALS["i18n"]["Configuration has been rehashed"] = "Конфигурация была перехеширована"; // line 82 in chat.js.tpl.php -$GLOBALS["i18n"]["A problem occurs during rehash"] = ""; +$GLOBALS["i18n"]["A problem occurs during rehash"] = "Произошла ошибка при перехешировании"; // line 83 in chat.js.tpl.php -$GLOBALS["i18n"]["Choosen nickname is allready used"] = ""; +$GLOBALS["i18n"]["Choosen nickname is allready used"] = "Выбраний ник уже используется"; // line 84 in chat.js.tpl.php -$GLOBALS["i18n"]["phpfreechat current version is %s"] = ""; +$GLOBALS["i18n"]["phpfreechat current version is %s"] = "Текущая версия phpfreechat - %s"; // line 85 in chat.js.tpl.php -$GLOBALS["i18n"]["Maximum number of joined channels has been reached"] = ""; +$GLOBALS["i18n"]["Maximum number of joined channels has been reached"] = "Было достигнуто максимальное количество возможных подключеных комнат"; // line 86 in chat.js.tpl.php -$GLOBALS["i18n"]["Maximum number of private chat has been reached"] = ""; +$GLOBALS["i18n"]["Maximum number of private chat has been reached"] = "Было достигнуто максимальное количество возможных личных сообщений чата"; // line 88 in chat.js.tpl.php -$GLOBALS["i18n"]["Send"] = ""; +$GLOBALS["i18n"]["Send"] = "Послать"; -?> \ No newline at end of file +?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-10-31 20:51:03
|
Revision: 855 http://svn.sourceforge.net/phpfreechat/?rev=855&view=rev Author: kerphi Date: 2006-10-31 12:50:47 -0800 (Tue, 31 Oct 2006) Log Message: ----------- [en] Add the nickname near the nickid in the /banlist result [20min] [fr] Ajout du pseudonyme ?\195?\160 cot?\195?\169 de l'id du pseudo dans le r?\195?\169sultat de la commande /banlist [20min] Modified Paths: -------------- trunk/src/commands/banlist.class.php Modified: trunk/src/commands/banlist.class.php =================================================================== --- trunk/src/commands/banlist.class.php 2006-10-31 20:30:36 UTC (rev 854) +++ trunk/src/commands/banlist.class.php 2006-10-31 20:50:47 UTC (rev 855) @@ -16,8 +16,8 @@ $c =& $this->c; $u =& $this->u; - $container =& $c->getContainerInstance(); - $banlist = $container->getChanMeta($p["recipient"], 'banlist_nickid'); + $ct =& $c->getContainerInstance(); + $banlist = $ct->getChanMeta($p["recipient"], 'banlist_nickid'); if ($banlist == NULL) $banlist = array(); else $banlist = unserialize($banlist); $msg = ""; @@ -25,7 +25,11 @@ if (count($banlist)>0) { $msg .= "<ul>"; - foreach($banlist as $b) $msg .= "<li style=\"margin-left:50px\">".$b."</li>"; + foreach($banlist as $b) + { + $n = $ct->getNickname($b); + $msg .= "<li style=\"margin-left:50px\">".$b." (".$n.")</li>"; + } $msg .= "</ul>"; } else This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-10-31 20:30:44
|
Revision: 854 http://svn.sourceforge.net/phpfreechat/?rev=854&view=rev Author: kerphi Date: 2006-10-31 12:30:36 -0800 (Tue, 31 Oct 2006) Log Message: ----------- [en] Bug fix: /banlist does not show banished users ids (sourceforge bug 1588048) [55min] [fr] Bug fix : /banlist ne montre pas la liste des ids bannis (sourceforge bug 1588048) [55min] Modified Paths: -------------- trunk/src/commands/banlist.class.php Modified: trunk/src/commands/banlist.class.php =================================================================== --- trunk/src/commands/banlist.class.php 2006-10-29 17:21:57 UTC (rev 853) +++ trunk/src/commands/banlist.class.php 2006-10-31 20:30:36 UTC (rev 854) @@ -17,7 +17,8 @@ $u =& $this->u; $container =& $c->getContainerInstance(); - $banlist = $container->getChanMeta($p["recipientid"], 'banlist_nickid'); + $banlist = $container->getChanMeta($p["recipient"], 'banlist_nickid'); + if ($banlist == NULL) $banlist = array(); else $banlist = unserialize($banlist); $msg = ""; $msg .= "<p>"._pfc("The banished user's id list is:")."</p>"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-10-29 17:22:08
|
Revision: 853 http://svn.sourceforge.net/phpfreechat/?rev=853&view=rev Author: kerphi Date: 2006-10-29 09:21:57 -0800 (Sun, 29 Oct 2006) Log Message: ----------- [en] Bug fix: add the '/redirect' command used to redirect to an url (used internaly) [10min] [fr] Bug fix : ajout de la commande '/redirect' qui permet de rediriger vers une url (utilisation interne) [10min] Added Paths: ----------- trunk/src/commands/redirect.class.php Added: trunk/src/commands/redirect.class.php =================================================================== --- trunk/src/commands/redirect.class.php (rev 0) +++ trunk/src/commands/redirect.class.php 2006-10-29 17:21:57 UTC (rev 853) @@ -0,0 +1,34 @@ +<?php + +require_once(dirname(__FILE__)."/../pfccommand.class.php"); + +class pfcCommand_redirect extends pfcCommand +{ + var $usage = "/redirect url"; + + function run(&$xml_reponse, $p) + { + $clientid = $p["clientid"]; + $param = $p["param"]; + $sender = $p["sender"]; + $recipient = $p["recipient"]; + $recipientid = $p["recipientid"]; + + $c =& $this->c; + $u =& $this->u; + if (trim($param) == '') + { + // error + $cmdp = $p; + $cmdp["param"] = _pfc("Missing parameter"); + $cmdp["param"] .= " (".$this->usage.")"; + $cmd =& pfcCommand::Factory("error"); + $cmd->run($xml_reponse, $cmdp); + return; + } + + $xml_reponse->addRedirect($param); + } +} + +?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |