[Phpfreechat-svn] SF.net SVN: phpfreechat: [439] branches/0.x/i18n
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-04-17 12:01:55
|
Revision: 439 Author: kerphi Date: 2006-04-17 05:01:45 -0700 (Mon, 17 Apr 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=439&view=rev Log Message: ----------- New greek el_GR translation (many thanks to Speedy) Modified Paths: -------------- branches/0.x/demo/index.php Added Paths: ----------- branches/0.x/demo/demo41_in_greek.php branches/0.x/i18n/el_GR/ Copied: branches/0.x/demo/demo41_in_greek.php (from rev 438, trunk/demo/demo41_in_greek.php) =================================================================== --- branches/0.x/demo/demo41_in_greek.php (rev 0) +++ branches/0.x/demo/demo41_in_greek.php 2006-04-17 12:01:45 UTC (rev 439) @@ -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"] = "el_GR"; +$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: branches/0.x/demo/index.php =================================================================== --- branches/0.x/demo/index.php 2006-04-17 11:43:34 UTC (rev 438) +++ branches/0.x/demo/index.php 2006-04-17 12:01:45 UTC (rev 439) @@ -65,6 +65,7 @@ <li><a href="demo38_in_norwegian_bokmal.php">demo38 - the norwegian bokmal translation of the chat</a></li> <li><a href="demo39_in_bosnian.php">demo39 - the bosnian translation of the chat</a></li> <li><a href="demo40_in_turkish.php">demo40 - the turkish translation of the chat</a></li> + <li><a href="demo41_in_greek.php">demo41 - the greek translation of the chat</a></li> </ul> </body> Copied: branches/0.x/i18n/el_GR (from rev 438, trunk/i18n/el_GR) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |