Update IT strings

This commit is contained in:
Fabio 2017-01-18 14:04:53 +01:00
parent dd7dc77a10
commit b5701ac885
34 changed files with 153 additions and 85 deletions

View file

@ -0,0 +1,57 @@
# ADDON notifyall
# Copyright (C)
# This file is distributed under the same license as the Friendica notifyall addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-14 16:41+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>, 2017\n"
"Language-Team: Italian (https://www.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"
#: notifyall.php:26
msgid "Send email to all members"
msgstr "Invia email a tutti i membri"
#: notifyall.php:42
#, php-format
msgid "%s Administrator"
msgstr "Amministratore %s"
#: notifyall.php:44
#, php-format
msgid "%1$s, %2$s Administrator"
msgstr "%1$s, amministratore di %2$s"
#: notifyall.php:60
msgid "No recipients found."
msgstr "Nessun destinatario trovato."
#: notifyall.php:78
msgid "Emails sent"
msgstr "Email inviate"
#: notifyall.php:86
msgid "Send email to all members of this Friendica instance."
msgstr "Invia email a tutti i membri di questa istanza Friendica."
#: notifyall.php:91
msgid "Message subject"
msgstr "Oggetto del messaggio"
#: notifyall.php:92
msgid "Test mode (only send to administrator)"
msgstr "Modalità test (invia solo agli amministratori)"
#: notifyall.php:93
msgid "Submit"
msgstr "Invia"

View file

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
return ($n != 1);;
}}
;
$a->strings["Send email to all members"] = "Invia email a tutti i membri";
$a->strings["%s Administrator"] = "Amministratore %s";
$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, amministratore di %2\$s";
$a->strings["No recipients found."] = "Nessun destinatario trovato.";
$a->strings["Emails sent"] = "Email inviate";
$a->strings["Send email to all members of this Friendica instance."] = "Invia email a tutti i membri di questa istanza Friendica.";
$a->strings["Message subject"] = "Oggetto del messaggio";
$a->strings["Test mode (only send to administrator)"] = "Modalità test (invia solo agli amministratori)";
$a->strings["Submit"] = "Invia";