32 lines
1.6 KiB
PHP
32 lines
1.6 KiB
PHP
<?php
|
|
/*********************************************************************************
|
|
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
*
|
|
********************************************************************************/
|
|
|
|
/**
|
|
* PHPMailer language file.
|
|
* English Version
|
|
*/
|
|
$PHPMAILER_LANG = array();
|
|
$PHPMAILER_LANG["provide_address"] = 'Sie müssen wenigstens eine ' .
|
|
'Empfänger E-Mail Adresse angeben.';
|
|
$PHPMAILER_LANG["mailer_not_supported"] = ' Mailprogramm wird nicht unterstützt.';
|
|
$PHPMAILER_LANG["execute"] = 'Konnte nicht ausführen: ';
|
|
$PHPMAILER_LANG["instantiate"] = 'Konnte die E-Mail Funktion nicht ausführen.';
|
|
$PHPMAILER_LANG["authenticate"] = 'SMTP Fehler: Authentifikation nicht möglich.';
|
|
$PHPMAILER_LANG["from_failed"] = 'Die folgende VON E-Mail Adresse ist fehlerhaft: ';
|
|
$PHPMAILER_LANG["recipients_failed"] = 'SMTP Fehler: An die folgenden ' .
|
|
'Empfänger konnte nichts gesendet werden: ';
|
|
$PHPMAILER_LANG["data_not_accepted"] = 'SMTP Fehler: Daten werden nicht akzeptiert.';
|
|
$PHPMAILER_LANG["connect_host"] = 'SMTP Fehler: Konnte den SMTP Host nicht erreichen =>.';
|
|
$PHPMAILER_LANG["file_access"] = 'Konnte nicht auf die Datei zugreifen: ';
|
|
$PHPMAILER_LANG["file_open"] = 'Dateifehler: Konnte die Datei nicht öffenen: ';
|
|
$PHPMAILER_LANG["encoding"] = 'Unbekannte Kodierung: ';
|
|
?>
|