29 lines
2.3 KiB
PHP
29 lines
2.3 KiB
PHP
<?php
|
||
|
||
echo('</nav>
|
||
<div class="scrwide">
|
||
<div class="scrwidein">
|
||
<section class="sectcontm">
|
||
<h3>'._('Contribute to Mastodon Help development').'</h3>
|
||
<p>'._('You can contribute to Mastodon Help development in various ways.').'</p>
|
||
<h4>'._('Translation').'</h4>
|
||
<p>'._('Please help us make this site better by contributing to its translation from languages we already fully support (currently English and Italian) to your language or other languages you know! :-)').'<br>
|
||
'._('Currently we are missing parts of translation to Catalan, Spanish and French, but of course you can also present yourself for translating to other, not yet supported languages.').'<br>'.N);
|
||
printf(_('In both cases, just contact us at masthelp[at]insicuri.net and tell us how you’d like to contribute to translation, from which language and to which language (when writing to us please bear in mind we only speak and understand Italian and English); we’ll then send the files to translate (in plain text format) to you and we’ll report here a translation is ongoing to the destination language of your choice. In the end, if you’d like to, you could be cited 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) at masthelp[at]insicuri.net.').'</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);
|
||
|
||
?>
|