1
|
<?php
|
2
|
/**
|
3
|
* PHPMailer language file.
|
4
|
* Romanian Version
|
5
|
* @package PHPMailer
|
6
|
* @author Catalin Constantin <catalin@dazoot.ro?> */
|
7
|
|
8
|
$PHPMAILER_LANG = array();
|
9
|
|
10
|
$PHPMAILER_LANG["provide_address"] = 'Trebuie sa adaugati cel putin un recipient (adresa de mail).';
|
11
|
$PHPMAILER_LANG["mailer_not_supported"] = ' mailer nu este suportat.';
|
12
|
$PHPMAILER_LANG["execute"] = 'Nu pot executa: ';
|
13
|
$PHPMAILER_LANG["instantiate"] = 'Nu am putut instantia functia mail.';
|
14
|
$PHPMAILER_LANG["authenticate"] = 'Eroare SMTP: Nu a functionat autentificarea.';
|
15
|
$PHPMAILER_LANG["from_failed"] = 'Urmatoarele adrese From au dat eroare: ';
|
16
|
$PHPMAILER_LANG["recipients_failed"] = 'Eroare SMTP: Urmatoarele adrese de mail au dat eroare: ';
|
17
|
$PHPMAILER_LANG["data_not_accepted"] = 'Eroare SMTP: Continutul mailului nu a fost acceptat.';
|
18
|
$PHPMAILER_LANG["connect_host"] = 'Eroare SMTP: Nu m-am putut conecta la adresa SMTP.';
|
19
|
$PHPMAILER_LANG["file_access"] = 'Nu pot accesa fisierul: ';
|
20
|
$PHPMAILER_LANG["file_open"] = 'Eroare de fisier: Nu pot deschide fisierul: ';
|
21
|
$PHPMAILER_LANG["encoding"] = 'Encodare necunoscuta: ';
|
22
|
$PHPMAILER_LANG["signing"] = 'Signing Error: ';
|
23
|
|
24
|
?>
|