mirror of
https://github.com/Mibew/i18n.git
synced 2025-01-23 05:40:30 +03:00
a247cb0ee3
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@394 c66351dc-e62f-0410-b875-e3a5c0b9693f
21 lines
618 B
OpenEdge ABL
21 lines
618 B
OpenEdge ABL
<li>
|
|
<h2><?php echo getlocal("partners.title") ?></h2>
|
|
<ul>
|
|
<li><a href="http://sourceforge.net"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=195701&type=2" width="125" height="37" alt="SourceForge.net Logo" /></a></li>
|
|
</ul>
|
|
</li>
|
|
<li id="locales">
|
|
<h2><?php echo getlocal("languages.title") ?></h2>
|
|
<p>
|
|
<?php
|
|
foreach(array('en'=>'English','sp'=>'Spanish','ru'=>'Russian') as $k => $v) {
|
|
if($k == $current_locale) {
|
|
echo "<a href=\"#\" class=\"inactive\">".$v."</a>";
|
|
} else {
|
|
echo "<a href=\"?locale=$k\">".$v."</a>";
|
|
}
|
|
}
|
|
?>
|
|
</p>
|
|
</li>
|
|
|