| 1 | 386 | Ruebenwurz | <?php
 | 
      
        | 2 |  |  | /**
 | 
      
        | 3 |  |  | * PHPMailer language file.
 | 
      
        | 4 |  |  | * Italian version
 | 
      
        | 5 |  |  | * @package PHPMailer
 | 
      
        | 6 |  |  | * @author Ilias Bartolini <brain79@inwind.it>
 | 
      
        | 7 |  |  | */
 | 
      
        | 8 |  |  | 
 | 
      
        | 9 |  |  | $PHPMAILER_LANG = array();
 | 
      
        | 10 |  |  | 
 | 
      
        | 11 |  |  | $PHPMAILER_LANG["provide_address"] = 'Deve essere fornito almeno un'.
 | 
      
        | 12 |  |  |                                      ' indirizzo ricevente';
 | 
      
        | 13 |  |  | $PHPMAILER_LANG["mailer_not_supported"] = 'Mailer non supportato';
 | 
      
        | 14 |  |  | $PHPMAILER_LANG["execute"] = "Impossibile eseguire l'operazione: ";
 | 
      
        | 15 |  |  | $PHPMAILER_LANG["instantiate"] = 'Impossibile istanziare la funzione mail';
 | 
      
        | 16 |  |  | $PHPMAILER_LANG["authenticate"] = 'SMTP Error: Impossibile autenticarsi.';
 | 
      
        | 17 |  |  | $PHPMAILER_LANG["from_failed"] = 'I seguenti indirizzi mittenti hanno'.
 | 
      
        | 18 |  |  |                                  ' generato errore: ';
 | 
      
        | 19 |  |  | $PHPMAILER_LANG["recipients_failed"] = 'SMTP Error: I seguenti indirizzi'.
 | 
      
        | 20 |  |  |                                        'destinatari hanno generato errore: ';
 | 
      
        | 21 |  |  | $PHPMAILER_LANG["data_not_accepted"] = 'SMTP Error: Data non accettati dal'.
 | 
      
        | 22 |  |  |                                        'server.';
 | 
      
        | 23 |  |  | $PHPMAILER_LANG["connect_host"] = 'SMTP Error: Impossibile connettersi'.
 | 
      
        | 24 |  |  |                                   ' all\'host SMTP.';
 | 
      
        | 25 |  |  | $PHPMAILER_LANG["file_access"] = 'Impossibile accedere al file: ';
 | 
      
        | 26 |  |  | $PHPMAILER_LANG["file_open"] = 'File Error: Impossibile aprire il file: ';
 | 
      
        | 27 |  |  | $PHPMAILER_LANG["encoding"] = 'Encoding set dei caratteri sconosciuto: ';
 | 
      
        | 28 |  |  | ?>
 |