]> git.mxchange.org Git - friendica-addons.git/blob - langfilter/lang/it/strings.php
HU and IT translation updates
[friendica-addons.git] / langfilter / lang / it / strings.php
1 <?php
2
3 if(! function_exists("string_plural_select_it")) {
4 function string_plural_select_it($n){
5         $n = intval($n);
6         if ($n == 1) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else  { return 2; }
7 }}
8 $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.';
9 $a->strings['Use the language filter'] = 'Usa il filtro lingua';
10 $a->strings['Able to read'] = 'In grado di leggere';
11 $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".';
12 $a->strings['Minimum confidence in language detection'] = 'Fiducia minima nel rilevamento della lingua';
13 $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.';
14 $a->strings['Minimum length of message body'] = 'Lunghezza minima del corpo del messaggio';
15 $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)';
16 $a->strings['Language Filter'] = 'Filtro Lingua';
17 $a->strings['Save Settings'] = 'Salva Impostazioni';
18 $a->strings['Filtered language: %s'] = 'Lingua filtrata: %s';