25 lines
1020 B
PHP
25 lines
1020 B
PHP
<?php
|
|
|
|
/**
|
|
* Italian language file
|
|
*
|
|
* @author Nicola Tuveri <nic.tuv@gmail.com>
|
|
*/
|
|
|
|
$this->language = array(
|
|
|
|
'clear_date' => 'Rimuovi',
|
|
'csrf_detected' => 'Si è presentato un problema col vostro invio!<br>Tra le possibili cause l\'invio può aver richiesto troppo tempo, o la richiesta è stata duplicata.<br>Riprovare, per favore.',
|
|
'days' => array('Domenica','Lunedì','Martedì','Mercoledì','Giovedì','Venerdì','Sabato'),
|
|
'days_abbr' => array('D','L','Ma','Me','G','V','S'),
|
|
'months' => array('Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno','Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'),
|
|
'months_abbr' => false, // will use the first 3 letters from the full name
|
|
'new_captcha' => 'Genera un nuovo codice',
|
|
'other' => 'Altro...',
|
|
'select' => '- Selezionare -',
|
|
'spam_detected' => 'Rilevato possibile tentativo di spam. Il modulo inviato è stato rifiutato.',
|
|
'today' => 'Oggi',
|
|
|
|
);
|
|
|
|
?>
|