2009-02-27 20:09:09 +03:00
|
|
|
<?php
|
|
|
|
$page = 'home';
|
|
|
|
$subpage = 'credits';
|
|
|
|
require_once('libs/common.php');
|
|
|
|
start_html_output();
|
2009-08-13 16:32:10 +04:00
|
|
|
$title = getlocal("credits.title");
|
2009-02-27 20:09:09 +03:00
|
|
|
require_once('inc/header.i');
|
|
|
|
require_once('inc/menu.i');
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div id="page">
|
|
|
|
<div id="content">
|
|
|
|
<div class="box1">
|
|
|
|
<p><img src="images/webimlogo.gif" alt="" width="74" height="79" class="left" /><?php echo getlocal("head.intro") ?></p>
|
|
|
|
</div>
|
|
|
|
<div class="post">
|
|
|
|
<h2 class="title"><?php echo getlocal("credits.title") ?></h2>
|
|
|
|
<div class="entry">
|
|
|
|
<p>
|
|
|
|
<?php echo getlocal("credits.content") ?>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p><?php echo getlocal("credits.translators") ?></p>
|
|
|
|
<ul>
|
2010-04-27 00:29:36 +04:00
|
|
|
<li>Arabic - <a href="/forums/index.php?action=profile;u=1366">Mostafa Khattab</a> and Active4web.net Developers; Tallal Suliman Eshaq</li>
|
|
|
|
<li>Bulgarian - Teodor Todorov</li>
|
|
|
|
<li>Catalan - Enric Garcia Barrios</li>
|
2009-08-13 16:04:34 +04:00
|
|
|
<li>Deutsch - <a href="/forums/index.php?action=profile;u=49">Gregor</a></li>
|
2010-04-27 00:29:36 +04:00
|
|
|
<li>Dutch - <a href="http://twitter.com/elegantchaos">Martin van der Linden</a></li>
|
2009-02-27 20:09:09 +03:00
|
|
|
<li>French - Hominn, Bard of LLYDAW</li>
|
2009-08-13 16:04:34 +04:00
|
|
|
<li>Hebrew - <a href="http://mediacms.net/" rel="nofollow">MediaCMS Team</a></li>
|
|
|
|
<li>Hrvatski - <a href="/forums/index.php?action=profile;u=1266">Gorana Rabar</a></li>
|
2010-04-27 00:29:36 +04:00
|
|
|
<li>Hungarian - bercy</li>
|
2009-08-13 16:04:34 +04:00
|
|
|
<li>Italiano - <a href="/forums/index.php?action=profile;u=781">CT32</a></li>
|
2009-11-04 00:53:33 +03:00
|
|
|
<li>Polski - <a href="/forums/index.php?action=profile;u=170">Kacper Wierzbicki</a>, <a href="http://mibew.org/forums/index.php?action=profile;u=170" > WebTower</a></li>
|
2009-08-13 16:04:34 +04:00
|
|
|
<li>Português Brasil - <a href="/forums/index.php?action=profile;u=1304">Leandro Luquetti</a></li>
|
2010-04-27 00:29:36 +04:00
|
|
|
<li>Romanian - Tallal Suliman Eshaq</li>
|
2009-08-13 16:04:34 +04:00
|
|
|
<li>Russian - <a href="/forums/index.php?action=profile;u=2">Evgeny Gryaznov</a></li>
|
2009-02-27 20:09:09 +03:00
|
|
|
<li>Spanish - Christian Mauricio Castillo Estrada</li>
|
2010-04-27 00:29:36 +04:00
|
|
|
<li>Swedish - <a href="http://sverok.se">Sverok</a> - Oliver Sundström, Nina Högberg, Andreas Brodin and David Stenström</li>
|
2010-02-19 01:00:16 +03:00
|
|
|
<li>Thai - Bongkoch P.</li>
|
2010-04-27 00:29:36 +04:00
|
|
|
<li>Simplified Chinese - <a href="/forums/index.php?action=profile;u=1679">codion</a></li>
|
2009-02-27 20:09:09 +03:00
|
|
|
<li>Traditional Chinese - Dawei</li>
|
2009-08-13 16:04:34 +04:00
|
|
|
<li>Ukrainian - <a href="/forums/index.php?action=profile;u=1206">azzepis</a></li>
|
2009-02-27 20:09:09 +03:00
|
|
|
</ul>
|
2009-08-13 14:34:02 +04:00
|
|
|
|
|
|
|
<p><?php echo "Tech Support Team" ?></p>
|
|
|
|
<ul>
|
2009-08-13 16:04:34 +04:00
|
|
|
<li>(eddybaur) Ed Kraus - Admininstrator</li>
|
|
|
|
</ul>
|
2009-02-27 20:09:09 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- end content -->
|
|
|
|
<!-- start sidebar -->
|
|
|
|
<div id="sidebar">
|
|
|
|
<ul>
|
|
|
|
<?php
|
|
|
|
require_once('inc/main.i');
|
|
|
|
require_once('inc/locales.i');
|
|
|
|
?>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<!-- end sidebar -->
|
|
|
|
<div style="clear: both;"> </div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<?php require_once('inc/footer.i'); ?>
|