translations updates for 2023.03

This commit is contained in:
Tobias Diekershoff 2023-04-09 07:58:49 +02:00
parent 91bb323a16
commit 1c677722b3
148 changed files with 1875 additions and 2233 deletions

View file

@ -10,21 +10,17 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-01 11:11-0400\n"
"PO-Revision-Date: 2020-09-17 11:25+0000\n"
"Last-Translator: Sylke Vicious <silkevicious@gmail.com>\n"
"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
"POT-Creation-Date: 2022-12-10 14:42-0500\n"
"PO-Revision-Date: 2014-06-23 10:34+0000\n"
"Last-Translator: Sylke Vicious <silkevicious@gmail.com>, 2020\n"
"Language-Team: Italian (http://app.transifex.com/Friendica/friendica/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#: nsfw.php:77 nsfw.php:81
msgid "Content Filter (NSFW and more)"
msgstr "Filtro Contenuto (NSFW e altro)"
#: nsfw.php:85
#: nsfw.php:65
msgid ""
"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 "
@ -32,32 +28,35 @@ msgid ""
"is also useful for hiding irrelevant or annoying content from direct view."
msgstr "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."
#: nsfw.php:86
#: nsfw.php:66
msgid "Enable Content filter"
msgstr "Abilita il Filtro Contenuti"
#: nsfw.php:89
#: nsfw.php:67
msgid "Comma separated list of keywords to hide"
msgstr "Elenco separato da virgole di parole da nascondere"
#: nsfw.php:93
msgid "Save Settings"
msgstr "Salva Impostazioni"
#: nsfw.php:67
msgid ""
"Use /expression/ to provide regular expressions, #tag to specfically match "
"hashtags (case-insensitive), or regular words (case-sensitive)"
msgstr ""
#: nsfw.php:94
msgid "Use /expression/ to provide regular expressions"
msgstr "Utilizza /espressione/ per inserire espressioni regolari"
#: nsfw.php:72
msgid "Content Filter (NSFW and more)"
msgstr "Filtro Contenuto (NSFW e altro)"
#: nsfw.php:109
msgid "NSFW Settings saved."
msgstr "Impostazioni NSFW salvate."
#: nsfw.php:96
#, php-format
msgid "Regular expression \"%s\" fails to compile"
msgstr ""
#: nsfw.php:162
#: nsfw.php:154
#, php-format
msgid "Filtered tag: %s"
msgstr "Tag filtrato: %s"
#: nsfw.php:164
#: nsfw.php:156
#, php-format
msgid "Filtered word: %s"
msgstr "Parola filtrata: %s"

View file

@ -3,14 +3,11 @@
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['Content Filter (NSFW and more)'] = 'Filtro Contenuto (NSFW e altro)';
$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.';
$a->strings['Enable Content filter'] = 'Abilita il Filtro Contenuti';
$a->strings['Comma separated list of keywords to hide'] = 'Elenco separato da virgole di parole da nascondere';
$a->strings['Save Settings'] = 'Salva Impostazioni';
$a->strings['Use /expression/ to provide regular expressions'] = 'Utilizza /espressione/ per inserire espressioni regolari';
$a->strings['NSFW Settings saved.'] = 'Impostazioni NSFW salvate.';
$a->strings['Content Filter (NSFW and more)'] = 'Filtro Contenuto (NSFW e altro)';
$a->strings['Filtered tag: %s'] = 'Tag filtrato: %s';
$a->strings['Filtered word: %s'] = 'Parola filtrata: %s';