2020-09-01 12:40:02 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists("string_plural_select_it")) {
|
|
|
|
function string_plural_select_it($n){
|
|
|
|
$n = intval($n);
|
2021-02-01 17:47:38 +00:00
|
|
|
return intval($n != 1);
|
2020-09-01 12:40:02 +00:00
|
|
|
}}
|
|
|
|
;
|
|
|
|
$a->strings["Save Settings"] = "Salva Impostazioni";
|
|
|
|
$a->strings["Allow \"good\" crawlers"] = "Permetti crawler \"buoni\"";
|
|
|
|
$a->strings["Block GabSocial"] = "Blocca GabSocial";
|
|
|
|
$a->strings["Training mode"] = "Modalità addestramento";
|
|
|
|
$a->strings["Settings updated."] = "Impostazioni aggiornate.";
|