IT: imported translations

This commit is contained in:
Tobias Diekershoff 2014-09-14 22:01:44 +02:00
parent e60a9e61fd
commit 1038ae0174
128 changed files with 5405 additions and 669 deletions

View file

@ -0,0 +1,55 @@
# ADDON js_upload
# Copyright (C)
# This file is distributed under the same license as the Friendica js_upload addon package.
#
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2014-06-23 08:46+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/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"
#: js_upload.php:43
msgid "Upload a file"
msgstr ""
#: js_upload.php:44
msgid "Drop files here to upload"
msgstr ""
#: js_upload.php:45
msgid "Cancel"
msgstr ""
#: js_upload.php:46
msgid "Failed"
msgstr ""
#: js_upload.php:303
msgid "No files were uploaded."
msgstr ""
#: js_upload.php:309
msgid "Uploaded file is empty"
msgstr ""
#: js_upload.php:321
msgid "Image exceeds size limit of "
msgstr ""
#: js_upload.php:332
msgid "File has an invalid extension, it should be one of "
msgstr ""
#: js_upload.php:343
msgid "Upload was cancelled, or server error encountered"
msgstr ""

View file

@ -1,11 +1,16 @@
<?php
$a->strings["Upload a file"] = "Carica un file";
$a->strings["Drop files here to upload"] = "Trascina un file qui per caricarlo";
$a->strings["Cancel"] = "Annulla";
$a->strings["Failed"] = "Caricamento fallito";
$a->strings["No files were uploaded."] = "Nessun file è stato caricato.";
$a->strings["Uploaded file is empty"] = "Il file caricato è vuoto";
$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di";
$a->strings["File has an invalid extension, it should be one of "] = "Il file ha un'estensione non valida, dovrebbe essere una tra ";
$a->strings["Upload was cancelled, or server error encountered"] = "Il caricamento è stato cancellato, o si è verificato un errore sul server";
<?php
if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
return ($n != 1);;
}}
;
$a->strings["Upload a file"] = "";
$a->strings["Drop files here to upload"] = "";
$a->strings["Cancel"] = "";
$a->strings["Failed"] = "";
$a->strings["No files were uploaded."] = "";
$a->strings["Uploaded file is empty"] = "";
$a->strings["Image exceeds size limit of "] = "";
$a->strings["File has an invalid extension, it should be one of "] = "";
$a->strings["Upload was cancelled, or server error encountered"] = "";