]> git.mxchange.org Git - friendica-addons.git/blobdiff - langfilter/lang/it/strings.php
HU and IT translation updates
[friendica-addons.git] / langfilter / lang / it / strings.php
index 6f775fbac3b5331d6cdee2b6711abffeb0a7d833..8cae0b5770ace39ae43d826b8047f9b2e9b5c7e3 100644 (file)
@@ -3,10 +3,9 @@
 if(! function_exists("string_plural_select_it")) {
 function string_plural_select_it($n){
        $n = intval($n);
-       return intval($n != 1);
+       if ($n == 1) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else  { return 2; }
 }}
-$a->strings['Language Filter'] = 'Filtro Lingua';
-$a->strings['This addon tries to identify the language posts are written in. If it does not match any language specified below, posts will be hidden by collapsing them.'] = 'Questo componente aggiuntivo prova ad identificare la lingua usata in un messaggio. Se questa non corrisponde a una delle lingue specificata qui sotto, il messaggio verrà collassato.';
+$a->strings['This addon tries to identify the language posts are written in. If it does not match any language specified below, posts will be hidden by collapsing them.'] = 'Questo plug-in prova a identificare la lingua con cui sono stati scritti i posts. Se non corrisponde a nessuna delle lingue specificate qui sotto, i post verranno nascosti.';
 $a->strings['Use the language filter'] = 'Usa il filtro lingua';
 $a->strings['Able to read'] = 'In grado di leggere';
 $a->strings['List of abbreviations (ISO 639-1 codes) for languages you speak, comma separated. For example "de,it".'] = 'Lista di abbreviazioni (codici ISO 639-1) per le lingue che parli, separate da virgola. Per esempio "it,de".';
@@ -14,5 +13,6 @@ $a->strings['Minimum confidence in language detection'] = 'Fiducia minima nel ri
 $a->strings['Minimum confidence in language detection being correct, from 0 to 100. Posts will not be filtered when the confidence of language detection is below this percent value.'] = 'Fiducia minima che il rilevamento della lingua sia corretto, da 0 a 100. I messaggi non saranno filtrati quando la fiducia nel rilevamento della lingua è sotto questo valore percentuale.';
 $a->strings['Minimum length of message body'] = 'Lunghezza minima del corpo del messaggio';
 $a->strings['Minimum number of characters in message body for filter to be used. Posts shorter than this will not be filtered. Note: Language detection is unreliable for short content (<200 characters).'] = 'Numero di caratteri minimo perché il filtro venga usato. I messaggio più corti non saranno filtrati. Nota: la rilevazione della lingua non è affidabile con messaggi brevi (<200 caratteri)';
+$a->strings['Language Filter'] = 'Filtro Lingua';
 $a->strings['Save Settings'] = 'Salva Impostazioni';
 $a->strings['Filtered language: %s'] = 'Lingua filtrata: %s';