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 [ 'imglib_source_image_required' ] = 'Devi specificare un\'immagine sorgente nelle tue preferenze.' ;
$lang [ 'iglib_gd_required' ] = 'Per questa funzione è richiesta la libreria di immagini GD.' ;
2023-11-29 12:24:09 +03:00
$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 di restrizioni di licenza. Potrebbe essere necessario utilizzare invece immagini JPG o PNG.' ;
2022-12-12 11:20:57 +03:00
$lang [ 'imglib_jpg_not_supported' ] = 'Le immagini JPG non sono supportate.' ;
$lang [ 'imglib_png_not_supported' ] = 'Le immagini PNG non sono supportate.' ;
2023-11-29 12:24:09 +03:00
$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 sostituire il file. Assicurati che la tua directory di file sia scrivibile.' ;
2022-12-12 11:20:57 +03:00
$lang [ 'imglib_rotate_unsupported' ] = 'La rotazione dell\'immagine non sembra essere supportata dal tuo server.' ;
2023-11-29 12:24:09 +03:00
$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 fallita. Verifica che il tuo server supporti il protocollo scelto e che il percorso della tua libreria di immagini sia corretto.' ;
2022-12-12 11:20:57 +03:00
$lang [ 'iglib_rotation_angle_required' ] = 'È richiesto un angolo di rotazione per ruotare l\'immagine.' ;
$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 font da usare.' ;
2023-11-29 12:24:09 +03:00
$lang [ 'imglib_save_failed' ] =
'Impossibile salvare l\'immagine. Assicurati che l\'immagine e la directory dei file siano scrivibili.' ;