2021-03-25 13:26:11 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* CodeIgniter
|
|
|
|
*
|
|
|
|
* An open source application development framework for PHP
|
|
|
|
*
|
|
|
|
* This content is released under the MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*
|
2023-11-29 12:24:09 +03:00
|
|
|
* @package CodeIgniter
|
|
|
|
* @author EllisLab Dev Team
|
|
|
|
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
|
|
|
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
|
|
|
* @license https://opensource.org/licenses/MIT MIT License
|
|
|
|
* @link https://codeigniter.com
|
|
|
|
* @since Version 1.0.0
|
2021-03-25 13:26:11 +03:00
|
|
|
* @filesource
|
|
|
|
*/
|
2023-11-29 12:24:09 +03:00
|
|
|
defined('BASEPATH') or exit('No direct script access allowed');
|
2021-03-25 13:26:11 +03:00
|
|
|
|
2022-12-12 11:20:57 +03:00
|
|
|
$lang['upload_userfile_not_set'] = 'Impossibile trovare una variabile post chiamata file utente.';
|
2023-12-08 13:28:24 +03:00
|
|
|
$lang['upload_file_exceeds_limit'] = 'Il file caricato supera la dimensione massima consentita nel tuo file di configurazione PHP.';
|
|
|
|
$lang['upload_file_exceeds_form_limit'] = 'Il file caricato supera la dimensione massima consentita dal modulo di invio.';
|
2022-12-12 11:20:57 +03:00
|
|
|
$lang['upload_file_partial'] = 'Il file è stato caricato solo parzialmente.';
|
|
|
|
$lang['upload_no_temp_directory'] = 'Manca la cartella temporanea.';
|
|
|
|
$lang['upload_unable_to_write_file'] = 'Impossibile scrivere il file su disco.';
|
|
|
|
$lang['upload_stopped_by_extension'] = 'Il caricamento del file è stato interrotto dall\'estensione.';
|
|
|
|
$lang['upload_no_file_selected'] = 'Non hai selezionato un file da caricare.';
|
|
|
|
$lang['upload_invalid_filetype'] = 'Il tipo di file che stai tentando di caricare non è consentito.';
|
|
|
|
$lang['upload_invalid_filesize'] = 'Il file che stai tentando di caricare è più grande della dimensione consentita.';
|
2023-12-08 13:28:24 +03:00
|
|
|
$lang['upload_invalid_dimensions'] = 'L\'immagine che stai tentando di caricare non rientra nelle dimensioni consentite.';
|
|
|
|
$lang['upload_destination_error'] = 'Si è verificato un problema durante il tentativo di spostare il file caricato nella destinazione finale.';
|
2022-12-12 11:20:57 +03:00
|
|
|
$lang['upload_no_filepath'] = 'Il percorso di caricamento non sembra essere valido.';
|
|
|
|
$lang['upload_no_file_types'] = 'Non hai specificato nessun tipo di file consentito.';
|
|
|
|
$lang['upload_bad_filename'] = 'Il nome del file che hai inviato esiste già sul server.';
|
|
|
|
$lang['upload_not_writable'] = 'La cartella di destinazione del caricamento non sembra essere scrivibile.';
|