58 行
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			58 行
		
	
	
	
		
			3.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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.
 | |
|  *
 | |
|  * @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
 | |
|  * @filesource
 | |
|  */
 | |
| defined('BASEPATH') OR exit('Non è permesso l\'accesso diretto allo script');
 | |
| 
 | |
| $lang['imglib_source_image_required'] = 'Devi specificare un\'immagine di origine nelle tue preferenze.';
 | |
| $lang['imglib_gd_required'] = 'Per questa funzione è richiesta la libreria di immagini GD.';
 | |
| $lang['imglib_gd_required_for_props'] = 'Il tuo server deve supportare la libreria di immagini GD per determinare le proprietà dell\'immagine.';
 | |
| $lang['imglib_unsupported_imagecreate'] = 'Il tuo server non supporta la funzione GD richiesta per elaborare questo tipo di immagine.';
 | |
| $lang['imglib_gif_not_supported'] = 'Le immagini GIF spesso non sono supportate a causa delle restrizioni sulla licenza. Potrebbe essere necessario utilizzare invece immagini JPG o PNG.';
 | |
| $lang['imglib_jpg_not_supported'] = 'Le immagini JPG non sono supportate.';
 | |
| $lang['imglib_png_not_supported'] = 'Le immagini PNG non sono supportate.';
 | |
| $lang['imglib_webp_not_supported'] = 'Le immagini WEBP non sono supportate.';
 | |
| $lang['imglib_jpg_or_png_required'] = 'Il protocollo di ridimensionamento dell\'immagine specificato nelle tue preferenze funziona solo con i tipi di immagine JPEG o PNG.';
 | |
| $lang['imglib_copy_error'] = 'Si è verificato un errore durante il tentativo di sostituzione del file. Assicurati che la tua directory di file sia scrivibile.';
 | |
| $lang['imglib_rotate_unsupported'] = 'La rotazione delle immagini non sembra essere supportata dal tuo server.';
 | |
| $lang['imglib_libpath_invalid'] = 'Il percorso della tua libreria di immagini non è corretto. Si prega di impostare il percorso corretto nelle preferenze dell\'immagine.';
 | |
| $lang['imglib_image_process_failed'] = 'Elaborazione dell\'immagine non riuscita. Verifica che il tuo server supporti il protocollo scelto e che il percorso della tua libreria di immagini sia corretto.';
 | |
| $lang['imglib_rotation_angle_required'] = 'Per ruotare l\'immagine è necessario un angolo di rotazione.';
 | |
| $lang['imglib_invalid_path'] = 'Il percorso dell\'immagine non è corretto.';
 | |
| $lang['imglib_invalid_image'] = 'L\'immagine fornita non è valida.';
 | |
| $lang['imglib_copy_failed'] = 'La routine di copia dell\'immagine non è riuscita.';
 | |
| $lang['imglib_missing_font'] = 'Impossibile trovare un carattere da utilizzare.';
 | |
| $lang['imglib_save_failed'] = 'Impossibile salvare l\'immagine. Assicurati che l\'immagine e la directory dei file siano scrivibili.';
 |