mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-06-07 18:04:26 +02:00
translation updates
AR, CS, DE, IT, PL, SV for various addons
This commit is contained in:
parent
1556ebfb33
commit
2789e880dc
24 changed files with 405 additions and 310 deletions
|
@ -6,55 +6,55 @@
|
|||
# Translators:
|
||||
# fabrixxm <fabrix.xm@gmail.com>, 2018
|
||||
# Davide Pesenti <mrjive@mrjive.it>, 2018
|
||||
# Sylke Vicious <silkevicious@gmail.com>, 2021
|
||||
# Sylke Vicious <silkevicious@gmail.com>, 2023
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-12-29 00:53+0000\n"
|
||||
"POT-Creation-Date: 2021-11-21 19:14-0500\n"
|
||||
"PO-Revision-Date: 2018-04-07 05:23+0000\n"
|
||||
"Last-Translator: Sylke Vicious <silkevicious@gmail.com>, 2021\n"
|
||||
"Language-Team: Italian (https://www.transifex.com/Friendica/teams/12172/it/)\n"
|
||||
"Last-Translator: Sylke Vicious <silkevicious@gmail.com>, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/Friendica/teams/12172/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"
|
||||
|
||||
#: catavatar.php:48
|
||||
msgid "Use Cat as Avatar"
|
||||
msgstr "Usa il Gatto come avatar"
|
||||
|
||||
#: catavatar.php:49
|
||||
msgid "More Random Cat!"
|
||||
msgstr "Altro Gatto a caso!"
|
||||
|
||||
#: catavatar.php:50
|
||||
msgid "Reset to email Cat"
|
||||
msgstr "Reimposta Gatto"
|
||||
|
||||
#: catavatar.php:52
|
||||
msgid "Cat Avatar Settings"
|
||||
msgstr "Impostazioni Avatar Gatto"
|
||||
|
||||
#: 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
|
||||
#: catavatar.php:53
|
||||
msgid "Cat Avatar Settings"
|
||||
msgstr "Impostazioni Avatar Gatto"
|
||||
|
||||
#: catavatar.php:56
|
||||
msgid "Use Cat as Avatar"
|
||||
msgstr "Usa il Gatto come avatar"
|
||||
|
||||
#: catavatar.php:57
|
||||
msgid "Another random Cat!"
|
||||
msgstr "Un altro Gatto casuale!"
|
||||
|
||||
#: catavatar.php:58
|
||||
msgid "Reset to email Cat"
|
||||
msgstr "Reimposta Gatto"
|
||||
|
||||
#: catavatar.php:77
|
||||
msgid "The cat hadn't found itself."
|
||||
msgstr "Il gatto non ha trovato sé stesso."
|
||||
|
||||
#: catavatar.php:87
|
||||
#: catavatar.php:86
|
||||
msgid "There was an error, the cat ran away."
|
||||
msgstr "Si è verificato un errore, il gatto è scappato."
|
||||
|
||||
#: catavatar.php:93
|
||||
#: catavatar.php:92
|
||||
msgid "Profile Photos"
|
||||
msgstr "Foto del profilo"
|
||||
|
||||
#: catavatar.php:108
|
||||
#: catavatar.php:102
|
||||
msgid "Meow!"
|
||||
msgstr "Miao!"
|
||||
|
|
|
@ -3,13 +3,13 @@
|
|||
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['Use Cat as Avatar'] = 'Usa il Gatto come avatar';
|
||||
$a->strings['More Random Cat!'] = 'Altro Gatto a caso!';
|
||||
$a->strings['Reset to email Cat'] = 'Reimposta 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['Cat Avatar Settings'] = 'Impostazioni Avatar Gatto';
|
||||
$a->strings['Use Cat as Avatar'] = 'Usa il Gatto come avatar';
|
||||
$a->strings['Another random Cat!'] = 'Un altro Gatto casuale!';
|
||||
$a->strings['Reset to email Cat'] = 'Reimposta Gatto';
|
||||
$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['Profile Photos'] = 'Foto del profilo';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue