IT translation for catavatar translation updated THX silkevicious

This commit is contained in:
Tobias Diekershoff 2021-02-01 07:23:21 +01:00
parent 8e38daf7d1
commit 7f4d5118b6
2 changed files with 23 additions and 12 deletions

View File

@ -3,14 +3,19 @@
# This file is distributed under the same license as the Friendica catavatar addon package. # This file is distributed under the same license as the Friendica catavatar addon package.
# #
# #
# Translators:
# fabrixxm <fabrix.xm@gmail.com>, 2018
# Davide Pesenti <mrjive@mrjive.it>, 2018
# Sylke Vicious <silkevicious@gmail.com>, 2021
#
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-04-13 09:35+0000\n" "POT-Creation-Date: 2020-12-29 00:53+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2018-04-07 05:23+0000\n"
"Last-Translator: Davide Pesenti <mrjive@mrjive.it>, 2018\n" "Last-Translator: Sylke Vicious <silkevicious@gmail.com>, 2021\n"
"Language-Team: Italian (https://www.transifex.com/Friendica/teams/12172/it/)\n" "Language-Team: Italian (https://www.transifex.com/Friendica/teams/12172/it/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -18,34 +23,38 @@ msgstr ""
"Language: it\n" "Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: catavatar.php:60 #: catavatar.php:48
msgid "Use Cat as Avatar" msgid "Use Cat as Avatar"
msgstr "Usa il Gatto come avatar" msgstr "Usa il Gatto come avatar"
#: catavatar.php:61 #: catavatar.php:49
msgid "More Random Cat!" msgid "More Random Cat!"
msgstr "Altro Gatto a caso!" msgstr "Altro Gatto a caso!"
#: catavatar.php:62 #: catavatar.php:50
msgid "Reset to email Cat" msgid "Reset to email Cat"
msgstr "Reimposta Gatto" msgstr "Reimposta Gatto"
#: catavatar.php:64 #: catavatar.php:52
msgid "Cat Avatar Settings" msgid "Cat Avatar Settings"
msgstr "Impostazioni Avatar Gatto" msgstr "Impostazioni Avatar Gatto"
#: catavatar.php:100 #: catavatar.php:53
msgid "Set default profile avatar or randomize the cat."
msgstr "Imposta l'immagine di profilo predefinita o crea un gatto casuale."
#: catavatar.php:78
msgid "The cat hadn't found itself." msgid "The cat hadn't found itself."
msgstr "Il gatto non ha trovato sé stesso." msgstr "Il gatto non ha trovato sé stesso."
#: catavatar.php:109 #: catavatar.php:87
msgid "There was an error, the cat ran away." msgid "There was an error, the cat ran away."
msgstr "Si è verificato un errore, il gatto è scappato." msgstr "Si è verificato un errore, il gatto è scappato."
#: catavatar.php:115 #: catavatar.php:93
msgid "Profile Photos" msgid "Profile Photos"
msgstr "Foto del profilo" msgstr "Foto del profilo"
#: catavatar.php:130 #: catavatar.php:108
msgid "Meow!" msgid "Meow!"
msgstr "Miao!" msgstr "Miao!"

View File

@ -2,13 +2,15 @@
if(! function_exists("string_plural_select_it")) { if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){ function string_plural_select_it($n){
return ($n != 1);; $n = intval($n);
return intval($n != 1);
}} }}
; ;
$a->strings["Use Cat as Avatar"] = "Usa il Gatto come avatar"; $a->strings["Use Cat as Avatar"] = "Usa il Gatto come avatar";
$a->strings["More Random Cat!"] = "Altro Gatto a caso!"; $a->strings["More Random Cat!"] = "Altro Gatto a caso!";
$a->strings["Reset to email Cat"] = "Reimposta Gatto"; $a->strings["Reset to email Cat"] = "Reimposta Gatto";
$a->strings["Cat Avatar Settings"] = "Impostazioni Avatar Gatto"; $a->strings["Cat Avatar Settings"] = "Impostazioni Avatar Gatto";
$a->strings["Set default profile avatar or randomize the cat."] = "Imposta l'immagine di profilo predefinita o crea un gatto casuale.";
$a->strings["The cat hadn't found itself."] = "Il gatto non ha trovato sé stesso."; $a->strings["The cat hadn't found itself."] = "Il gatto non ha trovato sé stesso.";
$a->strings["There was an error, the cat ran away."] = "Si è verificato un errore, il gatto è scappato."; $a->strings["There was an error, the cat ran away."] = "Si è verificato un errore, il gatto è scappato.";
$a->strings["Profile Photos"] = "Foto del profilo"; $a->strings["Profile Photos"] = "Foto del profilo";