phpfreechat-svn Mailing List for phpFreeChat (Page 10)
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...> - 2007-07-20 13:46:56
|
Revision: 1054 http://svn.sourceforge.net/phpfreechat/?rev=1054&view=rev Author: kerphi Date: 2007-07-20 06:46:58 -0700 (Fri, 20 Jul 2007) Log Message: ----------- Bug fix: when all the tabs are closed, the first tab should be open on the front Modified Paths: -------------- trunk/data/public/js/pfcclient.js Modified: trunk/data/public/js/pfcclient.js =================================================================== --- trunk/data/public/js/pfcclient.js 2007-07-19 14:13:08 UTC (rev 1053) +++ trunk/data/public/js/pfcclient.js 2007-07-20 13:46:58 UTC (rev 1054) @@ -226,7 +226,7 @@ var tabid = param[0]; var name = param[1]; this.gui.createTab(name, tabid, "ch"); - if (cmd != "join2") this.gui.setTabById(tabid); + if (cmd != "join2" || this.gui.tabs.length == 1) this.gui.setTabById(tabid); this.refresh_Smileys(); this.refresh_WhosOnline(); } @@ -269,7 +269,7 @@ var tabid = param[0]; var name = param[1]; this.gui.createTab(name, tabid, "pv"); - if (cmd != "privmsg2") this.gui.setTabById(tabid); + if (cmd != "privmsg2" || this.gui.tabs.length == 1) this.gui.setTabById(tabid); this.privmsgs.push(name); this.privmsgids.push(tabid); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-07-19 14:13:09
|
Revision: 1053 http://svn.sourceforge.net/phpfreechat/?rev=1053&view=rev Author: kerphi Date: 2007-07-19 07:13:08 -0700 (Thu, 19 Jul 2007) Log Message: ----------- Add the pfcComet javascript class that will be used to retrive data with ajax/comet system See http://www.zeitoun.net/index.php?2007/06/22/46-how-to-implement-comet-with-php Modified Paths: -------------- trunk/themes/default/chat.js.tpl.php Added Paths: ----------- trunk/data/public/js/pfccomet.js Added: trunk/data/public/js/pfccomet.js =================================================================== --- trunk/data/public/js/pfccomet.js (rev 0) +++ trunk/data/public/js/pfccomet.js 2007-07-19 14:13:08 UTC (rev 1053) @@ -0,0 +1,87 @@ +/** + * This class is used to get data from server using a persistent connexion + * thus the clients are informed in realtime from the server changes (very usefull for a chat application) + * Usage: + * var comet = new pfcComet({'url': './cometbackend.php', 'id': 1}); + * comet.onResponse = function(req) { alert('id:'+req['id']+' response:'+req['data']); }; + * comet.onConnect = function(comet) { alert('connected'); }; + * comet.onDisconnect = function(comet) { alert('disconnected'); }; + */ +var pfcComet = Class.create(); +pfcComet.prototype = { + + url: null, + id: 0, + timeout: 5000, + + _noerror: false, + _ajax: null, + _isconnected: false, + + initialize: function(params) { + if (!params) params = {}; + if (!params['url']) alert('error: url parameter is mandatory'); + this.url = params['url']; + if (params['id']) this.id = params['id']; + if (params['timeout']) this.timeout = params['timeout']; + }, + + connect: function() + { + if (this._isconnected) return; + this._isconnected = true; + this.onConnect(this); + this.waitForData(); + }, + + disconnect: function() + { + if (!this._isconnected) return; + this._isconnected = false; + this.onDisconnect(this); + // remove the registred callbacks in order to ignore the next response + this._ajax.options.onSuccess = null; + this._ajax.options.onComplete = null; + }, + + waitForData: function() + { + if (!this._isconnected) return; + + this._ajax = new Ajax.Request(this.url, { + method: 'get', + parameters: { 'id' : this.id }, + onSuccess: function(transport) { + // handle the server response + var response = transport.responseText.evalJSON(); + this.comet.id = response['id']; + this.comet.onResponse(response); + this.comet._noerror = true; + }, + onComplete: function(transport) { + // send a new ajax request when this request is finished + if (!this.comet._noerror) + // if a connection problem occurs, try to reconnect periodicaly + setTimeout(function(){ this.comet.waitForData(); }.bind(this), this.comet.timeout); + else + // of wait for the next data + this.comet.waitForData(); + this.comet._noerror = false; + } + }); + this._ajax.comet = this; + }, + + /** + * User's callbacks + */ + onResponse: function(response) + { + }, + onConnect: function(comet) + { + }, + onDisconnect: function(comet) + { + }, +} Modified: trunk/themes/default/chat.js.tpl.php =================================================================== --- trunk/themes/default/chat.js.tpl.php 2007-07-17 18:34:54 UTC (rev 1052) +++ trunk/themes/default/chat.js.tpl.php 2007-07-19 14:13:08 UTC (rev 1053) @@ -128,6 +128,7 @@ <script type="text/javascript" src="<?php echo $c->data_public_url; ?>/js/pfcgui.js"></script> <script type="text/javascript" src="<?php echo $c->data_public_url; ?>/js/pfcresource.js"></script> <script type="text/javascript" src="<?php echo $c->data_public_url; ?>/js/pfcprompt.js"></script> +<script type="text/javascript" src="<?php echo $c->data_public_url; ?>/js/pfccomet.js"></script> <div id="pfc_notloading" style="width:270px;background-color:#FFF;color:#000;border:1px solid #000;text-align:center;margin:5px auto 0 auto;font-size:10px;background-image:url('http://img402.imageshack.us/img402/3766/stopcc3.gif');background-repeat:no-repeat;background-position:center center;"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-07-17 18:34:52
|
Revision: 1052 http://svn.sourceforge.net/phpfreechat/?rev=1052&view=rev Author: kerphi Date: 2007-07-17 11:34:54 -0700 (Tue, 17 Jul 2007) Log Message: ----------- 1.0-beta11 Added Paths: ----------- tags/1.0-beta11/ Copied: tags/1.0-beta11 (from rev 1051, trunk) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-07-01 15:17:54
|
Revision: 1051 http://svn.sourceforge.net/phpfreechat/?rev=1051&view=rev Author: kerphi Date: 2007-07-01 08:17:56 -0700 (Sun, 01 Jul 2007) Log Message: ----------- The login box was broken on KHTML browsers Modified Paths: -------------- trunk/data/public/js/pfcprompt.js Modified: trunk/data/public/js/pfcprompt.js =================================================================== --- trunk/data/public/js/pfcprompt.js 2007-07-01 11:52:09 UTC (rev 1050) +++ trunk/data/public/js/pfcprompt.js 2007-07-01 15:17:56 UTC (rev 1051) @@ -119,7 +119,7 @@ { // _doSubmit is called when the user enters or cancels the box. var val = this.prompt_field.value; - this.box.focus(); + if (is_ff) this.box.focus(); // test is_ff because it doesn't work on KHTML browser, the popup shows infinitly this.box.style.display = 'none'; // clear out the dialog box this.bgbox.style.display = 'none'; // clear out the screen this.prompt_field.value = ''; // clear out the text field This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-07-01 11:52:31
|
Revision: 1050 http://svn.sourceforge.net/phpfreechat/?rev=1050&view=rev Author: kerphi Date: 2007-07-01 04:52:09 -0700 (Sun, 01 Jul 2007) Log Message: ----------- Bug fix : IE6 clients were frequently disconnected Modified Paths: -------------- trunk/data/public/js/pfcclient.js trunk/data/public/js/prototype.js trunk/themes/default/chat.js.tpl.php Modified: trunk/data/public/js/pfcclient.js =================================================================== --- trunk/data/public/js/pfcclient.js 2007-07-01 10:41:31 UTC (rev 1049) +++ trunk/data/public/js/pfcclient.js 2007-07-01 11:52:09 UTC (rev 1050) @@ -44,7 +44,6 @@ this.max_refresh_delay = pfc_max_refresh_delay; this.last_response_time = new Date().getTime(); this.last_request_time = new Date().getTime(); - this.canupdatenexttime = true; /* unique client id for each windows used to identify a open window * this id is passed every time the JS communicate with server @@ -333,11 +332,6 @@ } else if (cmd == "update") { - // if the first ever refresh request never makes it back then the chat will keep - // trying to refresh as usual - // this only helps if we temporarily lose connection in the middle of an established - // chat session - this.canupdatenexttime = true; } else if (cmd == "version") { @@ -925,20 +919,8 @@ clearTimeout(this.timeout); if (start) { - var res = true; - if (this.canupdatenexttime) - { - // the connection is ok - res = this.sendRequest('/update'); - this.canupdatenexttime = false; // don't update if the last 'ok' response is not yet received - } - else if ((new Date().getTime() - this.last_response_time) > this.max_refresh_delay) - { - // the connection is probably closed or very slow - res = this.sendRequest('/update'); - this.canupdatenexttime = false; // don't update if the last 'ok' response is not yet received - this.last_response_time = new Date().getTime(); - } + this.sendRequest('/update'); + // setup the next update this.timeout = setTimeout('pfc.updateChat(true)', this.refresh_delay); } @@ -1802,4 +1784,4 @@ this.pfc = new pfcPrompt($('pfc_container')); return this.pfc; } -}; \ No newline at end of file +}; Modified: trunk/data/public/js/prototype.js =================================================================== --- trunk/data/public/js/prototype.js 2007-07-01 10:41:31 UTC (rev 1049) +++ trunk/data/public/js/prototype.js 2007-07-01 11:52:09 UTC (rev 1050) @@ -1,4 +1,4 @@ -/* Prototype JavaScript framework, version 1.5.1 +/* Prototype JavaScript framework, version 1.5.1.1 * (c) 2005-2007 Sam Stephenson * * Prototype is freely distributable under the terms of an MIT-style license. @@ -7,7 +7,7 @@ /*--------------------------------------------------------------------------*/ var Prototype = { - Version: '1.5.1', + Version: '1.5.1.1', Browser: { IE: !!(window.attachEvent && !window.opera), @@ -24,8 +24,8 @@ document.createElement('form').__proto__) }, - ScriptFragment: '<script[^>]*>([\u0001-\uFFFF]*?)</script>', - JSONFilter: /^\/\*-secure-\s*(.*)\s*\*\/\s*$/, + ScriptFragment: '<script[^>]*>([\\S\\s]*?)<\/script>', + JSONFilter: /^\/\*-secure-([\s\S]*)\*\/\s*$/, emptyFunction: function() { }, K: function(x) { return x } @@ -364,11 +364,15 @@ return this.sub(filter || Prototype.JSONFilter, '#{1}'); }, + isJSON: function() { + var str = this.replace(/\\./g, '@').replace(/"[^"\\\n\r]*"/g, ''); + return (/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(str); + }, + evalJSON: function(sanitize) { var json = this.unfilterJSON(); try { - if (!sanitize || (/^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/.test(json))) - return eval('(' + json + ')'); + if (!sanitize || json.isJSON()) return eval('(' + json + ')'); } catch (e) { } throw new SyntaxError('Badly formed JSON string: ' + this.inspect()); }, @@ -1270,10 +1274,12 @@ } else document.getElementsByClassName = function(className, parentElement) { var children = ($(parentElement) || document.body).getElementsByTagName('*'); - var elements = [], child; + var elements = [], child, pattern = new RegExp("(^|\\s)" + className + "(\\s|$)"); for (var i = 0, length = children.length; i < length; i++) { child = children[i]; - if (Element.hasClassName(child, className)) + var elementClassName = child.className; + if (elementClassName.length == 0) continue; + if (elementClassName == className || elementClassName.match(pattern)) elements.push(Element.extend(child)); } return elements; Modified: trunk/themes/default/chat.js.tpl.php =================================================================== --- trunk/themes/default/chat.js.tpl.php 2007-07-01 10:41:31 UTC (rev 1049) +++ trunk/themes/default/chat.js.tpl.php 2007-07-01 11:52:09 UTC (rev 1050) @@ -73,7 +73,7 @@ params['f'] = 'handleRequest'; params['cmd'] = cmd; new Ajax.Request(url, { - method: 'post', + method: 'get', parameters: params, onSuccess: function(transport) { eval( transport.responseText ); @@ -158,4 +158,4 @@ <?php if ($debug) { ?> <div id="pfc_debug"></div> -<?php } ?> \ No newline at end of file +<?php } ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-07-01 10:41:31
|
Revision: 1049 http://svn.sourceforge.net/phpfreechat/?rev=1049&view=rev Author: kerphi Date: 2007-07-01 03:41:31 -0700 (Sun, 01 Jul 2007) Log Message: ----------- Bug fix: On IE6 /leave command was broken Modified Paths: -------------- trunk/data/public/js/pfcgui.js Modified: trunk/data/public/js/pfcgui.js =================================================================== --- trunk/data/public/js/pfcgui.js 2007-07-01 10:00:25 UTC (rev 1048) +++ trunk/data/public/js/pfcgui.js 2007-07-01 10:41:31 UTC (rev 1049) @@ -174,7 +174,7 @@ // empty the chat div content var div_chat = this.getChatContentFromTabId(tabid); - div_chat.update(''); + div_chat.innerHTML = ''; // do not use ".update('')" or ".remove()" because it do not works on IE6 // remove the tab from the list var tabpos = indexOf(this.tabids, tabid); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-07-01 10:00:24
|
Revision: 1048 http://svn.sourceforge.net/phpfreechat/?rev=1048&view=rev Author: kerphi Date: 2007-07-01 03:00:25 -0700 (Sun, 01 Jul 2007) Log Message: ----------- Bug fix : the theme was broken (sourceforge bug 1745898) Modified Paths: -------------- trunk/src/pfcglobalconfig.class.php trunk/src/phpfreechat.class.php Modified: trunk/src/pfcglobalconfig.class.php =================================================================== --- trunk/src/pfcglobalconfig.class.php 2007-07-01 09:55:19 UTC (rev 1047) +++ trunk/src/pfcglobalconfig.class.php 2007-07-01 10:00:25 UTC (rev 1048) @@ -421,6 +421,12 @@ $this->server_script_url = relativePath($this->client_script_path, $this->server_script_path).'/'.basename($filetotest).$this->_query_string; } + // check if the theme_path parameter are correctly setup + if ($this->theme_default_path == '' || !is_dir($this->theme_default_path)) + $this->theme_default_path = dirname(__FILE__).'/../themes'; + if ($this->theme_path == '' || !is_dir($this->theme_path)) + $this->theme_path = $this->theme_default_path; + // If the user didn't give any theme_default_url value, // copy the default theme resources in a public directory if ($this->theme_default_url == '') @@ -437,19 +443,25 @@ dirname(__FILE__).'/../themes/default', $this->data_public_path.'/themes/default'); } + $this->theme_default_url = $this->data_public_url.'/themes'; } - - // check if the theme_path parameter are correctly setup - if ($this->theme_default_path == '' || !is_dir($this->theme_default_path)) - $this->theme_default_path = dirname(__FILE__).'/../themes'; - if ($this->theme_path == '' || !is_dir($this->theme_path)) - $this->theme_path = $this->theme_default_path; - // calculate theme url - if ($this->theme_default_url == '') - $this->theme_default_url = $this->data_public_url.'/themes'; if ($this->theme_url == '') + { + mkdir_r($this->data_public_path.'/themes/'.$this->theme); + if (!is_dir($this->data_public_path.'/themes/'.$this->theme)) + $this->errors[] = _pfc("cannot create %s", $this->data_public_path.'/themes/'.$this->theme); + else + { + $ret = copy_r( $this->theme_path.'/'.$this->theme, + $this->data_public_path.'/themes/'.$this->theme ); + if (!$ret) + $this->errors[] = _pfc("cannot copy %s in %s", + $this->theme_path.'/'.$this->theme, + $this->data_public_path.'/themes/'.$this->theme); + } $this->theme_url = $this->theme_default_url; - + } + // if the user do not have an existing prototype.js library, we use the embeded one if ($this->prototypejs_url == '') $this->prototypejs_url = $this->data_public_url.'/js/prototype.js'; @@ -526,12 +538,13 @@ $result = array(); foreach($theme as $line) { + $line = trim($line); if (preg_match("/^#.*/",$line)) continue; - else if (preg_match("/^([a-z_\-0-9]*(\.gif|\.png))(.*)$/i",$line,$res)) + else if (preg_match("/([a-z_\-0-9\.]+)(.*)$/i",$line,$res)) { $smiley_file = 'smileys/'.$res[1]; - $smiley_str = trim($res[3])."\n"; + $smiley_str = trim($res[2])."\n"; $smiley_str = str_replace("\n", "", $smiley_str); $smiley_str = str_replace("\t", " ", $smiley_str); $smiley_str_tab = explode(" ", $smiley_str); Modified: trunk/src/phpfreechat.class.php =================================================================== --- trunk/src/phpfreechat.class.php 2007-07-01 09:55:19 UTC (rev 1047) +++ trunk/src/phpfreechat.class.php 2007-07-01 10:00:25 UTC (rev 1048) @@ -349,7 +349,11 @@ if ($xml_reponse == null) $xml_reponse =& new pfcResponse(); $c =& pfcGlobalConfig::Instance(); - $c->theme = $theme; + + // do not overload the theme parameter as long as + // the ajax request do not give the correct one + // $c->theme = $theme; + $u =& pfcUserConfig::Instance(); $js = '';//file_get_contents(dirname(__FILE__).'/client/createstylerule.js'); @@ -396,7 +400,7 @@ if ($xml_reponse == null) $xml_reponse =& new pfcResponse(); $c =& pfcGlobalConfig::Instance(); - + $js = ''; // load customize.js.php @@ -524,7 +528,11 @@ if ($xml_reponse == null) $xml_reponse =& new pfcResponse(); $c =& pfcGlobalConfig::Instance(); - $c->theme = $theme; + + // do not overload the theme parameter as long as + // the ajax request do not give the correct one + // $c->theme = $theme; + $u =& pfcUserConfig::Instance(); $html = ''; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-07-01 09:55:22
|
Revision: 1047 http://svn.sourceforge.net/phpfreechat/?rev=1047&view=rev Author: kerphi Date: 2007-07-01 02:55:19 -0700 (Sun, 01 Jul 2007) Log Message: ----------- simplify a simley shortcut Modified Paths: -------------- trunk/themes/phpbb2/smileys/theme.txt Modified: trunk/themes/phpbb2/smileys/theme.txt =================================================================== --- trunk/themes/phpbb2/smileys/theme.txt 2007-06-30 21:12:12 UTC (rev 1046) +++ trunk/themes/phpbb2/smileys/theme.txt 2007-07-01 09:55:19 UTC (rev 1047) @@ -27,7 +27,7 @@ eusa_hand.gif =; eusa_sick.gif :-& eusa_boohoo.gif :boohoo: -eusa_dance.gif \\:D/ +eusa_dance.gif :dance: eusa_silenced.gif :-# eusa_whistle.gif :-" eusa_wall.gif ](*,) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-06-30 21:12:10
|
Revision: 1046 http://svn.sourceforge.net/phpfreechat/?rev=1046&view=rev Author: kerphi Date: 2007-06-30 14:12:12 -0700 (Sat, 30 Jun 2007) Log Message: ----------- prepare 1.0-beta11 Modified Paths: -------------- trunk/version.txt Modified: trunk/version.txt =================================================================== --- trunk/version.txt 2007-06-30 21:07:30 UTC (rev 1045) +++ trunk/version.txt 2007-06-30 21:12:12 UTC (rev 1046) @@ -1 +1 @@ -1.0-beta10 \ No newline at end of file +1.0-beta11 \ 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...> - 2007-06-30 21:07:28
|
Revision: 1045 http://svn.sourceforge.net/phpfreechat/?rev=1045&view=rev Author: kerphi Date: 2007-06-30 14:07:30 -0700 (Sat, 30 Jun 2007) Log Message: ----------- Bug fix: clicking on the nick in the chat area was broken in IE6 (thanks to onslo) Bug fix : cliquer sur les pseudonymes dans la zone du chat provoquait une erreur dans IE6 (merci ?\195?\160 onslo) Modified Paths: -------------- trunk/data/public/js/pfcclient.js Modified: trunk/data/public/js/pfcclient.js =================================================================== --- trunk/data/public/js/pfcclient.js 2007-06-30 20:43:19 UTC (rev 1044) +++ trunk/data/public/js/pfcclient.js 2007-06-30 21:07:30 UTC (rev 1045) @@ -1550,11 +1550,10 @@ if (document.selection && document.selection.createRange) { msgfield.focus(); - sel = document.selection.createRange(); - var text = sel.text; + pfcp.sel = document.selection.createRange(); + var text = pfcp.sel.text; if (text == "" && promptifselempty) { - pfcp.sel = document.selection.createRange(); pfcp.prompt(this.res.getLabel('Enter the text to format'), ''); pfcp.focus(); } @@ -1594,7 +1593,6 @@ var promptifselempty = pfcp.promptifselempty; var msgfield = pfcp.msgfield; var sel = pfcp.sel; - // IE support if (document.selection && document.selection.createRange) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-06-30 20:43:16
|
Revision: 1044 http://svn.sourceforge.net/phpfreechat/?rev=1044&view=rev Author: kerphi Date: 2007-06-30 13:43:19 -0700 (Sat, 30 Jun 2007) Log Message: ----------- When closing private chat the popup mesage was not explicite Modified Paths: -------------- trunk/data/public/js/pfcgui.js trunk/src/pfci18n.class.php trunk/src/phpfreechat.class.php Modified: trunk/data/public/js/pfcgui.js =================================================================== --- trunk/data/public/js/pfcgui.js 2007-06-30 20:40:38 UTC (rev 1043) +++ trunk/data/public/js/pfcgui.js 2007-06-30 20:43:19 UTC (rev 1044) @@ -254,7 +254,9 @@ a2.pfc_tabname = name; a2.pfc_tabtype = type; a2.onclick = function(){ - var res = confirm(pfc.res.getLabel('Do you really want to leave this room ?')); + var msg = (type == 'pv' ? 'Are you sure you want to close this tab ?' : + 'Do you really want to leave this room ?'); + var res = confirm(pfc.res.getLabel(msg)); if (res == true) pfc.sendRequest('/leave',this.pfc_tabid); return false; Modified: trunk/src/pfci18n.class.php =================================================================== --- trunk/src/pfci18n.class.php 2007-06-30 20:40:38 UTC (rev 1043) +++ trunk/src/pfci18n.class.php 2007-06-30 20:43:19 UTC (rev 1044) @@ -103,7 +103,7 @@ */ function GetAcceptedLanguage($type="main") { - return /*<GetAcceptedLanguage>*/array('ar_LB','sv_SE','ja_JP','ba_BA','pt_PT','el_GR','tr_TR','hy_AM','nb_NO','zh_TW','ru_RU','fr_FR','es_ES','bg_BG','zh_CN','nl_NL','de_DE-informal','pl_PL','pt_BR','it_IT','id_ID','hu_HU','en_US','sr_CS','de_DE-formal','eo','bn_BD','uk_UA','uk_RO','ko_KR','da_DK','nn_NO','vi_VN','hr_HR');/*</GetAcceptedLanguage>*/ + return /*<GetAcceptedLanguage>*/array('ar_LB','sv_SE','uk_RO','ja_JP','ba_BA','pt_PT','el_GR','tr_TR','nb_NO','zh_TW','ru_RU','hy_AM','fr_FR','es_ES','bg_BG','zh_CN','nl_NL','eo','bn_BD','uk_UA','de_DE-informal','pl_PL','pt_BR','it_IT','id_ID','hu_HU','en_US','sr_CS','de_DE-formal','ko_KR','da_DK','nn_NO','vi_VN','hr_HR');/*</GetAcceptedLanguage>*/ } /** Modified: trunk/src/phpfreechat.class.php =================================================================== --- trunk/src/phpfreechat.class.php 2007-06-30 20:40:38 UTC (rev 1043) +++ trunk/src/phpfreechat.class.php 2007-06-30 20:43:19 UTC (rev 1044) @@ -411,6 +411,7 @@ $labels_to_load = array( "Do you really want to leave this room ?", // _pfc + "Are you sure you want to close this tab ?", // _pfc "Hide nickname marker", // _pfc "Show nickname marker", // _pfc "Hide dates and hours", // _pfc This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-06-30 20:40:38
|
Revision: 1043 http://svn.sourceforge.net/phpfreechat/?rev=1043&view=rev Author: kerphi Date: 2007-06-30 13:40:38 -0700 (Sat, 30 Jun 2007) Log Message: ----------- Update some labels Modified Paths: -------------- trunk/i18n/ar_LB/main.php trunk/i18n/ba_BA/main.php trunk/i18n/bg_BG/main.php trunk/i18n/bn_BD/main.php trunk/i18n/da_DK/main.php trunk/i18n/de_DE-formal/main.php trunk/i18n/de_DE-informal/main.php trunk/i18n/el_GR/main.php trunk/i18n/en_US/main.php trunk/i18n/eo/main.php trunk/i18n/es_ES/main.php trunk/i18n/fr_FR/main.php trunk/i18n/hr_HR/main.php trunk/i18n/hu_HU/main.php trunk/i18n/hy_AM/main.php trunk/i18n/id_ID/main.php trunk/i18n/it_IT/main.php trunk/i18n/ja_JP/main.php trunk/i18n/ko_KR/main.php trunk/i18n/nb_NO/main.php trunk/i18n/nl_NL/main.php trunk/i18n/nn_NO/main.php trunk/i18n/pl_PL/main.php trunk/i18n/pt_BR/main.php trunk/i18n/pt_PT/main.php trunk/i18n/ru_RU/main.php trunk/i18n/sr_CS/main.php trunk/i18n/sv_SE/main.php trunk/i18n/tr_TR/main.php trunk/i18n/uk_RO/main.php trunk/i18n/uk_UA/main.php trunk/i18n/vi_VN/main.php trunk/i18n/zh_CN/main.php trunk/i18n/zh_TW/main.php Modified: trunk/i18n/ar_LB/main.php =================================================================== --- trunk/i18n/ar_LB/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/ar_LB/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -381,4 +381,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/ba_BA/main.php =================================================================== --- trunk/i18n/ba_BA/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/ba_BA/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -384,4 +384,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/bg_BG/main.php =================================================================== --- trunk/i18n/bg_BG/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/bg_BG/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -379,4 +379,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/bn_BD/main.php =================================================================== --- trunk/i18n/bn_BD/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/bn_BD/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -385,4 +385,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/da_DK/main.php =================================================================== --- trunk/i18n/da_DK/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/da_DK/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -381,4 +381,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/de_DE-formal/main.php =================================================================== --- trunk/i18n/de_DE-formal/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/de_DE-formal/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -386,4 +386,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/de_DE-informal/main.php =================================================================== --- trunk/i18n/de_DE-informal/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/de_DE-informal/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -387,4 +387,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/el_GR/main.php =================================================================== --- trunk/i18n/el_GR/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/el_GR/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -380,4 +380,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/en_US/main.php =================================================================== --- trunk/i18n/en_US/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/en_US/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -381,4 +381,20 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = "Cancel"; -?> + +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = "cannot create %s"; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = "cannot copy %s in %s"; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = "Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = "Are you sure you want to close this tab ?"; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = "%s banished from %s by %s"; + +?> \ No newline at end of file Modified: trunk/i18n/eo/main.php =================================================================== --- trunk/i18n/eo/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/eo/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -384,4 +384,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/es_ES/main.php =================================================================== --- trunk/i18n/es_ES/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/es_ES/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -382,4 +382,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/fr_FR/main.php =================================================================== --- trunk/i18n/fr_FR/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/fr_FR/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -381,4 +381,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = "Annuler"; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = "Impossible de créer %s"; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = "Impossible de copier %s dans %s"; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = "Erreur : '%s' introuvable, vérifiez que votre theme_path '%s' et que votre theme '%s' sont correctes"; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = "Êtes vous certain de vouloir fermer cet onglet ?"; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = "%s banni de %s par %s"; + ?> \ No newline at end of file Modified: trunk/i18n/hr_HR/main.php =================================================================== --- trunk/i18n/hr_HR/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/hr_HR/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -384,4 +384,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = "Odustani"; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/hu_HU/main.php =================================================================== --- trunk/i18n/hu_HU/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/hu_HU/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -383,4 +383,20 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = "Mégse"; -?> + +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + +?> \ No newline at end of file Modified: trunk/i18n/hy_AM/main.php =================================================================== --- trunk/i18n/hy_AM/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/hy_AM/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -384,4 +384,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/id_ID/main.php =================================================================== --- trunk/i18n/id_ID/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/id_ID/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -384,4 +384,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/it_IT/main.php =================================================================== --- trunk/i18n/it_IT/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/it_IT/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -384,4 +384,20 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = "Annulla"; -?> + +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + +?> \ No newline at end of file Modified: trunk/i18n/ja_JP/main.php =================================================================== --- trunk/i18n/ja_JP/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/ja_JP/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -382,4 +382,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/ko_KR/main.php =================================================================== --- trunk/i18n/ko_KR/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/ko_KR/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -382,4 +382,20 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = "취소"; -?> + +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + +?> \ No newline at end of file Modified: trunk/i18n/nb_NO/main.php =================================================================== --- trunk/i18n/nb_NO/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/nb_NO/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -381,4 +381,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/nl_NL/main.php =================================================================== --- trunk/i18n/nl_NL/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/nl_NL/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -382,4 +382,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/nn_NO/main.php =================================================================== --- trunk/i18n/nn_NO/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/nn_NO/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -381,4 +381,20 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = "Avbryt"; -?> + +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + +?> \ No newline at end of file Modified: trunk/i18n/pl_PL/main.php =================================================================== --- trunk/i18n/pl_PL/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/pl_PL/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -384,4 +384,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = "Anuluj"; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/pt_BR/main.php =================================================================== --- trunk/i18n/pt_BR/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/pt_BR/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -386,4 +386,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/pt_PT/main.php =================================================================== --- trunk/i18n/pt_PT/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/pt_PT/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -382,4 +382,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/ru_RU/main.php =================================================================== --- trunk/i18n/ru_RU/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/ru_RU/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -386,4 +386,20 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = "Отмена"; -?> + +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + +?> \ No newline at end of file Modified: trunk/i18n/sr_CS/main.php =================================================================== --- trunk/i18n/sr_CS/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/sr_CS/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -384,4 +384,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/sv_SE/main.php =================================================================== --- trunk/i18n/sv_SE/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/sv_SE/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -389,4 +389,20 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = "Avbryt"; -?> + +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + +?> \ No newline at end of file Modified: trunk/i18n/tr_TR/main.php =================================================================== --- trunk/i18n/tr_TR/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/tr_TR/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -381,4 +381,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/uk_RO/main.php =================================================================== --- trunk/i18n/uk_RO/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/uk_RO/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -381,4 +381,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/uk_UA/main.php =================================================================== --- trunk/i18n/uk_UA/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/uk_UA/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -380,4 +380,20 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = "Відміна"; -?> + +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + +?> \ No newline at end of file Modified: trunk/i18n/vi_VN/main.php =================================================================== --- trunk/i18n/vi_VN/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/vi_VN/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -381,4 +381,20 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = "Thôi"; -?> + +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + +?> \ No newline at end of file Modified: trunk/i18n/zh_CN/main.php =================================================================== --- trunk/i18n/zh_CN/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/zh_CN/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -383,4 +383,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = "取消"; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ No newline at end of file Modified: trunk/i18n/zh_TW/main.php =================================================================== --- trunk/i18n/zh_TW/main.php 2007-06-30 19:24:58 UTC (rev 1042) +++ trunk/i18n/zh_TW/main.php 2007-06-30 20:40:38 UTC (rev 1043) @@ -381,4 +381,19 @@ // line 479 in phpfreechat.class.php $GLOBALS["i18n"]["Cancel"] = ""; +// line 430 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot create %s"] = ""; + +// line 436 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["cannot copy %s in %s"] = ""; + +// line 667 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' could not be found, please check your theme_path '%s' and your theme '%s' are correct"] = ""; + +// line 414 in phpfreechat.class.php +$GLOBALS["i18n"]["Are you sure you want to close this tab ?"] = ""; + +// line 42 in ban.class.php +$GLOBALS["i18n"]["%s banished from %s by %s"] = ""; + ?> \ 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...> - 2007-06-30 19:24:59
|
Revision: 1042 http://svn.sourceforge.net/phpfreechat/?rev=1042&view=rev Author: kerphi Date: 2007-06-30 12:24:58 -0700 (Sat, 30 Jun 2007) Log Message: ----------- Bug fix: when max_msg was null and a new channel was joined dynamicaly, the new posted message were invisible (thanks to white_devil) Bug fix : lorsque max_msg ?\195?\169tait null et qu'un nouveau salon ?\195?\169tait cr?\195?\169?\195?\169 dynamiquement, les prochain messages envoy?\195?\169s dans le salon ?\195?\169taient invisibles (merci ?\195?\160 white_devil) Modified Paths: -------------- trunk/src/commands/getnewmsg.class.php Modified: trunk/src/commands/getnewmsg.class.php =================================================================== --- trunk/src/commands/getnewmsg.class.php 2007-06-30 19:21:04 UTC (rev 1041) +++ trunk/src/commands/getnewmsg.class.php 2007-06-30 19:24:58 UTC (rev 1042) @@ -48,16 +48,16 @@ // create a new lock $_SESSION["pfc_lock_readnewmsg_".$c->getId()."_".$clientid] = time(); - // read the last from_id value $container =& pfcContainer::Instance(); $from_id_sid = "pfc_from_id_".$c->getId()."_".$clientid."_".$recipientid; + $from_id = 0; if (isset($_SESSION[$from_id_sid])) $from_id = $_SESSION[$from_id_sid]; else { - $from_id = $container->getLastId($recipient)-$c->max_msg; + $from_id = $container->getLastId($recipient) - $c->max_msg - 1; if ($from_id < 0) $from_id = 0; } // check if this is the first time you get messages This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-06-30 19:21:07
|
Revision: 1041 http://svn.sourceforge.net/phpfreechat/?rev=1041&view=rev Author: kerphi Date: 2007-06-30 12:21:04 -0700 (Sat, 30 Jun 2007) Log Message: ----------- cleaning Modified Paths: -------------- trunk/src/pfcglobalconfig.class.php Modified: trunk/src/pfcglobalconfig.class.php =================================================================== --- trunk/src/pfcglobalconfig.class.php 2007-06-30 17:34:36 UTC (rev 1040) +++ trunk/src/pfcglobalconfig.class.php 2007-06-30 19:21:04 UTC (rev 1041) @@ -121,8 +121,6 @@ var $theme_default_path = ''; var $theme_url = ''; var $theme_default_url = ''; - - var $baseurl = ""; var $language = ""; // could be something in i18n/* directory ("" means the language is guess from the server config) var $output_encoding = "UTF-8"; // could be ISO-8859-1 or anything else (which must be supported by iconv php module) @@ -173,7 +171,7 @@ // private parameters var $_sys_proxies = array("lock", "checktimeout", "checknickchange", "auth", "noflood", "censor", "log"); - var $_dyn_params = array("nick","isadmin","islocked","admins","frozen_channels", "channels", "privmsg", "nickmeta","baseurl","time_offset","date_format","time_format"); + var $_dyn_params = array("nick","isadmin","islocked","admins","frozen_channels", "channels", "privmsg", "nickmeta","time_offset","date_format","time_format"); var $_params_type = array(); var $_query_string = ''; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-06-30 17:34:40
|
Revision: 1040 http://svn.sourceforge.net/phpfreechat/?rev=1040&view=rev Author: kerphi Date: 2007-06-30 10:34:36 -0700 (Sat, 30 Jun 2007) Log Message: ----------- Bug fix: nicknames with spaces were broken when using the 'nick' parameter Bug fix : les pseudonymes avec des espaces ne fonctionnaient pas lorsque l'on utilisait le param?\195?\168tre 'nick' Modified Paths: -------------- trunk/data/public/js/pfcclient.js Modified: trunk/data/public/js/pfcclient.js =================================================================== --- trunk/data/public/js/pfcclient.js 2007-06-26 10:02:44 UTC (rev 1039) +++ trunk/data/public/js/pfcclient.js 2007-06-30 17:34:36 UTC (rev 1040) @@ -1475,7 +1475,7 @@ if (this.nickname == '') this.askNick(); else - this.sendRequest('/connect '+this.nickname); + this.sendRequest('/connect "'+this.nickname+'"'); } }, refresh_loginlogout: function() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-06-26 10:02:44
|
Revision: 1039 http://svn.sourceforge.net/phpfreechat/?rev=1039&view=rev Author: kerphi Date: 2007-06-26 03:02:44 -0700 (Tue, 26 Jun 2007) Log Message: ----------- Bug fix: sometime, FF has problem with cursor in the input field prompt (sourceforge bug 1709581) Modified Paths: -------------- trunk/data/public/js/pfcprompt.js Modified: trunk/data/public/js/pfcprompt.js =================================================================== --- trunk/data/public/js/pfcprompt.js 2007-06-26 09:45:59 UTC (rev 1038) +++ trunk/data/public/js/pfcprompt.js 2007-06-26 10:02:44 UTC (rev 1039) @@ -27,6 +27,10 @@ this.box.style.zIndex = 100; this.box.style.display = 'none'; + if (is_ff) { + this.box.style.overflow = 'auto'; + } + var div = document.createElement('h2'); div.appendChild(document.createTextNode(pfc.res.getLabel('Input Required'))); this.box.appendChild(div); @@ -115,6 +119,7 @@ { // _doSubmit is called when the user enters or cancels the box. var val = this.prompt_field.value; + this.box.focus(); this.box.style.display = 'none'; // clear out the dialog box this.bgbox.style.display = 'none'; // clear out the screen this.prompt_field.value = ''; // clear out the text field This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-06-26 09:45:57
|
Revision: 1038 http://svn.sourceforge.net/phpfreechat/?rev=1038&view=rev Author: kerphi Date: 2007-06-26 02:45:59 -0700 (Tue, 26 Jun 2007) Log Message: ----------- Bug fix: noflood proxy was broken (sourceforge bug 1708662) Modified Paths: -------------- trunk/src/proxies/noflood.class.php Modified: trunk/src/proxies/noflood.class.php =================================================================== --- trunk/src/proxies/noflood.class.php 2007-06-26 09:33:22 UTC (rev 1037) +++ trunk/src/proxies/noflood.class.php 2007-06-26 09:45:59 UTC (rev 1038) @@ -77,8 +77,10 @@ // kick the flooder $cmdp = $p; - $cmdp["param"] = $recipientid." "; - $cmdp["param"] .=_pfc("kicked from %s by %s", $u->channels[$recipientid]["name"], "noflood"); + $cmdp["param"] = null; + $cmdp["params"][0] = "ch"; + $cmdp["params"][1] = $u->channels[$recipientid]["name"]; + $cmdp["params"][2] .=_pfc("kicked from %s by %s", $u->channels[$recipientid]["name"], "noflood"); $cmd =& pfcCommand::Factory("leave"); $cmd->run($xml_reponse, $cmdp); return false; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-06-26 09:33:20
|
Revision: 1037 http://svn.sourceforge.net/phpfreechat/?rev=1037&view=rev Author: kerphi Date: 2007-06-26 02:33:22 -0700 (Tue, 26 Jun 2007) Log Message: ----------- Bug fix: pfcclient-custo.js.tpl.php include was broken (sourceforge bug 1743405) Modified Paths: -------------- branches/0.x/themes/default/templates/pfcclient.js.tpl.php Modified: branches/0.x/themes/default/templates/pfcclient.js.tpl.php =================================================================== --- branches/0.x/themes/default/templates/pfcclient.js.tpl.php 2007-06-23 12:36:56 UTC (rev 1036) +++ branches/0.x/themes/default/templates/pfcclient.js.tpl.php 2007-06-26 09:33:22 UTC (rev 1037) @@ -1021,4 +1021,4 @@ }; -<?php include($c->getFileUrlFromTheme('templates/pfcclient-custo.js.tpl.php')); ?> +<?php include($c->getFilePathFromTheme('templates/pfcclient-custo.js.tpl.php')); ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-06-23 12:39:13
|
Revision: 1036 http://svn.sourceforge.net/phpfreechat/?rev=1036&view=rev Author: kerphi Date: 2007-06-23 05:36:56 -0700 (Sat, 23 Jun 2007) Log Message: ----------- Bug fix: sometime pfcCommand::Factory was returning NULL reference (thanks to Antinoo) Modified Paths: -------------- trunk/src/pfccommand.class.php Modified: trunk/src/pfccommand.class.php =================================================================== --- trunk/src/pfccommand.class.php 2007-06-11 16:31:36 UTC (rev 1035) +++ trunk/src/pfccommand.class.php 2007-06-23 12:36:56 UTC (rev 1036) @@ -65,8 +65,7 @@ $cmd_filename = $c->cmd_path.'/'.$cmd_name.'.class.php'; if (file_exists($cmd_filename)) require_once($cmd_filename); - if (!class_exists($cmd_classname)) - return NULL; + if (!class_exists($cmd_classname)) { $tmp = NULL; return $tmp; } $cmd =& new $cmd_classname; $cmd->name = $cmd_name; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-06-11 16:31:36
|
Revision: 1035 http://svn.sourceforge.net/phpfreechat/?rev=1035&view=rev Author: kerphi Date: 2007-06-11 09:31:36 -0700 (Mon, 11 Jun 2007) Log Message: ----------- Do not hide the close button in pv when displaytabclosebutton is false. Modified Paths: -------------- trunk/data/public/js/pfcgui.js Modified: trunk/data/public/js/pfcgui.js =================================================================== --- trunk/data/public/js/pfcgui.js 2007-06-11 08:19:13 UTC (rev 1034) +++ trunk/data/public/js/pfcgui.js 2007-06-11 16:31:36 UTC (rev 1035) @@ -247,7 +247,7 @@ // on ajoute le nom du channel a1.appendChild(document.createTextNode(name)); - if (pfc_displaytabclosebutton) + if (pfc_displaytabclosebutton || type == 'pv') { var a2 = document.createElement('a'); a2.pfc_tabid = tabid; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-06-11 08:19:15
|
Revision: 1034 http://svn.sourceforge.net/phpfreechat/?rev=1034&view=rev Author: kerphi Date: 2007-06-11 01:19:13 -0700 (Mon, 11 Jun 2007) Log Message: ----------- Fix a problem with phpbb3 integration (thanks to Larry) http://www.phpfreechat.net/forum/viewtopic.php?id=1576 Modified Paths: -------------- trunk/lib/utf8/utf8_char2byte_pos.php trunk/lib/utf8/utf8_strlen.php trunk/lib/utf8/utf8_substr.php Modified: trunk/lib/utf8/utf8_char2byte_pos.php =================================================================== --- trunk/lib/utf8/utf8_char2byte_pos.php 2007-06-07 12:24:53 UTC (rev 1033) +++ trunk/lib/utf8/utf8_char2byte_pos.php 2007-06-11 08:19:13 UTC (rev 1034) @@ -10,36 +10,38 @@ * @return integer Byte position * @author Martin Kutschker <mar...@bl...> */ -function utf8_char2byte_pos($str,$pos) { - $n = 0; // number of characters found - $p = abs($pos); // number of characters wanted +if (!function_exists('utf8_char2byte_pos')) { + function utf8_char2byte_pos($str,$pos) { + $n = 0; // number of characters found + $p = abs($pos); // number of characters wanted - if ($pos >= 0) { - $i = 0; - $d = 1; - } else { - $i = strlen($str)-1; - $d = -1; - } + if ($pos >= 0) { + $i = 0; + $d = 1; + } else { + $i = strlen($str)-1; + $d = -1; + } - for( ; strlen($str{$i}) && $n<$p; $i+=$d) { - $c = (int)ord($str{$i}); - if (!($c & 0x80)) // single-byte (0xxxxxx) - $n++; - elseif (($c & 0xC0) == 0xC0) // multi-byte starting byte (11xxxxxx) - $n++; - } - if (!strlen($str{$i})) return false; // offset beyond string length + for( ; strlen($str{$i}) && $n<$p; $i+=$d) { + $c = (int)ord($str{$i}); + if (!($c & 0x80)) // single-byte (0xxxxxx) + $n++; + elseif (($c & 0xC0) == 0xC0) // multi-byte starting byte (11xxxxxx) + $n++; + } + if (!strlen($str{$i})) return false; // offset beyond string length - if ($pos >= 0) { - // skip trailing multi-byte data bytes - while ((ord($str{$i}) & 0x80) && !(ord($str{$i}) & 0x40)) { $i++; } - } else { - // correct offset - $i++; + if ($pos >= 0) { + // skip trailing multi-byte data bytes + while ((ord($str{$i}) & 0x80) && !(ord($str{$i}) & 0x40)) { $i++; } + } else { + // correct offset + $i++; + } + + return $i; } - - return $i; } ?> \ No newline at end of file Modified: trunk/lib/utf8/utf8_strlen.php =================================================================== --- trunk/lib/utf8/utf8_strlen.php 2007-06-07 12:24:53 UTC (rev 1033) +++ trunk/lib/utf8/utf8_strlen.php 2007-06-11 08:19:13 UTC (rev 1034) @@ -9,16 +9,18 @@ * @see strlen() * @author Martin Kutschker <mar...@bl...> */ -function utf8_strlen($str) { - $n=0; - for($i=0; isset($str{$i}) && strlen($str{$i})>0; $i++) { - $c = ord($str{$i}); - if (!($c & 0x80)) // single-byte (0xxxxxx) - $n++; - elseif (($c & 0xC0) == 0xC0) // multi-byte starting byte (11xxxxxx) - $n++; +if (!function_exists('utf8_strlen')) { + function utf8_strlen($str) { + $n=0; + for($i=0; isset($str{$i}) && strlen($str{$i})>0; $i++) { + $c = ord($str{$i}); + if (!($c & 0x80)) // single-byte (0xxxxxx) + $n++; + elseif (($c & 0xC0) == 0xC0) // multi-byte starting byte (11xxxxxx) + $n++; + } + return $n; } - return $n; } ?> \ No newline at end of file Modified: trunk/lib/utf8/utf8_substr.php =================================================================== --- trunk/lib/utf8/utf8_substr.php 2007-06-07 12:24:53 UTC (rev 1033) +++ trunk/lib/utf8/utf8_substr.php 2007-06-11 08:19:13 UTC (rev 1034) @@ -14,28 +14,30 @@ * @see substr() * @author Martin Kutschker <mar...@bl...> */ -function utf8_substr($str,$start,$len=null) { - if (!strcmp($len,'0')) return ''; +if (!function_exists('utf8_substr')) { + function utf8_substr($str,$start,$len=null) { + if (!strcmp($len,'0')) return ''; - $byte_start = @utf8_char2byte_pos($str,$start); - if ($byte_start === false) { - if ($start > 0) { - return false; // $start outside string length - } else { - $start = 0; + $byte_start = @utf8_char2byte_pos($str,$start); + if ($byte_start === false) { + if ($start > 0) { + return false; // $start outside string length + } else { + $start = 0; + } } - } - $str = substr($str,$byte_start); + $str = substr($str,$byte_start); - if ($len!=null) { - $byte_end = @utf8_char2byte_pos($str,$len); - if ($byte_end === false) // $len outside actual string length - return $len<0 ? '' : $str; // When length is less than zero and exceeds, then we return blank string. - else - return substr($str,0,$byte_end); + if ($len!=null) { + $byte_end = @utf8_char2byte_pos($str,$len); + if ($byte_end === false) // $len outside actual string length + return $len<0 ? '' : $str; // When length is less than zero and exceeds, then we return blank string. + else + return substr($str,0,$byte_end); + } + else return $str; } - else return $str; } ?> \ 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...> - 2007-06-07 12:24:51
|
Revision: 1033 http://svn.sourceforge.net/phpfreechat/?rev=1033&view=rev Author: kerphi Date: 2007-06-07 05:24:53 -0700 (Thu, 07 Jun 2007) Log Message: ----------- small fix Modified Paths: -------------- trunk/i18n/hr_HR/main.php Modified: trunk/i18n/hr_HR/main.php =================================================================== --- trunk/i18n/hr_HR/main.php 2007-06-07 11:43:46 UTC (rev 1032) +++ trunk/i18n/hr_HR/main.php 2007-06-07 12:24:53 UTC (rev 1033) @@ -36,7 +36,7 @@ $GLOBALS["i18n"]["Please enter your nickname"] = "Molim Vas unesite Vas nadimak"; // line 565 in phpfreechat.class.php -$GLOBALS["i18n"]["Text cannot be empty"] = "Tekst ne smije biti prazan"; +$GLOBALS["i18n"]["Text cannot be empty"] = "Tekst polje ne smije biti prazno"; // line 392 in phpfreechat.class.php $GLOBALS["i18n"]["%s changes his nickname to %s"] = "%s je promijenio/la nadimak u %s"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-06-07 11:43:46
|
Revision: 1032 http://svn.sourceforge.net/phpfreechat/?rev=1032&view=rev Author: kerphi Date: 2007-06-07 04:43:46 -0700 (Thu, 07 Jun 2007) Log Message: ----------- Simplified chinese (zh_CN) translation update (thanks to baijianpeng) Modified Paths: -------------- trunk/i18n/zh_CN/main.php Modified: trunk/i18n/zh_CN/main.php =================================================================== --- trunk/i18n/zh_CN/main.php 2007-06-07 10:41:20 UTC (rev 1031) +++ trunk/i18n/zh_CN/main.php 2007-06-07 11:43:46 UTC (rev 1032) @@ -1,94 +1,95 @@ <?php /** -* i18n/zh_CN/main.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 -*/ + * i18n/zh_CN/main.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 + */ /** -* Chinese translation of the messages -* -* @author Stephane Gully <ste...@gm...> -* @translated by Guo xianghao<guo...@ho...> -*/ + * Simplified Chinese translation of the messages (utf8 encoded!) + * + * @author Stephane Gully <ste...@gm...> + * @translated by Guo xianghao <guo...@ho...> + * @translated by baijianpeng ( http://www.joomlagate.com ) + */ // 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没有找到。"; +$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"] = "聊天内容不能为空"; +$GLOBALS["i18n"]["Text cannot be empty"] = "不能发送空消息"; // line 392 in phpfreechat.class.php -$GLOBALS["i18n"]["%s changes his nickname to %s"] = "%s把昵称改为%s"; +$GLOBALS["i18n"]["%s changes his nickname to %s"] = "%s 已将他/她的昵称更改为 %s"; // line 398 in phpfreechat.class.php -$GLOBALS["i18n"]["%s is connected"] = "%s上线了"; +$GLOBALS["i18n"]["%s is connected"] = "%s 已连接"; // line 452 in phpfreechat.class.php -$GLOBALS["i18n"]["%s quit"] = "%s退出了"; +$GLOBALS["i18n"]["%s quit"] = "%s 退出"; // line 468 in phpfreechat.class.php -$GLOBALS["i18n"]["%s disconnected (timeout)"] = "%s离线了(超时)"; +$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"; +$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"; +$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不存在"; +$GLOBALS["i18n"]["%s doesn't exist"] = "%s 不存在"; // line 433 in phpfreechatconfig.class.php -$GLOBALS["i18n"]["%s directory must be specified"] = "必须指定%s目录"; +$GLOBALS["i18n"]["%s directory must be specified"] = "%s 目录必须制定"; // line 439 in phpfreechatconfig.class.php -$GLOBALS["i18n"]["%s must be a directory"] = "%s必须是一个目录"; +$GLOBALS["i18n"]["%s must be a directory"] = "%s 必须是一个目录"; // line 446 in phpfreechatconfig.class.php -$GLOBALS["i18n"]["%s can't be created"] = "不能创建%s"; +$GLOBALS["i18n"]["%s can't be created"] = "%s 无法创建"; // line 451 in phpfreechatconfig.class.php -$GLOBALS["i18n"]["%s is not writeable"] = "%s不可写"; +$GLOBALS["i18n"]["%s is not writeable"] = "%s 不可写"; // line 496 in phpfreechatconfig.class.php -$GLOBALS["i18n"]["%s is not readable"] = "%s不可读"; +$GLOBALS["i18n"]["%s is not readable"] = "%s 不可读"; // line 469 in phpfreechatconfig.class.php -$GLOBALS["i18n"]["%s is not a file"] = "%s不是一个文件"; +$GLOBALS["i18n"]["%s is not a file"] = "%s 不是文件"; // line 491 in phpfreechatconfig.class.php -$GLOBALS["i18n"]["%s is not a directory"] = "%s不是一个目录"; +$GLOBALS["i18n"]["%s is not a directory"] = "%s 不是目录"; // line 23 in chat.html.tpl.php -$GLOBALS["i18n"]["PHP FREE CHAT [powered by phpFreeChat-%s]"] = "PHP FREE CHAT [powered by phpFreeChat-%s]"; +$GLOBALS["i18n"]["PHP FREE CHAT [powered by phpFreeChat-%s]"] = "PHPFREECHAT [powered by phpFreeChat-%s]"; // line 296 in javascript1.js.tpl.php $GLOBALS["i18n"]["Hide nickname marker"] = "隐藏昵称颜色"; @@ -97,16 +98,16 @@ $GLOBALS["i18n"]["Show nickname marker"] = "显示昵称颜色"; // line 389 in javascript1.js.tpl.php -$GLOBALS["i18n"]["Disconnect"] = "离线了"; +$GLOBALS["i18n"]["Disconnect"] = "断开"; // line 395 in javascript1.js.tpl.php -$GLOBALS["i18n"]["Connect"] = "上线"; +$GLOBALS["i18n"]["Connect"] = "连接"; // line 427 in javascript1.js.tpl.php -$GLOBALS["i18n"]["Magnify"] = "放大"; +$GLOBALS["i18n"]["Magnify"] = "最大化"; // line 434 in javascript1.js.tpl.php -$GLOBALS["i18n"]["Cut down"] = "砍掉"; +$GLOBALS["i18n"]["Cut down"] = "缩小"; // line 345 in javascript1.js.tpl.php $GLOBALS["i18n"]["Hide dates and hours"] = "隐藏日期和时间"; @@ -115,23 +116,26 @@ $GLOBALS["i18n"]["Show dates and hours"] = "显示日期和时间"; // line 21 in chat.html.tpl.php -$GLOBALS["i18n"]["Enter your message here"] = "在此输入聊天内容"; +$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是未定义或过时的参数,请修改或删除之。"; +$GLOBALS["i18n"]["Error: undefined or obsolete parameter '%s', please correct or remove this parameter"] = "错误: 未定义的或者陈旧的参数 '%s', 请纠正或者删除这个参数"; -// line 48 in phpfreechattemplate.class.php -$GLOBALS["i18n"]["%s template could not be found"] = "找不到模版%s"; +// line 86 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Hide smiley box"] = "隐藏表情图案框"; -// line 324 in phpfreechatconfig.class.php -$GLOBALS["i18n"]["'serverid' parameter is mandatory by default use 'md5(__FILE__)' value"] = "缺省情况下serverid参数是必须的,其值为'md5(__FILE__)'"; +// line 87 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Show smiley box"] = "显示表情图案框"; -// 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,请检查themepath %s和theme %s是否正确。"; +// 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"] = "粗体"; @@ -145,244 +149,238 @@ $GLOBALS["i18n"]["Delete"] = "删除"; // line 37 in chat.html.tpl.php -$GLOBALS["i18n"]["Pre"] = "Pre"; +$GLOBALS["i18n"]["Pre"] = "预设"; // line 38 in chat.html.tpl.php -$GLOBALS["i18n"]["Mail"] = "e-Mail"; +$GLOBALS["i18n"]["Mail"] = "邮件"; // line 39 in chat.html.tpl.php $GLOBALS["i18n"]["Color"] = "颜色"; -// line 86 in pfcclient.js.tpl.php -$GLOBALS["i18n"]["Hide smiley box"] = "隐藏表情符区"; +// line 48 in phpfreechattemplate.class.php +$GLOBALS["i18n"]["%s template could not be found"] = "%s 模板无法找到"; -// line 87 in pfcclient.js.tpl.php -$GLOBALS["i18n"]["Show smiley box"] = "显示表情符区"; +// 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 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 75 in pfccommand.class.php -$GLOBALS["i18n"]["%s must be implemented"] = "必须实现%s"; +$GLOBALS["i18n"]["%s must be implemented"] = "%s 必须被施行"; // 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' 参数默认情况下强制使用 '%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"] = "'%s' 参数必须是一个正整数"; // 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'"] = "'%s' 参数无效. 允许的值是: '%s'"; -// line 186 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["My room"] = ""; +// 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"] = ""; +$GLOBALS["i18n"]["Missing parameter"] = "参数丢失"; // line 38 in ban.class.php -$GLOBALS["i18n"]["banished from %s by %s"] = ""; +$GLOBALS["i18n"]["banished from %s by %s"] = "已被踢出了 %s 由 %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:"] = "踢出的用户列表:"; // line 32 in banlist.class.php -$GLOBALS["i18n"]["Empty"] = ""; +$GLOBALS["i18n"]["Empty"] = "空"; // 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}' 将取消对 {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' 将取消对本频道中所有用户的屏蔽"; // line 24 in update.class.php -$GLOBALS["i18n"]["%s quit (timeout)"] = ""; +$GLOBALS["i18n"]["%s quit (timeout)"] = "%s 退出 (超时)"; // line 46 in join.class.php -$GLOBALS["i18n"]["%s joins %s"] = ""; +$GLOBALS["i18n"]["%s joins %s"] = "%s 进入了 %s"; // line 31 in kick.class.php -$GLOBALS["i18n"]["kicked from %s by %s"] = ""; +$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"] = ""; +$GLOBALS["i18n"]["Can't send the message, %s is offline"] = "无法发送此消息, %s 已经离线了"; // line 27 in unban.class.php -$GLOBALS["i18n"]["Nobody has been unbanished"] = ""; +$GLOBALS["i18n"]["Nobody has been unbanished"] = "没有任何人被取消驱逐"; // line 42 in unban.class.php -$GLOBALS["i18n"]["%s has been unbanished"] = ""; +$GLOBALS["i18n"]["%s has been unbanished"] = "%s 已被取消驱逐"; // line 49 in unban.class.php -$GLOBALS["i18n"]["%s users have been unbanished"] = ""; +$GLOBALS["i18n"]["%s users have been unbanished"] = "%s 个用户已被取消驱逐"; // 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"] = "您没有权限运行 '%s' 命令"; -// line 66 in auth.class.php -$GLOBALS["i18n"]["Can't join %s because you are banished"] = ""; +// line 67 in auth.class.php +$GLOBALS["i18n"]["Can't join %s because you are banished"] = "无法加入 %s 因为您已经被驱逐了"; +// 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"] = ""; +$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"] = ""; +$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"] = ""; +$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"] = "发送"; // line 86 in mysql.class.php -$GLOBALS["i18n"]["Mysql container: connect error"] = ""; +$GLOBALS["i18n"]["Mysql container: connect error"] = "Mysql 容器: 连接错误"; // line 101 in mysql.class.php -$GLOBALS["i18n"]["Mysql container: create database error '%s'"] = ""; +$GLOBALS["i18n"]["Mysql container: create database error '%s'"] = "Mysql 容器: 创建数据库错误 '%s'"; // line 112 in mysql.class.php -$GLOBALS["i18n"]["Mysql container: create table error '%s'"] = ""; +$GLOBALS["i18n"]["Mysql container: create table error '%s'"] = "Mysql 容器: 创建数据表错误 '%s'"; // line 80 in chat.js.tpl.php -$GLOBALS["i18n"]["You are not allowed to speak to yourself"] = ""; +$GLOBALS["i18n"]["You are not allowed to speak to yourself"] = "您不能对自己说话"; // line 82 in chat.js.tpl.php -$GLOBALS["i18n"]["Choosen nickname is not allowed"] = ""; +$GLOBALS["i18n"]["Choosen nickname is not allowed"] = "所选昵称已被禁用"; // line 83 in chat.js.tpl.php -$GLOBALS["i18n"]["Enable sound notifications"] = ""; +$GLOBALS["i18n"]["Enable sound notifications"] = "启用声音通知"; // line 84 in chat.js.tpl.php -$GLOBALS["i18n"]["Disable sound notifications"] = ""; +$GLOBALS["i18n"]["Disable sound notifications"] = "禁用声音通知"; // line 23 in kick.class.php -$GLOBALS["i18n"]["no reason"] = ""; +$GLOBALS["i18n"]["no reason"] = "没有原因"; // line 24 in banlist.class.php -$GLOBALS["i18n"]["The banished user list is:"] = ""; +$GLOBALS["i18n"]["The banished user list is:"] = "被驱逐的用户列表:"; // line 39 in banlist.class.php -$GLOBALS["i18n"]["'/unban {nickname}' will unban the user identified by {nickname}"] = ""; +$GLOBALS["i18n"]["'/unban {nickname}' will unban the user identified by {nickname}"] = "'/unban {nickname}' 将取消对昵称为 {nickname} 的用户的屏蔽"; // line 43 in kick.class.php -$GLOBALS["i18n"]["kicked from %s by %s - reason: %s"] = ""; +$GLOBALS["i18n"]["kicked from %s by %s - reason: %s"] = "已从 %s 被 %s 踢出- 原因: %s"; // line 20 in quit.class.php -$GLOBALS["i18n"]["%s quit (%s)"] = ""; +$GLOBALS["i18n"]["%s quit (%s)"] = "%s 退出 (%s)"; // line 124 in chat.js.tpl.php -$GLOBALS["i18n"]["Chat loading ..."] = ""; +$GLOBALS["i18n"]["Chat loading ..."] = "正在载入聊天窗口 ..."; // line 124 in chat.js.tpl.php -$GLOBALS["i18n"]["Please wait"] = ""; +$GLOBALS["i18n"]["Please wait"] = "请您耐心等待"; // line 139 in chat.js.tpl.php -$GLOBALS["i18n"]["%s appears to be either disabled or unsupported by your browser."] = ""; +$GLOBALS["i18n"]["%s appears to be either disabled or unsupported by your browser."] = "%s 似乎已被禁用或者您的浏览器不支持."; // line 139 in chat.js.tpl.php -$GLOBALS["i18n"]["This web application requires %s to work properly."] = ""; +$GLOBALS["i18n"]["This web application requires %s to work properly."] = "本程序需要 %s 才能正常工作"; // line 135 in chat.js.tpl.php -$GLOBALS["i18n"]["Please enable %s in your browser settings, or upgrade to a browser with %s support and try again."] = ""; +$GLOBALS["i18n"]["Please enable %s in your browser settings, or upgrade to a browser with %s support and try again."] = "请在您的浏览器设置中启用 %s , 或者升级到支持 %s 的浏览器然后再试."; // line 137 in chat.js.tpl.php -$GLOBALS["i18n"]["Please upgrade to a browser with %s support and try again."] = ""; +$GLOBALS["i18n"]["Please upgrade to a browser with %s support and try again."] = "请升级到支持 %s 的浏览器然后再试."; // line 139 in chat.js.tpl.php -$GLOBALS["i18n"]["In Internet Explorer versions earlier than 7.0, Ajax is implemented using ActiveX. Please enable ActiveX in your browser security settings or upgrade to a browser with Ajax support and try again."] = ""; +$GLOBALS["i18n"]["In Internet Explorer versions earlier than 7.0, Ajax is implemented using ActiveX. Please enable ActiveX in your browser security settings or upgrade to a browser with Ajax support and try again."] = "在早于 7.0 版本的 IE 浏览器, Ajax 通过 ActiveX 来实现. 请在您的浏览器安全设置中启用 ActiveX ,或者升级到支持 Ajax 的浏览器然后再试。"; // line 359 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["%s doesn't exist, data_public_path cannot be installed"] = ""; +$GLOBALS["i18n"]["%s doesn't exist, data_public_path cannot be installed"] = "%s 不存在, data_public_path 无法安装"; // line 73 in invite.class.php -$GLOBALS["i18n"]["You must join %s to invite users in this channel"] = ""; +$GLOBALS["i18n"]["You must join %s to invite users in this channel"] = "您必须加入 %s 以便邀请在此频道中的用户"; // line 47 in chat.html.tpl.php -$GLOBALS["i18n"]["Ping"] = ""; +$GLOBALS["i18n"]["Ping"] = "Ping"; // line 477 in phpfreechat.class.php -$GLOBALS["i18n"]["Input Required"] = ""; +$GLOBALS["i18n"]["Input Required"] = "必须输入"; // line 478 in phpfreechat.class.php -$GLOBALS["i18n"]["OK"] = ""; +$GLOBALS["i18n"]["OK"] = "确定"; // line 479 in phpfreechat.class.php -$GLOBALS["i18n"]["Cancel"] = ""; +$GLOBALS["i18n"]["Cancel"] = "取消"; ?> \ 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...> - 2007-06-07 10:41:19
|
Revision: 1031 http://svn.sourceforge.net/phpfreechat/?rev=1031&view=rev Author: kerphi Date: 2007-06-07 03:41:20 -0700 (Thu, 07 Jun 2007) Log Message: ----------- New Croatian translation (thanks to beginner) Modified Paths: -------------- trunk/demo/index.php trunk/src/pfci18n.class.php Added Paths: ----------- trunk/demo/demo61_in_croatian.php trunk/i18n/hr_HR/ trunk/i18n/hr_HR/main.php Added: trunk/demo/demo61_in_croatian.php =================================================================== --- trunk/demo/demo61_in_croatian.php (rev 0) +++ trunk/demo/demo61_in_croatian.php 2007-06-07 10:41:20 UTC (rev 1031) @@ -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"] = "hr_HR"; +$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 2007-06-07 09:57:18 UTC (rev 1030) +++ trunk/demo/index.php 2007-06-07 10:41:20 UTC (rev 1031) @@ -126,6 +126,7 @@ <li><a href="demo58_in_danish.php">demo58 - Danish translation of the chat</a></li> <li><a href="demo59_in_norwegian_nynorsk.php">demo59 - Norwegian Nynorsk translation of the chat</a></li> <li><a href="demo60_in_vietnamese.php">demo60 - Vietnamese translation of the chat</a></li> + <li><a href="demo61_in_croatian.php">demo61 - Croatian translation of the chat</a></li> </ul> </div> Added: trunk/i18n/hr_HR/main.php =================================================================== --- trunk/i18n/hr_HR/main.php (rev 0) +++ trunk/i18n/hr_HR/main.php 2007-06-07 10:41:20 UTC (rev 1031) @@ -0,0 +1,387 @@ +<?php +/** + * i18n/hr_HR/main.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 + */ + +/** + * Croatian translation of the messages (utf8 encoded!) + * + * @author Zdravac + */ + +// line 45 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["My Chat"] = "Moj chat"; + +// line 201 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s not found, %s library can't be found."] = "%s nije pronadjen, %s biblioteka nije pronadjena."; + +// line 355 in phpfreechat.class.php +$GLOBALS["i18n"]["Please enter your nickname"] = "Molim Vas unesite Vas nadimak"; + +// line 565 in phpfreechat.class.php +$GLOBALS["i18n"]["Text cannot be empty"] = "Tekst ne smije biti prazan"; + +// line 392 in phpfreechat.class.php +$GLOBALS["i18n"]["%s changes his nickname to %s"] = "%s je promijenio/la nadimak u %s"; + +// line 398 in phpfreechat.class.php +$GLOBALS["i18n"]["%s is connected"] = "%s se prikljucio/la"; + +// line 452 in phpfreechat.class.php +$GLOBALS["i18n"]["%s quit"] = "%s izasao/la"; + +// line 468 in phpfreechat.class.php +$GLOBALS["i18n"]["%s disconnected (timeout)"] = "%s je iskljucen/a (timeout)"; + +// line 262 in phpfreechat.class.php +$GLOBALS["i18n"]["Unknown command [%s]"] = "Nepoznata naredba [%s]"; + +// line 149 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s doesn't exist: %s"] = "%s ne postoji: %s"; + +// line 180 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["You need %s"] = "Treba vam %s"; + +// line 241 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s doesn't exist, %s library can't be found"] = "%s ne postoji, %s biblioteka nije pronadjena"; + +// line 280 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s doesn't exist"] = "%s ne postoji"; + +// line 433 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s directory must be specified"] = "%s direktorij mora biti unesen"; + +// line 439 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s must be a directory"] = "%s mora biti direktorij"; + +// line 446 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s can't be created"] = "%s ne moze biti napravljen"; + +// line 451 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s is not writeable"] = "Upis onemogucen - %s"; + +// line 496 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s is not readable"] = "Ne moze da se cita iz - %s"; + +// line 469 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s is not a file"] = "%s nije datoteka"; + +// line 491 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["%s is not a directory"] = "%s nije direktorij"; + +// line 23 in chat.html.tpl.php +$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"] = "Sakrij boje nadimaka"; + +// line 304 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Show nickname marker"] = "Prikazi boje nadimaka"; + +// line 389 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Disconnect"] = "Iskljuci se"; + +// line 395 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Connect"] = "Ukljuci se"; + +// line 427 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Magnify"] = "Uvecaj"; + +// line 434 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Cut down"] = "Smanji"; + +// line 345 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Hide dates and hours"] = "Sakrij datum i vrijeme"; + +// line 353 in javascript1.js.tpl.php +$GLOBALS["i18n"]["Show dates and hours"] = "Prikazi datum i vrijeme"; + +// line 21 in chat.html.tpl.php +$GLOBALS["i18n"]["Enter your message here"] = "Unesite vasu poruku ovdje"; + +// line 24 in chat.html.tpl.php +$GLOBALS["i18n"]["Enter your nickname here"] = "Unesite vas nadimak ovdje"; + +// line 48 in phpfreechattemplate.class.php +$GLOBALS["i18n"]["%s template could not be found"] = "%s obrazac nije pranadjen"; + +// line 96 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["Error: undefined or obsolete parameter '%s', please correct or remove this parameter"] = "Greska: ne postoji parametar '%s', ispravite gresku ili skinite ovaj parametar"; + +// line 324 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["'serverid' parameter is mandatory by default use 'md5(__FILE__)' value"] = ""; + +// 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"] = "Greska: '%s' nije pranadjen, ispravite podatke za vasu temu (theme)"; + +// line 33 in chat.html.tpl.php +$GLOBALS["i18n"]["Bold"] = "Podebljano"; + +// line 34 in chat.html.tpl.php +$GLOBALS["i18n"]["Italics"] = "Italik"; + +// line 35 in chat.html.tpl.php +$GLOBALS["i18n"]["Underline"] = "Podvuceno"; + +// line 36 in chat.html.tpl.php +$GLOBALS["i18n"]["Delete"] = "Precrtano"; + +// line 37 in chat.html.tpl.php +$GLOBALS["i18n"]["Pre"] = "Pre"; + +// line 38 in chat.html.tpl.php +$GLOBALS["i18n"]["Mail"] = "e-mail"; + +// line 39 in chat.html.tpl.php +$GLOBALS["i18n"]["Color"] = "Boja"; + +// line 86 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Hide smiley box"] = "Sakrij smajlice"; + +// line 87 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Show smiley box"] = "Prikazi smajlice"; + +// line 88 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Hide online users box"] = "Sakrij korisnike"; + +// line 89 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Show online users box"] = "Prikazi korisnike"; + +// line 75 in pfccommand.class.php +$GLOBALS["i18n"]["%s must be implemented"] = "%s se mora navesti"; + +// line 343 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["'%s' parameter is mandatory by default use '%s' value"] = "'%s' parametar je obavezan, standardni podatak je '%s'"; + +// line 378 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["'%s' parameter must be a positive number"] = "'%s' parametar mora biti pozitivan broj"; + +// line 386 in phpfreechatconfig.class.php +$GLOBALS["i18n"]["'%s' parameter is not valid. Available values are : '%s'"] = "'%s' parametar nije dopusten. Dopusteni parametri su: '%s'"; + + +// line 186 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["My room"] = "My room"; + +// line 19 in unban.class.php +$GLOBALS["i18n"]["Missing parameter"] = "Nedostaje parametar"; + +// line 38 in ban.class.php +$GLOBALS["i18n"]["banished from %s by %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"] = "Prazno"; + +// line 34 in banlist.class.php +$GLOBALS["i18n"]["'/unban {id}' will unban the user identified by {id}"] = ""; + +// line 35 in banlist.class.php +$GLOBALS["i18n"]["'/unban all' will unban all the users on this channel"] = ""; + +// line 24 in update.class.php +$GLOBALS["i18n"]["%s quit (timeout)"] = "%s iskljucen (timeout)"; + +// line 46 in join.class.php +$GLOBALS["i18n"]["%s joins %s"] = "%s se pridruzio %s"; + +// line 31 in kick.class.php +$GLOBALS["i18n"]["kicked from %s by %s"] = ""; + +// line 38 in send.class.php +$GLOBALS["i18n"]["Can't send the message, %s is offline"] = "Poruka nije poslana, %s je offline"; + +// line 27 in unban.class.php +$GLOBALS["i18n"]["Nobody has been unbanished"] = ""; + +// line 42 in unban.class.php +$GLOBALS["i18n"]["%s has been unbanished"] = ""; + +// line 49 in unban.class.php +$GLOBALS["i18n"]["%s users have been unbanished"] = ""; + +// line 47 in auth.class.php +$GLOBALS["i18n"]["You are not allowed to run '%s' command"] = "%s, nije dopusteno pokrenuti naredbu"; + +// line 66 in auth.class.php +$GLOBALS["i18n"]["Can't join %s because you are banished"] = ""; + +// line 76 in auth.class.php +$GLOBALS["i18n"]["Can't join %s because the channels list is restricted"] = ""; + +// line 89 in auth.class.php +$GLOBALS["i18n"]["You are not allowed to change your nickname"] = "Nije dopusteno promijeniti nadimak"; + +// 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"] = "Privatni razgovor"; + +// line 110 in pfcclient.js.tpl.php +$GLOBALS["i18n"]["Close this tab"] = "Zatvori ovaj tab"; + +// line 199 in pfcgui.js.tpl.php +$GLOBALS["i18n"]["Do you really want to leave this room ?"] = "Napustate ?"; + +// line 169 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["Error: '%s' is a private parameter, you are not allowed to change it"] = ""; + +// line 253 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' parameter must be an array"] = ""; + +// line 265 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' parameter must be a boolean"] = ""; + +// line 271 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' parameter must be a charatere string"] = ""; + +// line 395 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' must be writable"] = ""; + +// line 425 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["'%s' directory doesn't exist"] = ""; + +// 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"] = ""; + +// line 31 in help.class.php +$GLOBALS["i18n"]["Here is the command list:"] = "Popis naredbi"; + +// 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"] = "Ovdje klik da posaljete poruku"; + +// line 80 in chat.js.tpl.php +$GLOBALS["i18n"]["Enter the text to format"] = "Ovdje upisite e-mail adresu"; + +// 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"] = "Nickname je zauzet!"; + +// line 84 in chat.js.tpl.php +$GLOBALS["i18n"]["phpfreechat current version is %s"] = "Trenutna verzija phpfreechat je %s"; + +// line 85 in chat.js.tpl.php +$GLOBALS["i18n"]["Maximum number of joined channels has been reached"] = "Maximu postignut!"; + +// line 86 in chat.js.tpl.php +$GLOBALS["i18n"]["Maximum number of private chat has been reached"] = "Maximum privatnog razgovora !"; + +// line 88 in chat.js.tpl.php +$GLOBALS["i18n"]["Send"] = "Posalji"; + +// line 86 in mysql.class.php +$GLOBALS["i18n"]["Mysql container: connect error"] = ""; + +// line 101 in mysql.class.php +$GLOBALS["i18n"]["Mysql container: create database error '%s'"] = ""; + +// line 112 in mysql.class.php +$GLOBALS["i18n"]["Mysql container: create table error '%s'"] = ""; + +// line 80 in chat.js.tpl.php +$GLOBALS["i18n"]["You are not allowed to speak to yourself"] = ""; + +// line 82 in chat.js.tpl.php +$GLOBALS["i18n"]["Choosen nickname is not allowed"] = "Odabrani nadimak nije dopusten"; + +// line 83 in chat.js.tpl.php +$GLOBALS["i18n"]["Enable sound notifications"] = ""; + +// line 84 in chat.js.tpl.php +$GLOBALS["i18n"]["Disable sound notifications"] = ""; + +// line 23 in kick.class.php +$GLOBALS["i18n"]["no reason"] = ""; + +// line 24 in banlist.class.php +$GLOBALS["i18n"]["The banished user list is:"] = ""; + +// line 39 in banlist.class.php +$GLOBALS["i18n"]["'/unban {nickname}' will unban the user identified by {nickname}"] = ""; + +// line 43 in kick.class.php +$GLOBALS["i18n"]["kicked from %s by %s - reason: %s"] = ""; + +// line 20 in quit.class.php +$GLOBALS["i18n"]["%s quit (%s)"] = "% izasao %S"; + +// line 124 in chat.js.tpl.php +$GLOBALS["i18n"]["Chat loading ..."] = "Chat u pripremi.."; + +// line 124 in chat.js.tpl.php +$GLOBALS["i18n"]["Please wait"] = "Molim pricekajte.."; + +// line 139 in chat.js.tpl.php +$GLOBALS["i18n"]["%s appears to be either disabled or unsupported by your browser."] = ""; + +// line 139 in chat.js.tpl.php +$GLOBALS["i18n"]["This web application requires %s to work properly."] = ""; + +// line 135 in chat.js.tpl.php +$GLOBALS["i18n"]["Please enable %s in your browser settings, or upgrade to a browser with %s support and try again."] = ""; + +// line 137 in chat.js.tpl.php +$GLOBALS["i18n"]["Please upgrade to a browser with %s support and try again."] = ""; + +// line 139 in chat.js.tpl.php +$GLOBALS["i18n"]["In Internet Explorer versions earlier than 7.0, Ajax is implemented using ActiveX. Please enable ActiveX in your browser security settings or upgrade to a browser with Ajax support and try again."] = ""; + +// line 359 in pfcglobalconfig.class.php +$GLOBALS["i18n"]["%s doesn't exist, data_public_path cannot be installed"] = ""; + +// line 73 in invite.class.php +$GLOBALS["i18n"]["You must join %s to invite users in this channel"] = ""; + +// line 47 in chat.html.tpl.php +$GLOBALS["i18n"]["Ping"] = "Ping"; + +// line 477 in phpfreechat.class.php +$GLOBALS["i18n"]["Input Required"] = "Unesite podatke"; + +// line 478 in phpfreechat.class.php +$GLOBALS["i18n"]["OK"] = "Ok"; + +// line 479 in phpfreechat.class.php +$GLOBALS["i18n"]["Cancel"] = "Odustani"; + +?> \ No newline at end of file Modified: trunk/src/pfci18n.class.php =================================================================== --- trunk/src/pfci18n.class.php 2007-06-07 09:57:18 UTC (rev 1030) +++ trunk/src/pfci18n.class.php 2007-06-07 10:41:20 UTC (rev 1031) @@ -103,7 +103,7 @@ */ function GetAcceptedLanguage($type="main") { - return /*<GetAcceptedLanguage>*/array('ar_LB','sv_SE','ja_JP','ba_BA','pt_PT','el_GR','tr_TR','hy_AM','nb_NO','zh_TW','ru_RU','fr_FR','es_ES','bg_BG','zh_CN','nl_NL','de_DE-informal','pl_PL','pt_BR','it_IT','id_ID','hu_HU','en_US','sr_CS','de_DE-formal','eo','bn_BD','uk_UA','uk_RO','ko_KR','da_DK','nn_NO','vi_VN');/*</GetAcceptedLanguage>*/ + return /*<GetAcceptedLanguage>*/array('ar_LB','sv_SE','ja_JP','ba_BA','pt_PT','el_GR','tr_TR','hy_AM','nb_NO','zh_TW','ru_RU','fr_FR','es_ES','bg_BG','zh_CN','nl_NL','de_DE-informal','pl_PL','pt_BR','it_IT','id_ID','hu_HU','en_US','sr_CS','de_DE-formal','eo','bn_BD','uk_UA','uk_RO','ko_KR','da_DK','nn_NO','vi_VN','hr_HR');/*</GetAcceptedLanguage>*/ } /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2007-06-07 09:57:16
|
Revision: 1030 http://svn.sourceforge.net/phpfreechat/?rev=1030&view=rev Author: kerphi Date: 2007-06-07 02:57:18 -0700 (Thu, 07 Jun 2007) Log Message: ----------- Polish translation update (thanks to Blazej Biesiada) Modified Paths: -------------- trunk/i18n/pl_PL/main.php Modified: trunk/i18n/pl_PL/main.php =================================================================== --- trunk/i18n/pl_PL/main.php 2007-06-07 09:50:35 UTC (rev 1029) +++ trunk/i18n/pl_PL/main.php 2007-06-07 09:57:18 UTC (rev 1030) @@ -24,6 +24,7 @@ * Polish translation of the messages (utf8 encoded!) * * @author Pawel + * @author bejo */ // line 45 in phpfreechatconfig.class.php @@ -242,144 +243,145 @@ // 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"] = "Błąd: '%s' jest parametrem prywatnym, nie możesz go zmieniać"; // line 253 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be an array"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be an array"] = "parametr '%s' musi być tablicą"; // line 265 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' parameter must be a boolean"] = ""; +$GLOBALS["i18n"]["'%s' parameter must be a boolean"] = "parametr '%s' musi być wartościa typu 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"] = "parametr '%s' musi być ciągiem znaków"; //TODO // line 395 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' must be writable"] = ""; +$GLOBALS["i18n"]["'%s' must be writable"] = "'%s' musi być zapisywalny"; // line 425 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["'%s' directory doesn't exist"] = ""; +$GLOBALS["i18n"]["'%s' directory doesn't exist"] = "katalog '%s' nie istnieje"; // line 544 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["Please correct these errors"] = ""; +$GLOBALS["i18n"]["Please correct these errors"] = "Prosze poprawić te błędy"; // 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"] = "Błąd: tymczasowy plik konfiguracyjny nie isnieje"; // 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"] += "Błąd: nie można załadować chat'a! dwie możliwości: Twoja przeglądarka nie obsługuje javascript albo nie skonfigurowałeś poprawnie praw dostępu do katalogów serwera - nie wahaj się poprosić o pomoc na forum"; // line 31 in help.class.php -$GLOBALS["i18n"]["Here is the command list:"] = ""; +$GLOBALS["i18n"]["Here is the command list:"] = "Oto lista poleceń:"; // line 63 in identify.class.php -$GLOBALS["i18n"]["Succesfully identified"] = ""; +$GLOBALS["i18n"]["Succesfully identified"] = "Pomyślnie zidentyfikowany"; // line 68 in identify.class.php -$GLOBALS["i18n"]["Identification failure"] = ""; +$GLOBALS["i18n"]["Identification failure"] = "Identyfikacja nie powiodła się"; // 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"] = "Musisz być połączony, aby wysłać wiadomość"; // line 87 in chat.js.tpl.php -$GLOBALS["i18n"]["Click here to send your message"] = ""; +$GLOBALS["i18n"]["Click here to send your message"] = "Kliknij tutaj aby wysłać swoja wiadomość"; // line 80 in chat.js.tpl.php -$GLOBALS["i18n"]["Enter the text to format"] = ""; +$GLOBALS["i18n"]["Enter the text to format"] = "Wprowadź tekst do sformatowania"; // line 81 in chat.js.tpl.php -$GLOBALS["i18n"]["Configuration has been rehashed"] = ""; +$GLOBALS["i18n"]["Configuration has been rehashed"] = "Konfiguracja została przehaszowana"; // line 82 in chat.js.tpl.php -$GLOBALS["i18n"]["A problem occurs during rehash"] = ""; +$GLOBALS["i18n"]["A problem occurs during rehash"] = "Wystąpił problem podczas haszowania"; // line 83 in chat.js.tpl.php -$GLOBALS["i18n"]["Choosen nickname is allready used"] = ""; +$GLOBALS["i18n"]["Choosen nickname is allready used"] = "Wybrany pseudonim jest już w użyciu"; // line 84 in chat.js.tpl.php -$GLOBALS["i18n"]["phpfreechat current version is %s"] = ""; +$GLOBALS["i18n"]["phpfreechat current version is %s"] = "obecna wersja phpfreechat to %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"] = "Maksymalna liczba kanałów do których możesz się podłączyć została osiągnięta"; // 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"] = "Maksymalna liczba rozmów prywatnych została osiągnięta"; // line 88 in chat.js.tpl.php -$GLOBALS["i18n"]["Send"] = ""; +$GLOBALS["i18n"]["Send"] = "Wyślij"; // line 86 in mysql.class.php -$GLOBALS["i18n"]["Mysql container: connect error"] = ""; +$GLOBALS["i18n"]["Mysql container: connect error"] = "Pojemnik Mysql: błąd połączenia"; // line 101 in mysql.class.php -$GLOBALS["i18n"]["Mysql container: create database error '%s'"] = ""; +$GLOBALS["i18n"]["Mysql container: create database error '%s'"] = "Pojemnik Mysql: błąd '%s' tworzenia bazy"; // line 112 in mysql.class.php -$GLOBALS["i18n"]["Mysql container: create table error '%s'"] = ""; +$GLOBALS["i18n"]["Mysql container: create table error '%s'"] = "Pojemnik Mysql: błąd '%s' tworzenia tabeli"; // line 80 in chat.js.tpl.php -$GLOBALS["i18n"]["You are not allowed to speak to yourself"] = ""; +$GLOBALS["i18n"]["You are not allowed to speak to yourself"] = "Nie możesz rozmawiać ze samym sobą"; // line 82 in chat.js.tpl.php -$GLOBALS["i18n"]["Choosen nickname is not allowed"] = ""; +$GLOBALS["i18n"]["Choosen nickname is not allowed"] = "Wybrany pseudonim jest niedozwolony"; // line 83 in chat.js.tpl.php -$GLOBALS["i18n"]["Enable sound notifications"] = ""; +$GLOBALS["i18n"]["Enable sound notifications"] = "Włącz powiadomienia dźwiękowe"; // line 84 in chat.js.tpl.php -$GLOBALS["i18n"]["Disable sound notifications"] = ""; +$GLOBALS["i18n"]["Disable sound notifications"] = "Wyłącz powiadomienia dźwiękowe"; // line 23 in kick.class.php -$GLOBALS["i18n"]["no reason"] = ""; +$GLOBALS["i18n"]["no reason"] = "bez powodu"; // line 24 in banlist.class.php -$GLOBALS["i18n"]["The banished user list is:"] = ""; +$GLOBALS["i18n"]["The banished user list is:"] = "Oto lista zbanowanych użytkowników"; // line 39 in banlist.class.php -$GLOBALS["i18n"]["'/unban {nickname}' will unban the user identified by {nickname}"] = ""; +$GLOBALS["i18n"]["'/unban {nickname}' will unban the user identified by {nickname}"] = "'/unban {nickname}' odbanuje użytkownika posługującego się pseudonimem {nickname}"; // line 43 in kick.class.php -$GLOBALS["i18n"]["kicked from %s by %s - reason: %s"] = ""; +$GLOBALS["i18n"]["kicked from %s by %s - reason: %s"] = "wkopany z %s przez %s - powód: %s"; // line 20 in quit.class.php -$GLOBALS["i18n"]["%s quit (%s)"] = ""; +$GLOBALS["i18n"]["%s quit (%s)"] = "%s wyszedł (%s)"; // line 124 in chat.js.tpl.php -$GLOBALS["i18n"]["Chat loading ..."] = ""; +$GLOBALS["i18n"]["Chat loading ..."] = "Ladowanie chat'a..."; // line 124 in chat.js.tpl.php -$GLOBALS["i18n"]["Please wait"] = ""; +$GLOBALS["i18n"]["Please wait"] = "Porsze czekac"; // line 139 in chat.js.tpl.php -$GLOBALS["i18n"]["%s appears to be either disabled or unsupported by your browser."] = ""; +$GLOBALS["i18n"]["%s appears to be either disabled or unsupported by your browser."] = "%s wygląda na wyłączone lub nieobsługiwane przez Twoją przeglądarkę."; // line 139 in chat.js.tpl.php -$GLOBALS["i18n"]["This web application requires %s to work properly."] = ""; +$GLOBALS["i18n"]["This web application requires %s to work properly."] = "Ta aplikacja internetowa wymaga %s do poprawnej pracy."; // line 135 in chat.js.tpl.php -$GLOBALS["i18n"]["Please enable %s in your browser settings, or upgrade to a browser with %s support and try again."] = ""; +$GLOBALS["i18n"]["Please enable %s in your browser settings, or upgrade to a browser with %s support and try again."] = "Proszę włączyć %s w swojej przeglądarce, lub użyj przeglądarki obslugującej %s i spróbuj ponownie."; // line 137 in chat.js.tpl.php -$GLOBALS["i18n"]["Please upgrade to a browser with %s support and try again."] = ""; +$GLOBALS["i18n"]["Please upgrade to a browser with %s support and try again."] = "Proszę użyć przeglądarki z obsługą %s i spróbować ponownie."; // line 139 in chat.js.tpl.php -$GLOBALS["i18n"]["In Internet Explorer versions earlier than 7.0, Ajax is implemented using ActiveX. Please enable ActiveX in your browser security settings or upgrade to a browser with Ajax support and try again."] = ""; +$GLOBALS["i18n"]["In Internet Explorer versions earlier than 7.0, Ajax is implemented using ActiveX. Please enable ActiveX in your browser security settings or upgrade to a browser with Ajax support and try again."] = "W wersjach Internet Explorer wcześniejszych niż 7.0, Ajax jest zaimplementowny przy pomocy ActiveX. Porszę włączyć obsługę ActiveX w ustawieniach bezpieczeństwa swojej przeglądarki lub użyj przeglądarki z obsługą Ajax i spróbuj ponownie."; // line 359 in pfcglobalconfig.class.php -$GLOBALS["i18n"]["%s doesn't exist, data_public_path cannot be installed"] = ""; +$GLOBALS["i18n"]["%s doesn't exist, data_public_path cannot be installed"] = "%s nie istnieje, data_public_path nie może zostać zainstalowane"; // line 73 in invite.class.php -$GLOBALS["i18n"]["You must join %s to invite users in this channel"] = ""; +$GLOBALS["i18n"]["You must join %s to invite users in this channel"] = "Musisz podłączyć się do %s aby zapraszać użytkowników do tego kanału"; // line 47 in chat.html.tpl.php -$GLOBALS["i18n"]["Ping"] = ""; +$GLOBALS["i18n"]["Ping"] = "Ping"; // line 477 in phpfreechat.class.php -$GLOBALS["i18n"]["Input Required"] = ""; +$GLOBALS["i18n"]["Input Required"] = "Wpisz coś!"; // line 478 in phpfreechat.class.php -$GLOBALS["i18n"]["OK"] = ""; +$GLOBALS["i18n"]["OK"] = "OK"; // line 479 in phpfreechat.class.php -$GLOBALS["i18n"]["Cancel"] = ""; +$GLOBALS["i18n"]["Cancel"] = "Anuluj"; ?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |