28 lines
1.9 KiB
PHP
28 lines
1.9 KiB
PHP
<?php
|
||
|
||
echo('</nav>
|
||
<div class="scrwide">
|
||
<div class="scrwidein">
|
||
<section class="sectcontm">
|
||
<h3>'._('Contribute to Mastodon Help development').'</h3>
|
||
<h4>'._('Translation').'</h4>
|
||
<p>'._('Please help us make this site better by contributing to its translation from English or Italian! :-)').'<br>
|
||
'._('Currently we are missing parts of translation to Catalan, Spanish and French.').'<br>'.N);
|
||
printf(_('If you’d like to help, just contact us at <span class="magt">masthelp[at]insicuri.net</span> and tell us (in English or Italian) which language you want to translate from and to; we’ll send you the files to translate and we’ll report here a translation is ongoing to the destination language of your choice. In the end, if you’d like to, we will cite you as a contributor on our <a href="/about/%s">About</a> page.'),$dlang);
|
||
echo('<br>
|
||
'._('Currently there’s no ongoing translation work.').'
|
||
<h4>'._('Reporting problems').'</h4>
|
||
<p>'._('You can report any problem you may experience with the site (bugs, wrong translations, instances we should blacklist in our search engine because they accept fascist / racist / sexist / ableist / sovereignist contents) to us at <span class="magt">masthelp[at]insicuri.net</span>.').'</p>
|
||
</section>
|
||
</div>
|
||
</div>'.N);
|
||
|
||
$tradnotes=array(
|
||
'ca'=>'Translation of this page to catalan language is missing (click <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 missing (click <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 missing (click <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);
|
||
|
||
?>
|