32 lines
2.5 KiB
PHP
32 lines
2.5 KiB
PHP
<?php
|
||
|
||
echo('</nav>
|
||
<div class="scrwide">
|
||
<div class="scrwidein">
|
||
<section class="sectcontm">
|
||
<h3>'._('About').'</h3>
|
||
<p>'._('This website is mainly attended by <a href="https://mastodon.bida.im/@Ca_Gi">Ca_Gi</a> and <a href="https://mastodon.bida.im/@giarminio">giarminio</a> with a lot of help from other enthusiastic Mastodon users from the italian instance <a href="https://mastodon.bida.im">mastodon.bida.im</a> (<a href="https://bida.im">bida.im</a> also hosts it) and other instances.').'</p>
|
||
<p>'._('These are some of the involved users').'</p>
|
||
<ul>
|
||
<li><a href="https://mastodon.bida.im/@Ca_Gi">Ca_Gi</a> ');
|
||
printf(_('wrote the <a href="/%s">Guide</a>’s text and keeps it updated; he also does some translation work from Italian to English'),$dlang);
|
||
echo('</li>
|
||
<li><a href="https://mastodon.bida.im/@giarminio">giarminio</a> '._('develops the site and does some translation work from Italian to English').'</li>
|
||
<li><a href="https://mastodon.bida.im/@RedGlow">RedGlow</a> '._('integrated <a href="https://github.com/patrickschur/language-detection">Patrick Schur’s PHP library for automatic language detection</a> into the crawler').'</li>
|
||
<li><a href="https://mastodon.bida.im/@paulbutgold">paulbutgold</a> '._('made the crawler’s notifications management page for the backend').'</li>
|
||
<li><a href="https://mastodon.bida.im/@gnagno">gnagno</a> '._('translated parts of site text to Catalan').'</li>
|
||
</ul>
|
||
<p>'._('Except where otherwise noted, content on this site is licensed under a <a href="https://creativecommons.org/licenses/by/4.0">Creative Commons Attribution 4.0 International license</a>.').'</p>
|
||
</section>
|
||
</div>
|
||
</div>'.N);
|
||
|
||
$tradnotes=array(
|
||
'ca'=>'Translation of this page to catalan language is missing, please click <a href="/contribute/ca">here</a> if you’d like to help, or <span class="transc" onclick="document.getElementById(\'transd\').style.display=\'none\'">here</span> to close this message',
|
||
'es'=>'Translation of this page to spanish language is incomplete, please click <a href="/contribute/ca">here</a> if you’d like to help, or <span class="transc" onclick="document.getElementById(\'transd\').style.display=\'none\'">here</span> to close this message',
|
||
'fr'=>'Translation of this page to french language is incomplete, please click <a href="/contribute/ca">here</a> if you’d like to help, or <span class="transc" onclick="document.getElementById(\'transd\').style.display=\'none\'">here</span> to close this message'
|
||
);
|
||
if (array_key_exists($dlang,$tradnotes))
|
||
echo('<div id="transd">'.$tradnotes[$dlang].'</div>'.N);
|
||
|
||
?>
|