]> git.mxchange.org Git - friendica-addons.git/blob - nsfw/lang/it/strings.php
4f7c699e7493dfe7965b1ef0f12a27c7668ea1b9
[friendica-addons.git] / nsfw / 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 searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view.'] = 'Questo componente aggiuntivo cerca per le parole specificate nei messaggi e li collassa. Può essere usato per filtrare contenuto taggato, per esempio, #NSFW (non sicuro per il lavoro), che può risultare inappropriato in certi orari o in certi luoghi, come appunto al lavoro. È anche utile per nascondere contenuto irrilevante o fastidioso.';
9 $a->strings['Enable Content filter'] = 'Abilita il Filtro Contenuti';
10 $a->strings['Comma separated list of keywords to hide'] = 'Elenco separato da virgole di parole da nascondere';
11 $a->strings['Content Filter (NSFW and more)'] = 'Filtro Contenuto (NSFW e altro)';
12 $a->strings['Filtered tag: %s'] = 'Tag filtrato: %s';
13 $a->strings['Filtered word: %s'] = 'Parola filtrata:  %s';