HU and IT translation updates
This commit is contained in:
parent
5cae2bffb2
commit
c137fc5e79
66 changed files with 530 additions and 558 deletions
|
@ -5,50 +5,43 @@
|
|||
#
|
||||
# Translators:
|
||||
# fabrixxm <fabrix.xm@gmail.com>, 2014-2015
|
||||
# Sylke Vicious <silkevicious@gmail.com>, 2021
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
|
||||
"PO-Revision-Date: 2017-09-20 06:08+0000\n"
|
||||
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n"
|
||||
"POT-Creation-Date: 2021-11-21 19:16-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 12:30+0000\n"
|
||||
"Last-Translator: Sylke Vicious <silkevicious@gmail.com>, 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"
|
||||
|
||||
#: qcomment.php:51
|
||||
#: qcomment.php:45
|
||||
msgid ":-)"
|
||||
msgstr ":-)"
|
||||
|
||||
#: qcomment.php:51
|
||||
#: qcomment.php:45
|
||||
msgid ":-("
|
||||
msgstr ":-("
|
||||
|
||||
#: qcomment.php:51
|
||||
#: qcomment.php:45
|
||||
msgid "lol"
|
||||
msgstr "lol"
|
||||
|
||||
#: qcomment.php:54
|
||||
msgid "Quick Comment Settings"
|
||||
msgstr "Impostazioni commento rapido"
|
||||
|
||||
#: qcomment.php:56
|
||||
#: qcomment.php:49
|
||||
msgid ""
|
||||
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
|
||||
" provide simple replies."
|
||||
msgstr "Trovi i commenti rapidi vicino al box dei commenti, a volte nascosti. Cliccali per inviare semplici risposte."
|
||||
|
||||
#: qcomment.php:57
|
||||
#: qcomment.php:50
|
||||
msgid "Enter quick comments, one per line"
|
||||
msgstr "Inserire un commento rapido, uno per linea"
|
||||
|
||||
#: qcomment.php:61
|
||||
msgid "Submit"
|
||||
msgstr "Invia"
|
||||
|
||||
#: qcomment.php:75
|
||||
msgid "Quick Comment settings saved."
|
||||
msgstr "Impostazioni commento rapido salvate."
|
||||
#: qcomment.php:55
|
||||
msgid "Quick Comment Settings"
|
||||
msgstr "Impostazioni commento rapido"
|
||||
|
|
|
@ -3,13 +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[':-)'] = ':-)';
|
||||
$a->strings[':-('] = ':-(';
|
||||
$a->strings['lol'] = 'lol';
|
||||
$a->strings['Quick Comment Settings'] = 'Impostazioni commento rapido';
|
||||
$a->strings['Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies.'] = 'Trovi i commenti rapidi vicino al box dei commenti, a volte nascosti. Cliccali per inviare semplici risposte.';
|
||||
$a->strings['Enter quick comments, one per line'] = 'Inserire un commento rapido, uno per linea';
|
||||
$a->strings['Submit'] = 'Invia';
|
||||
$a->strings['Quick Comment settings saved.'] = 'Impostazioni commento rapido salvate.';
|
||||
$a->strings['Quick Comment Settings'] = 'Impostazioni commento rapido';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue