HU and IT translation updates

This commit is contained in:
Tobias Diekershoff 2023-04-21 21:41:23 +02:00
parent 5cae2bffb2
commit c137fc5e79
66 changed files with 530 additions and 558 deletions

View file

@ -12,68 +12,68 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
"PO-Revision-Date: 2021-10-17 21:25+0000\n"
"Last-Translator: SickShark X\n"
"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
"POT-Creation-Date: 2021-11-21 19:15-0500\n"
"PO-Revision-Date: 2015-07-25 08:05+0000\n"
"Last-Translator: SickShark X, 2021\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"
#: langfilter.php:50
msgid "Language Filter"
msgstr "Filtro Lingua"
#: langfilter.php:51
#: langfilter.php:49
msgid ""
"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."
msgstr "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."
#: langfilter.php:52
#: langfilter.php:50
msgid "Use the language filter"
msgstr "Usa il filtro lingua"
#: langfilter.php:53
#: langfilter.php:51
msgid "Able to read"
msgstr "In grado di leggere"
#: langfilter.php:53
#: langfilter.php:51
msgid ""
"List of abbreviations (ISO 639-1 codes) for languages you speak, comma "
"separated. For example \"de,it\"."
msgstr "Lista di abbreviazioni (codici ISO 639-1) per le lingue che parli, separate da virgola. Per esempio \"it,de\"."
#: langfilter.php:54
#: langfilter.php:52
msgid "Minimum confidence in language detection"
msgstr "Fiducia minima nel rilevamento della lingua"
#: langfilter.php:54
#: langfilter.php:52
msgid ""
"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."
msgstr "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."
#: langfilter.php:55
#: langfilter.php:53
msgid "Minimum length of message body"
msgstr "Lunghezza minima del corpo del messaggio"
#: langfilter.php:55
#: langfilter.php:53
msgid ""
"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)."
msgstr "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)"
#: langfilter.php:56
#: langfilter.php:58
msgid "Language Filter"
msgstr "Filtro Lingua"
#: langfilter.php:60
msgid "Save Settings"
msgstr "Salva Impostazioni"
#: langfilter.php:187
#: langfilter.php:193
#, php-format
msgid "Filtered language: %s"
msgstr "Lingua filtrata: %s"

View file

@ -3,9 +3,8 @@
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 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';
@ -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';