mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 13:43:00 +00:00
11 lines
667 B
PHP
11 lines
667 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_it")) {
|
|
function string_plural_select_it($n){
|
|
$n = intval($n);
|
|
return intval($n != 1);
|
|
}}
|
|
;
|
|
$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "Il plugin \"MatJax\" renderizza formule matematiche scritta usando la sintassi LaTeX circondate dalle usuali $$ o un blocco eqnarray nei messaggi della tua bacheca, pagina Rete e messaggi privati.";
|
|
$a->strings["Use the MathJax renderer"] = "Usa il render MathJax";
|
|
$a->strings["Save Settings"] = "Salva Impostazioni";
|