forked from mirrors/easyappointments
Update Italian language
# Conflicts: # application/language/italian/translations_lang.php
This commit is contained in:
parent
0ee1f5cb0a
commit
655d98fc69
9 changed files with 122 additions and 122 deletions
|
@ -37,33 +37,33 @@
|
|||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['form_validation_required'] = 'The {field} field is required.';
|
||||
$lang['form_validation_isset'] = 'The {field} field must have a value.';
|
||||
$lang['form_validation_valid_email'] = 'The {field} field must contain a valid email address.';
|
||||
$lang['form_validation_valid_emails'] = 'The {field} field must contain all valid email addresses.';
|
||||
$lang['form_validation_valid_url'] = 'The {field} field must contain a valid URL.';
|
||||
$lang['form_validation_valid_ip'] = 'The {field} field must contain a valid IP.';
|
||||
$lang['form_validation_valid_base64'] = 'The {field} field must contain a valid Base64 string.';
|
||||
$lang['form_validation_min_length'] = 'The {field} field must be at least {param} characters in length.';
|
||||
$lang['form_validation_max_length'] = 'The {field} field cannot exceed {param} characters in length.';
|
||||
$lang['form_validation_exact_length'] = 'The {field} field must be exactly {param} characters in length.';
|
||||
$lang['form_validation_alpha'] = 'The {field} field may only contain alphabetical characters.';
|
||||
$lang['form_validation_alpha_numeric'] = 'The {field} field may only contain alpha-numeric characters.';
|
||||
$lang['form_validation_alpha_numeric_spaces'] = 'The {field} field may only contain alpha-numeric characters and spaces.';
|
||||
$lang['form_validation_alpha_dash'] = 'The {field} field may only contain alpha-numeric characters, underscores, and dashes.';
|
||||
$lang['form_validation_numeric'] = 'The {field} field must contain only numbers.';
|
||||
$lang['form_validation_is_numeric'] = 'The {field} field must contain only numeric characters.';
|
||||
$lang['form_validation_integer'] = 'The {field} field must contain an integer.';
|
||||
$lang['form_validation_regex_match'] = 'The {field} field is not in the correct format.';
|
||||
$lang['form_validation_matches'] = 'The {field} field does not match the {param} field.';
|
||||
$lang['form_validation_differs'] = 'The {field} field must differ from the {param} field.';
|
||||
$lang['form_validation_is_unique'] = 'The {field} field must contain a unique value.';
|
||||
$lang['form_validation_is_natural'] = 'The {field} field must only contain digits.';
|
||||
$lang['form_validation_is_natural_no_zero'] = 'The {field} field must only contain digits and must be greater than zero.';
|
||||
$lang['form_validation_decimal'] = 'The {field} field must contain a decimal number.';
|
||||
$lang['form_validation_less_than'] = 'The {field} field must contain a number less than {param}.';
|
||||
$lang['form_validation_less_than_equal_to'] = 'The {field} field must contain a number less than or equal to {param}.';
|
||||
$lang['form_validation_greater_than'] = 'The {field} field must contain a number greater than {param}.';
|
||||
$lang['form_validation_greater_than_equal_to'] = 'The {field} field must contain a number greater than or equal to {param}.';
|
||||
$lang['form_validation_error_message_not_set'] = 'Unable to access an error message corresponding to your field name {field}.';
|
||||
$lang['form_validation_in_list'] = 'The {field} field must be one of: {param}.';
|
||||
$lang['form_validation_required'] = 'Il campo {field} è obbligatorio.';
|
||||
$lang['form_validation_isset'] = 'Il campo {field} deve avere un valore.';
|
||||
$lang['form_validation_valid_email'] = 'Il campo {field} deve contenere un indirizzo email valido.';
|
||||
$lang['form_validation_valid_emails'] = 'Il campo {field} deve contenere tutti gli indirizzi email validi.';
|
||||
$lang['form_validation_valid_url'] = 'Il campo {field} deve contenere un URL valido.';
|
||||
$lang['form_validation_valid_ip'] = 'Il campo {field} deve contenere un IP valido.';
|
||||
$lang['form_validation_valid_base64'] = 'Il campo {field} deve contenere una stringa Base64 valida.';
|
||||
$lang['form_validation_min_length'] = 'Il campo {field} deve contenere almeno {param} caratteri.';
|
||||
$lang['form_validation_max_length'] = 'Il campo {field} non può superare la lunghezza di {param} caratteri.';
|
||||
$lang['form_validation_exact_length'] = 'Il campo {field} deve contenere esattamente {param} caratteri.';
|
||||
$lang['form_validation_alpha'] = 'Il campo {field} può contenere solo caratteri alfabetici.';
|
||||
$lang['form_validation_alpha_numeric'] = 'Il campo {field} può contenere solo caratteri alfanumerici.';
|
||||
$lang['form_validation_alpha_numeric_spaces'] = 'Il campo {field} può contenere solo caratteri alfanumerici e spazi.';
|
||||
$lang['form_validation_alpha_dash'] = 'Il campo {field} può contenere solo caratteri alfanumerici, trattini bassi e trattini.';
|
||||
$lang['form_validation_numeric'] = 'Il campo {field} deve contenere solo numeri.';
|
||||
$lang['form_validation_is_numeric'] = 'Il campo {field} deve contenere solo caratteri numerici.';
|
||||
$lang['form_validation_integer'] = 'Il campo {field} deve contenere un numero intero.';
|
||||
$lang['form_validation_regex_match'] = 'Il campo {field} non è nel formato corretto.';
|
||||
$lang['form_validation_matches'] = 'Il campo {field} non corrisponde al campo {param}.';
|
||||
$lang['form_validation_differs'] = 'Il campo {field} deve essere diverso dal campo {param}.';
|
||||
$lang['form_validation_is_unique'] = 'Il campo {field} deve contenere un valore univoco.';
|
||||
$lang['form_validation_is_natural'] = 'Il campo {field} deve contenere solo cifre.';
|
||||
$lang['form_validation_is_natural_no_zero'] = 'Il campo {field} deve contenere solo cifre e deve essere maggiore di zero.';
|
||||
$lang['form_validation_decimal'] = 'Il campo {field} deve contenere un numero decimale.';
|
||||
$lang['form_validation_less_than'] = 'Il campo {field} deve contenere un numero inferiore a {param}.';
|
||||
$lang['form_validation_less_than_equal_to'] = 'Il campo {field} deve contenere un numero minore o uguale a {param}.';
|
||||
$lang['form_validation_greater_than'] = 'Il campo {field} deve contenere un numero maggiore di {param}.';
|
||||
$lang['form_validation_greater_than_equal_to'] = 'Il campo {field} deve contenere un numero maggiore o uguale a {param}.';
|
||||
$lang['form_validation_error_message_not_set'] = 'Impossibile accedere a un messaggio di errore corrispondente al nome del tuo campo {field}.';
|
||||
$lang['form_validation_in_list'] = 'Il campo {field} deve essere uno di: {param}.';
|
||||
|
|
|
@ -37,15 +37,15 @@
|
|||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['ftp_no_connection'] = 'Unable to locate a valid connection ID. Please make sure you are connected before performing any file routines.';
|
||||
$lang['ftp_unable_to_connect'] = 'Unable to connect to your FTP server using the supplied hostname.';
|
||||
$lang['ftp_unable_to_login'] = 'Unable to login to your FTP server. Please check your username and password.';
|
||||
$lang['ftp_unable_to_mkdir'] = 'Unable to create the directory you have specified.';
|
||||
$lang['ftp_unable_to_changedir'] = 'Unable to change directories.';
|
||||
$lang['ftp_unable_to_chmod'] = 'Unable to set file permissions. Please check your path.';
|
||||
$lang['ftp_unable_to_upload'] = 'Unable to upload the specified file. Please check your path.';
|
||||
$lang['ftp_unable_to_download'] = 'Unable to download the specified file. Please check your path.';
|
||||
$lang['ftp_no_source_file'] = 'Unable to locate the source file. Please check your path.';
|
||||
$lang['ftp_unable_to_rename'] = 'Unable to rename the file.';
|
||||
$lang['ftp_unable_to_delete'] = 'Unable to delete the file.';
|
||||
$lang['ftp_unable_to_move'] = 'Unable to move the file. Please make sure the destination directory exists.';
|
||||
$lang['ftp_no_connection'] = 'Impossibile trovare un ID di connessione valido. Assicurati di essere connesso prima di eseguire qualsiasi routine di file.';
|
||||
$lang['ftp_unable_to_connect'] = 'Impossibile connettersi al tuo server FTP utilizzando il nome host fornito.';
|
||||
$lang['ftp_unable_to_login'] = 'Impossibile accedere al tuo server FTP. Per favore controlla il tuo nome utente e password.';
|
||||
$lang['ftp_unable_to_mkdir'] = 'Impossibile creare la directory che hai specificato.';
|
||||
$lang['ftp_unable_to_changedir'] = 'Impossibile cambiare directory.';
|
||||
$lang['ftp_unable_to_chmod'] = 'Impossibile impostare i permessi dei file. Per favore controlla il tuo percorso.';
|
||||
$lang['ftp_unable_to_upload'] = 'Impossibile caricare il file specificato. Per favore controlla il tuo percorso.';
|
||||
$lang['ftp_unable_to_download'] = 'Impossibile scaricare il file specificato. Per favore controlla il tuo percorso.';
|
||||
$lang['ftp_no_source_file'] = 'Impossibile individuare il file sorgente. Per favore controlla il tuo percorso.';
|
||||
$lang['ftp_unable_to_rename'] = 'Impossibile rinominare il file.';
|
||||
$lang['ftp_unable_to_delete'] = 'Impossibile eliminare il file.';
|
||||
$lang['ftp_unable_to_move'] = 'Impossibile spostare il file. Assicurati che la directory di destinazione esista.';
|
||||
|
|
|
@ -37,21 +37,21 @@
|
|||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['imglib_source_image_required'] = 'You must specify a source image in your preferences.';
|
||||
$lang['imglib_gd_required'] = 'The GD image library is required for this feature.';
|
||||
$lang['imglib_gd_required_for_props'] = 'Your server must support the GD image library in order to determine the image properties.';
|
||||
$lang['imglib_unsupported_imagecreate'] = 'Your server does not support the GD function required to process this type of image.';
|
||||
$lang['imglib_gif_not_supported'] = 'GIF images are often not supported due to licensing restrictions. You may have to use JPG or PNG images instead.';
|
||||
$lang['imglib_jpg_not_supported'] = 'JPG images are not supported.';
|
||||
$lang['imglib_png_not_supported'] = 'PNG images are not supported.';
|
||||
$lang['imglib_jpg_or_png_required'] = 'The image resize protocol specified in your preferences only works with JPEG or PNG image types.';
|
||||
$lang['imglib_copy_error'] = 'An error was encountered while attempting to replace the file. Please make sure your file directory is writable.';
|
||||
$lang['imglib_rotate_unsupported'] = 'Image rotation does not appear to be supported by your server.';
|
||||
$lang['imglib_libpath_invalid'] = 'The path to your image library is not correct. Please set the correct path in your image preferences.';
|
||||
$lang['imglib_image_process_failed'] = 'Image processing failed. Please verify that your server supports the chosen protocol and that the path to your image library is correct.';
|
||||
$lang['imglib_rotation_angle_required'] = 'An angle of rotation is required to rotate the image.';
|
||||
$lang['imglib_invalid_path'] = 'The path to the image is not correct.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_copy_failed'] = 'The image copy routine failed.';
|
||||
$lang['imglib_missing_font'] = 'Unable to find a font to use.';
|
||||
$lang['imglib_save_failed'] = 'Unable to save the image. Please make sure the image and file directory are writable.';
|
||||
$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.';
|
||||
$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.';
|
||||
$lang['imglib_jpg_not_supported'] = 'Le immagini JPG non sono supportate.';
|
||||
$lang['imglib_png_not_supported'] = 'Le immagini PNG 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 sostituire il file. Assicurati che la tua directory di file sia scrivibile.';
|
||||
$lang['imglib_rotate_unsupported'] = 'La rotazione dell\'immagine 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 fallita. Verifica che il tuo server supporti il protocollo scelto e che il percorso della tua libreria di immagini sia corretto.';
|
||||
$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.';
|
||||
$lang['imglib_save_failed'] = 'Impossibile salvare l\'immagine. Assicurati che l\'immagine e la directory dei file siano scrivibili.';
|
||||
|
|
|
@ -41,4 +41,4 @@ $lang['terabyte_abbr'] = 'TB';
|
|||
$lang['gigabyte_abbr'] = 'GB';
|
||||
$lang['megabyte_abbr'] = 'MB';
|
||||
$lang['kilobyte_abbr'] = 'KB';
|
||||
$lang['bytes'] = 'Bytes';
|
||||
$lang['bytes'] = 'Byte';
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['pagination_first_link'] = '‹ First';
|
||||
$lang['pagination_first_link'] = '‹ Primo';
|
||||
$lang['pagination_next_link'] = '>';
|
||||
$lang['pagination_prev_link'] = '<';
|
||||
$lang['pagination_last_link'] = 'Last ›';
|
||||
$lang['pagination_last_link'] = 'Ultimo ›';
|
||||
|
|
|
@ -38,23 +38,23 @@
|
|||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['profiler_database'] = 'DATABASE';
|
||||
$lang['profiler_controller_info'] = 'CLASS/METHOD';
|
||||
$lang['profiler_benchmarks'] = 'BENCHMARKS';
|
||||
$lang['profiler_queries'] = 'QUERIES';
|
||||
$lang['profiler_get_data'] = 'GET DATA';
|
||||
$lang['profiler_post_data'] = 'POST DATA';
|
||||
$lang['profiler_uri_string'] = 'URI STRING';
|
||||
$lang['profiler_memory_usage'] = 'MEMORY USAGE';
|
||||
$lang['profiler_config'] = 'CONFIG VARIABLES';
|
||||
$lang['profiler_session_data'] = 'SESSION DATA';
|
||||
$lang['profiler_headers'] = 'HTTP HEADERS';
|
||||
$lang['profiler_no_db'] = 'Database driver is not currently loaded';
|
||||
$lang['profiler_no_queries'] = 'No queries were run';
|
||||
$lang['profiler_no_post'] = 'No POST data exists';
|
||||
$lang['profiler_no_get'] = 'No GET data exists';
|
||||
$lang['profiler_no_uri'] = 'No URI data exists';
|
||||
$lang['profiler_no_memory'] = 'Memory Usage Unavailable';
|
||||
$lang['profiler_no_profiles'] = 'No Profile data - all Profiler sections have been disabled.';
|
||||
$lang['profiler_section_hide'] = 'Hide';
|
||||
$lang['profiler_section_show'] = 'Show';
|
||||
$lang['profiler_seconds'] = 'seconds';
|
||||
$lang['profiler_controller_info'] = 'CLASSE/METODO';
|
||||
$lang['profiler_benchmarks'] = 'BENCHMARK';
|
||||
$lang['profiler_queries'] = 'QUERIE';
|
||||
$lang['profiler_get_data'] = 'OTTIENI DATI';
|
||||
$lang['profiler_post_data'] = 'DATI POST';
|
||||
$lang['profiler_uri_string'] = 'STRINGA URI';
|
||||
$lang['profiler_memory_usage'] = 'UTILIZZO DELLA MEMORIA';
|
||||
$lang['profiler_config'] = 'CONFIGURA VARIABILI';
|
||||
$lang['profiler_session_data'] = 'DATI SESSIONE';
|
||||
$lang['profiler_headers'] = 'INTESTAZIONI HTTP';
|
||||
$lang['profiler_no_db'] = 'Il driver del database non è attualmente caricato';
|
||||
$lang['profiler_no_queries'] = 'Non sono state eseguite query';
|
||||
$lang['profiler_no_post'] = 'Nessun dato POST esiste';
|
||||
$lang['profiler_no_get'] = 'Non esistono dati GET';
|
||||
$lang['profiler_no_uri'] = 'Non esistono dati URI';
|
||||
$lang['profiler_no_memory'] = 'Utilizzo della memoria non disponibile';
|
||||
$lang['profiler_no_profiles'] = 'Nessun dato del profilo - tutte le sezioni del Profiler sono state disabilitate.';
|
||||
$lang['profiler_section_hide'] = 'Nascondi';
|
||||
$lang['profiler_section_show'] = 'Mostra';
|
||||
$lang['profiler_seconds'] = 'secondi';
|
||||
|
|
|
@ -21,8 +21,8 @@ $lang['address'] = 'Indirizzo';
|
|||
$lang['city'] = 'Città';
|
||||
$lang['zip_code'] = 'CAP';
|
||||
$lang['notes'] = 'Note';
|
||||
$lang['language'] = 'Language';
|
||||
$lang['no_language'] = 'No language';
|
||||
$lang['language'] = 'Lingua';
|
||||
$lang['no_language'] = 'Nessuna lingua';
|
||||
$lang['fields_are_required'] = 'I campi contrassegnati con * sono obbligatori.';
|
||||
$lang['appointment_confirmation'] = 'Conferma appuntamento';
|
||||
$lang['confirm'] = 'Conferma';
|
||||
|
@ -53,10 +53,10 @@ $lang['appointment_added_to_google_calendar'] = 'Il tuo appuntamento è stato ag
|
|||
$lang['view_appointment_in_google_calendar'] = 'Clicca qui per visualizzare il tuo appuntamento su Google Calendar.';
|
||||
$lang['appointment_added_to_your_plan'] = 'Un nuovo appuntamento è stato aggiunto alla tua agenda.';
|
||||
$lang['appointment_link_description'] = 'Puoi modificare l\'appuntamento facendo click sul link sotto.';
|
||||
$lang['appointment_locked'] = 'Modification impossible.';
|
||||
$lang['appointment_locked_message'] = 'The appointment cannot be changed less than {$limit} hours in advance.';
|
||||
$lang['appointment_locked'] = 'Modifica impossibile.';
|
||||
$lang['appointment_locked_message'] = 'L\'appuntamento non può essere modificato con meno di {$limit} ore di anticipo.';
|
||||
$lang['appointment_not_found'] = 'Appuntamento non trovato.';
|
||||
$lang['appointment_does_not_exist_in_db'] = 'L\'appuntamento da te richiesto non esiste più sul database di sistema.';
|
||||
$lang['appointment_does_not_exist_in_db'] = 'L\'appuntamento da te richiesto non esiste più sull\'archivio di sistema.';
|
||||
$lang['display_calendar'] = 'Mostra calendario';
|
||||
$lang['calendar'] = 'Calendario';
|
||||
$lang['users'] = 'Utenti';
|
||||
|
@ -110,7 +110,7 @@ $lang['new_unavailability_title'] = 'Nuovo perido di indisponibilità';
|
|||
$lang['edit_unavailability_title'] = 'Modifica periodo di indisponibilità';
|
||||
$lang['unavailability_saved'] = 'Periodo di indisponibilità salvato con successo.';
|
||||
$lang['start_date_before_end_error'] = 'La data di inizio è successiva alla data di fine.';
|
||||
$lang['invalid_duration'] = 'Invalid duration.';
|
||||
$lang['invalid_duration'] = 'Durata non valida.';
|
||||
$lang['invalid_email'] = 'Indirizzo e-mail non valido.';
|
||||
$lang['customers'] = 'Clienti';
|
||||
$lang['details'] = 'Dettagli';
|
||||
|
@ -314,7 +314,7 @@ $lang['working_plan_exceptions'] = 'Giorni Extra';
|
|||
$lang['working_plan_exceptions_hint'] = 'Aggiungi una giornata lavorativa al di fuori del piano di lavoro.';
|
||||
$lang['new_working_plan_exception_title'] = 'Nuova giornata lavorativa';
|
||||
$lang['working_plan_exception_saved'] = 'Giornata lavorativa salvata con successo.';
|
||||
$lang['working_plan_exception_deleted'] = 'Working plan exception deleted successfully.';
|
||||
$lang['working_plan_exception_deleted'] = 'Eccezione del piano di lavoro eliminata correttamente.';
|
||||
$lang['add_working_plan_exceptions_during_each_day'] = 'Aggiungi giornate lavorative al di fuori del piano di lavoro.';
|
||||
$lang['add_working_plan_exception'] = 'Aggiungi giornata lavorativa';
|
||||
$lang['require_phone_number'] = 'Richiedi numero di telefono';
|
||||
|
|
|
@ -37,22 +37,22 @@
|
|||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['ut_test_name'] = 'Test Name';
|
||||
$lang['ut_test_datatype'] = 'Test Datatype';
|
||||
$lang['ut_res_datatype'] = 'Expected Datatype';
|
||||
$lang['ut_result'] = 'Result';
|
||||
$lang['ut_undefined'] = 'Undefined Test Name';
|
||||
$lang['ut_file'] = 'File Name';
|
||||
$lang['ut_line'] = 'Line Number';
|
||||
$lang['ut_passed'] = 'Passed';
|
||||
$lang['ut_failed'] = 'Failed';
|
||||
$lang['ut_boolean'] = 'Boolean';
|
||||
$lang['ut_integer'] = 'Integer';
|
||||
$lang['ut_test_name'] = 'Nome test';
|
||||
$lang['ut_test_datatype'] = 'Tipo di dati di prova';
|
||||
$lang['ut_res_datatype'] = 'Tipo di dati previsto';
|
||||
$lang['ut_result'] = 'Risultato';
|
||||
$lang['ut_undefined'] = 'Nome test non definito';
|
||||
$lang['ut_file'] = 'Nome file';
|
||||
$lang['ut_line'] = 'Numero riga';
|
||||
$lang['ut_passed'] = 'Passato';
|
||||
$lang['ut_failed'] = 'Fallito';
|
||||
$lang['ut_boolean'] = 'Booleano';
|
||||
$lang['ut_integer'] = 'Intero';
|
||||
$lang['ut_float'] = 'Float';
|
||||
$lang['ut_double'] = 'Float'; // can be the same as float
|
||||
$lang['ut_string'] = 'String';
|
||||
$lang['ut_double'] = 'FatFloatta'; // può essere uguale a float
|
||||
$lang['ut_string'] = 'Stringa';
|
||||
$lang['ut_array'] = 'Array';
|
||||
$lang['ut_object'] = 'Object';
|
||||
$lang['ut_resource'] = 'Resource';
|
||||
$lang['ut_object'] = 'Oggetto';
|
||||
$lang['ut_resource'] = 'Risorsa';
|
||||
$lang['ut_null'] = 'Null';
|
||||
$lang['ut_notes'] = 'Notes';
|
||||
$lang['ut_notes'] = 'Note';
|
||||
|
|
|
@ -37,19 +37,19 @@
|
|||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['upload_userfile_not_set'] = 'Unable to find a post variable called userfile.';
|
||||
$lang['upload_file_exceeds_limit'] = 'The uploaded file exceeds the maximum allowed size in your PHP configuration file.';
|
||||
$lang['upload_file_exceeds_form_limit'] = 'The uploaded file exceeds the maximum size allowed by the submission form.';
|
||||
$lang['upload_file_partial'] = 'The file was only partially uploaded.';
|
||||
$lang['upload_no_temp_directory'] = 'The temporary folder is missing.';
|
||||
$lang['upload_unable_to_write_file'] = 'The file could not be written to disk.';
|
||||
$lang['upload_stopped_by_extension'] = 'The file upload was stopped by extension.';
|
||||
$lang['upload_no_file_selected'] = 'You did not select a file to upload.';
|
||||
$lang['upload_invalid_filetype'] = 'The filetype you are attempting to upload is not allowed.';
|
||||
$lang['upload_invalid_filesize'] = 'The file you are attempting to upload is larger than the permitted size.';
|
||||
$lang['upload_invalid_dimensions'] = 'The image you are attempting to upload doesn\'t fit into the allowed dimensions.';
|
||||
$lang['upload_destination_error'] = 'A problem was encountered while attempting to move the uploaded file to the final destination.';
|
||||
$lang['upload_no_filepath'] = 'The upload path does not appear to be valid.';
|
||||
$lang['upload_no_file_types'] = 'You have not specified any allowed file types.';
|
||||
$lang['upload_bad_filename'] = 'The file name you submitted already exists on the server.';
|
||||
$lang['upload_not_writable'] = 'The upload destination folder does not appear to be writable.';
|
||||
$lang['upload_userfile_not_set'] = 'Impossibile trovare una variabile post chiamata file utente.';
|
||||
$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.';
|
||||
$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.';
|
||||
$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.';
|
||||
$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.';
|
||||
|
|
Loading…
Reference in a new issue