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

@ -5,71 +5,67 @@
#
# Translators:
# fabrixxm <fabrix.xm@gmail.com>, 2014-2015,2017-2018
# Sylke Vicious <silkevicious@gmail.com>, 2020
# Sylke Vicious <silkevicious@gmail.com>, 2020,2023
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-01 18:16+0100\n"
"PO-Revision-Date: 2020-09-17 11:42+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: 2021-11-21 19:18-0500\n"
"PO-Revision-Date: 2014-06-23 13:07+0000\n"
"Last-Translator: Sylke Vicious <silkevicious@gmail.com>, 2020,2023\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"
#: wppost.php:39
#: wppost.php:41
msgid "Post to Wordpress"
msgstr "Invia a Wordpress"
#: wppost.php:80 wppost.php:84
msgid "Wordpress Export"
msgstr "Esporta a Wordpress"
#: wppost.php:65
msgid "Enable Wordpress Post Addon"
msgstr "Abilita Componente Aggiuntivo di Pubblicazione Wordpress"
#: wppost.php:87
msgid "Enable WordPress Post Addon"
msgstr "Abilita il componente aggiuntivo di invio a Wordpress"
#: wppost.php:93
msgid "WordPress username"
#: wppost.php:66
msgid "Wordpress username"
msgstr "Nome utente Wordpress"
#: wppost.php:98
msgid "WordPress password"
#: wppost.php:67
msgid "Wordpress password"
msgstr "Password Wordpress"
#: wppost.php:103
#: wppost.php:68
msgid "WordPress API URL"
msgstr "Indirizzo API Wordpress"
#: wppost.php:108
msgid "Post to WordPress by default"
msgstr "Invia sempre a Wordpress"
#: wppost.php:69
msgid "Post to Wordpress by default"
msgstr "Pubblica su Wordpress per impostazione predefinita"
#: wppost.php:114
#: wppost.php:70
msgid "Provide a backlink to the Friendica post"
msgstr "Inserisci un collegamento al messaggio originale su Friendica"
#: wppost.php:119
#: wppost.php:71
msgid ""
"Text for the backlink, e.g. Read the original post and comment stream on "
"Friendica."
msgstr "Testo per il collegamento al messaggio originale, p.e. Leggi il messaggio originale e i commenti su Friendica."
#: wppost.php:124
#: wppost.php:72
msgid "Don't post messages that are too short"
msgstr "Non inviare messaggi troppo corti"
#: wppost.php:131
msgid "Save Settings"
msgstr "Salva Impostazioni"
#: wppost.php:77
msgid "Wordpress Export"
msgstr "Esporta a Wordpress"
#: wppost.php:231
#: wppost.php:182
msgid "Read the orig­i­nal post and com­ment stream on Friendica"
msgstr "Leggi il messaggio originale e i commenti su Friendica"
#: wppost.php:289
#: wppost.php:240
msgid "Post from Friendica"
msgstr "Messaggio da Friendica"

View file

@ -3,18 +3,17 @@
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['Post to Wordpress'] = 'Invia a Wordpress';
$a->strings['Wordpress Export'] = 'Esporta a Wordpress';
$a->strings['Enable WordPress Post Addon'] = 'Abilita il componente aggiuntivo di invio a Wordpress';
$a->strings['WordPress username'] = 'Nome utente Wordpress';
$a->strings['WordPress password'] = 'Password Wordpress';
$a->strings['Enable Wordpress Post Addon'] = 'Abilita Componente Aggiuntivo di Pubblicazione Wordpress';
$a->strings['Wordpress username'] = 'Nome utente Wordpress';
$a->strings['Wordpress password'] = 'Password Wordpress';
$a->strings['WordPress API URL'] = 'Indirizzo API Wordpress';
$a->strings['Post to WordPress by default'] = 'Invia sempre a Wordpress';
$a->strings['Post to Wordpress by default'] = 'Pubblica su Wordpress per impostazione predefinita';
$a->strings['Provide a backlink to the Friendica post'] = 'Inserisci un collegamento al messaggio originale su Friendica';
$a->strings['Text for the backlink, e.g. Read the original post and comment stream on Friendica.'] = 'Testo per il collegamento al messaggio originale, p.e. Leggi il messaggio originale e i commenti su Friendica.';
$a->strings['Don\'t post messages that are too short'] = 'Non inviare messaggi troppo corti';
$a->strings['Save Settings'] = 'Salva Impostazioni';
$a->strings['Wordpress Export'] = 'Esporta a Wordpress';
$a->strings['Read the orig­i­nal post and com­ment stream on Friendica'] = 'Leggi il messaggio originale e i commenti su Friendica';
$a->strings['Post from Friendica'] = 'Messaggio da Friendica';