Primer commit
This commit is contained in:
commit
1537318b9c
90 changed files with 12329 additions and 0 deletions
76
composer.json
Normal file
76
composer.json
Normal file
|
@ -0,0 +1,76 @@
|
|||
{
|
||||
"name": "phpmailer/phpmailer",
|
||||
"type": "library",
|
||||
"description": "PHPMailer is a full-featured email creation and transfer class for PHP",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Marcus Bointon",
|
||||
"email": "phpmailer@synchromedia.co.uk"
|
||||
},
|
||||
{
|
||||
"name": "Jim Jagielski",
|
||||
"email": "jimjag@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Andy Prevost",
|
||||
"email": "codeworxtech@users.sourceforge.net"
|
||||
},
|
||||
{
|
||||
"name": "Brent R. Matzelle"
|
||||
}
|
||||
],
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://github.com/Synchro",
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"dealerdirect/phpcodesniffer-composer-installer": true
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.5.0",
|
||||
"ext-ctype": "*",
|
||||
"ext-filter": "*",
|
||||
"ext-hash": "*"
|
||||
},
|
||||
"require-dev": {
|
||||
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
|
||||
"doctrine/annotations": "^1.2",
|
||||
"php-parallel-lint/php-console-highlighter": "^0.5.0",
|
||||
"php-parallel-lint/php-parallel-lint": "^1.3.1",
|
||||
"phpcompatibility/php-compatibility": "^9.3.5",
|
||||
"roave/security-advisories": "dev-latest",
|
||||
"squizlabs/php_codesniffer": "^3.6.2",
|
||||
"yoast/phpunit-polyfills": "^1.0.0"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
|
||||
"hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
|
||||
"league/oauth2-google": "Needed for Google XOAUTH2 authentication",
|
||||
"psr/log": "For optional PSR-3 debug logging",
|
||||
"stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
|
||||
"symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"PHPMailer\\PHPMailer\\": "src/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"PHPMailer\\Test\\": "test/"
|
||||
}
|
||||
},
|
||||
"license": "LGPL-2.1-only",
|
||||
"scripts": {
|
||||
"check": "./vendor/bin/phpcs",
|
||||
"test": "./vendor/bin/phpunit --no-coverage",
|
||||
"coverage": "./vendor/bin/phpunit",
|
||||
"lint": [
|
||||
"@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php,phps --exclude vendor --exclude .git --exclude build"
|
||||
]
|
||||
}
|
||||
}
|
6
config.inc
Executable file
6
config.inc
Executable file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
/*Configuració per a l'enviador*/
|
||||
$tema = "ESPERANTO*INFO - Numero 1";
|
||||
$html_missatge = "informiloj/num1.html";
|
||||
$correus_fitxer = "mails.txt";
|
||||
?>
|
120
enviador-backup.php
Normal file
120
enviador-backup.php
Normal file
|
@ -0,0 +1,120 @@
|
|||
<?php
|
||||
//PInicialitzem els fitxers de PHPMailer
|
||||
use PHPMailer\PHPMailer\PHPMailer;
|
||||
use PHPMailer\PHPMailer\Exception;
|
||||
|
||||
require 'src/Exception.php';
|
||||
require 'src/PHPMailer.php';
|
||||
require 'src/SMTP.php';
|
||||
|
||||
//Incloem paràmetres de la newsletter
|
||||
include("config.inc");
|
||||
function trim_value($a) {
|
||||
$a = trim($a);
|
||||
return $a;
|
||||
}
|
||||
|
||||
$per = "";
|
||||
|
||||
// Agafa el missatge i el poses en un string
|
||||
$missatge = file_get_contents($html_missatge);
|
||||
|
||||
//Recupera ls adreces de correu, treu espais en blanc i crea sub-arrays de 20 adreces.
|
||||
$correus = file($correus_fitxer);
|
||||
$correusnets = array_map('trim',$correus);
|
||||
$correus_trossejats = array_chunk($correusnets,20);
|
||||
|
||||
$correusenviats = 0;
|
||||
$correusfallits = 0;
|
||||
$numerodemail = 1;
|
||||
|
||||
//Determinem si el correu és de prova o no
|
||||
$p = $_GET['p'];
|
||||
if ($p==0) {
|
||||
$correudeprova = false;
|
||||
} else {
|
||||
$correudeprova = true;
|
||||
}
|
||||
//Crea encapçalaments
|
||||
|
||||
//$headers .= 'Cc: Unitat de Promoció i Comunicació de la FUAB <promocio.fuab@uab.cat>' . "\r\n";
|
||||
|
||||
if ($correudeprova === true) {
|
||||
$correu = new PHPMailer();
|
||||
$correu->isSMTP();
|
||||
$correu->Host = 'smtp.office365.com';
|
||||
$correu->SMTPAuth = true;
|
||||
$correu->Username = '1468733@uab.cat'; //paste one generated by Mailtrap
|
||||
$correu->Password = 'ProCom2021!'; //paste one generated by Mailtrap
|
||||
$correu->SMTPSecure = 'tls';
|
||||
$correu->Port = 587;
|
||||
//Fem els encapçalaments
|
||||
$correu->setFrom('promocio.fuab@uab.cat', 'Unitat de Promoció i Comunicació de la FUAB');
|
||||
$correu->addReplyTo('promocio.fuab@uab.cat', 'Unitat de Promoció i Comunicació de la FUAB');
|
||||
$correu->addAddress('promocio.fuab@uab.cat', 'Unitat de Promoció i Comunicació de la FUAB');
|
||||
//$correu->addCC('cc1@example.com', 'Elena');
|
||||
$correu->addBCC('enric.pineda@uab.cat', 'Enric Pineda');
|
||||
$correu->addBCC('victoria.salvador@uab.cat', 'Victòria Salvador');
|
||||
$correu->addBCC('sara.centellas@uab.cat', 'Sara Centellas');
|
||||
$correu->addBCC('esther.crespo@uab.cat', 'Esther Crespo');
|
||||
|
||||
//Posem un PROVA al començament del tema
|
||||
$temaprova = "[PROVA] ".$tema;
|
||||
$correu->Subject = $temaprova;
|
||||
$correu->isHTML(true);
|
||||
$correu->Body = $missatge;
|
||||
$correu->CharSet = 'UTF-8';
|
||||
|
||||
//Enviem el correu
|
||||
if($correu->send()){
|
||||
echo 'Missatge de prova enviat';
|
||||
}else{
|
||||
echo "El missatge no s'ha enviat.";
|
||||
echo 'Error: ' . $correu->ErrorInfo;
|
||||
}
|
||||
} else {
|
||||
|
||||
foreach ($correus_trossejats as $correusfinals){
|
||||
|
||||
$correu = new PHPMailer();
|
||||
$correu->isSMTP();
|
||||
$correu->Host = 'smtp.office365.com';
|
||||
$correu->SMTPAuth = true;
|
||||
$correu->Username = '1468733@uab.cat'; //paste one generated by Mailtrap
|
||||
$correu->Password = 'ProCom2021!'; //paste one generated by Mailtrap
|
||||
$correu->SMTPSecure = 'tls';
|
||||
$correu->Port = 587;
|
||||
//Fem els encapçalaments
|
||||
$correu->setFrom('promocio.fuab@uab.cat', 'Unitat de Promoció i Comunicació de la FUAB');
|
||||
$correu->addReplyTo('promocio.fuab@uab.cat', 'Unitat de Promoció i Comunicació de la FUAB');
|
||||
$correu->addAddress('promocio.fuab@uab.cat', 'Unitat de Promoció i Comunicació de la FUAB');
|
||||
|
||||
//POsem els correus en bccomp
|
||||
foreach ($correusfinals as $correu_usuari_final) {
|
||||
$correu->addBCC($correu_usuari_final);
|
||||
}
|
||||
$correu->Subject = $tema;
|
||||
$correu->isHTML(true);
|
||||
$correu->Body = $missatge;
|
||||
$correu->CharSet = 'UTF-8';
|
||||
|
||||
//Enviem el correu
|
||||
if($correu->send()){
|
||||
$correusenviats++;
|
||||
}else{
|
||||
$correusfallits++;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Descomentar per bug check
|
||||
//echo $headers;
|
||||
//print_r($correus_trossejats);
|
||||
if ($correudeprova !== true){
|
||||
echo "Hem enviat un total de $correusenviats correus a un total de ".count($correusnets)." persones<br />";
|
||||
echo "End Of Line!";
|
||||
}
|
||||
?>
|
121
enviador.php
Executable file
121
enviador.php
Executable file
|
@ -0,0 +1,121 @@
|
|||
<?php
|
||||
//PInicialitzem els fitxers de PHPMailer
|
||||
use PHPMailer\PHPMailer\PHPMailer;
|
||||
use PHPMailer\PHPMailer\Exception;
|
||||
|
||||
require 'src/Exception.php';
|
||||
require 'src/PHPMailer.php';
|
||||
require 'src/SMTP.php';
|
||||
|
||||
//Incloem paràmetres de la newsletter
|
||||
include("config.inc");
|
||||
function trim_value($a) {
|
||||
$a = trim($a);
|
||||
return $a;
|
||||
}
|
||||
|
||||
$per = "";
|
||||
|
||||
// Agafa el missatge i el poses en un string
|
||||
$missatge = file_get_contents($html_missatge);
|
||||
|
||||
//Recupera ls adreces de correu, treu espais en blanc i crea sub-arrays de 20 adreces.
|
||||
$correus = file($correus_fitxer);
|
||||
$correusnets = array_map('trim',$correus);
|
||||
$correus_trossejats = array_chunk($correusnets,20);
|
||||
|
||||
$correusenviats = 0;
|
||||
$correusfallits = 0;
|
||||
$numerodemail = 1;
|
||||
|
||||
//Determinem si el correu és de prova o no
|
||||
$p = $_GET['p'];
|
||||
if ($p==0) {
|
||||
$correudeprova = false;
|
||||
} else {
|
||||
$correudeprova = true;
|
||||
}
|
||||
//Crea encapçalaments
|
||||
|
||||
//$headers .= 'Cc: Unitat de Promoció i Comunicació de la FUAB <promocio.fuab@uab.cat>' . "\r\n";
|
||||
|
||||
if ($correudeprova === true) {
|
||||
$correu = new PHPMailer();
|
||||
$correu->isSMTP();
|
||||
$correu->Host = 'smtp-es.securemail.pro';
|
||||
$correu->SMTPAuth = true;
|
||||
$correu->Username = 'comunicacio@esperanto.cat'; //paste one generated by Mailtrap
|
||||
$correu->Password = 'KomunikuKEA21jc!'; //paste one generated by Mailtrap
|
||||
$correu->SMTPSecure = 'ssl';
|
||||
$correu->Port = 465;
|
||||
//Fem els encapçalaments
|
||||
$correu->setFrom('comunicacio@esperanto.cat', 'Associació Catalana d\'Esperanto');
|
||||
$correu->addReplyTo('comunicacio@esperanto.cat', 'Associació Catalana d\'Esperanto');
|
||||
$correu->addAddress('comunicacio@esperanto.cat', 'Associació Catalana d\'Esperanto');
|
||||
//$correu->addCC('cc1@example.com', 'Elena');
|
||||
$correu->addBCC('enricpineda@gmail.com', 'Enric Pineda');
|
||||
$correu->addBCC('oscar@esperanto.cat', 'Òscar Puig');
|
||||
$correu->addBCC('farri@mac.com', 'Ferriol Macip');
|
||||
|
||||
|
||||
//Posem un PROVA al començament del tema
|
||||
$temaprova = "[PROVA] ".$tema;
|
||||
$correu->Subject = $temaprova;
|
||||
$correu->isHTML(true);
|
||||
$correu->Body = $missatge;
|
||||
$correu->CharSet = 'UTF-8';
|
||||
|
||||
//Enviem el correu
|
||||
if($correu->send()){
|
||||
echo 'Missatge de prova enviat';
|
||||
}else{
|
||||
echo "El missatge no s'ha enviat.";
|
||||
echo 'Error: ' . $correu->ErrorInfo;
|
||||
}
|
||||
} else {
|
||||
|
||||
foreach ($correus_trossejats as $correusfinals){
|
||||
|
||||
$correu = new PHPMailer();
|
||||
$correu->isSMTP();
|
||||
$correu->Host = 'smtp-es.securemail.pro';
|
||||
$correu->SMTPAuth = true;
|
||||
$correu->Username = 'comunicacio@esperanto.cat'; //paste one generated by Mailtrap
|
||||
$correu->Password = 'KomunikuKEA21jc!'; //paste one generated by Mailtrap
|
||||
$correu->SMTPSecure = 'ssl';
|
||||
$correu->Port = 465;
|
||||
//Fem els encapçalaments
|
||||
$correu->setFrom('comunicacio@esperanto.cat', 'Associació Catalana d\'Esperanto');
|
||||
$correu->addReplyTo('comunicacio@esperanto.cat', 'Associació Catalana d\'Esperanto');
|
||||
$correu->addAddress('comunicacio@esperanto.cat', 'Associació Catalana d\'Esperanto');
|
||||
|
||||
|
||||
//POsem els correus en bccomp
|
||||
foreach ($correusfinals as $correu_usuari_final) {
|
||||
$correu->addBCC($correu_usuari_final);
|
||||
}
|
||||
$correu->Subject = $tema;
|
||||
$correu->isHTML(true);
|
||||
$correu->Body = $missatge;
|
||||
$correu->CharSet = 'UTF-8';
|
||||
|
||||
//Enviem el correu
|
||||
if($correu->send()){
|
||||
$correusenviats++;
|
||||
}else{
|
||||
$correusfallits++;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Descomentar per bug check
|
||||
//echo $headers;
|
||||
//print_r($correus_trossejats);
|
||||
if ($correudeprova !== true){
|
||||
echo "Hem enviat un total de $correusenviats correus a un total de ".count($correusnets)." persones<br />";
|
||||
echo "End Of Line!";
|
||||
}
|
||||
?>
|
10
enviador2.php
Normal file
10
enviador2.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
foreach ($_GET as $key => $val) {
|
||||
$$key = $val;
|
||||
}
|
||||
if ($p == 1) {
|
||||
echo "Això és un correu de prova!";
|
||||
} else {
|
||||
echo "Això és un enviament normal";
|
||||
}
|
||||
?>
|
80
enviador_antic.php
Normal file
80
enviador_antic.php
Normal file
|
@ -0,0 +1,80 @@
|
|||
<?php
|
||||
//PInicialitzem els fitxers de PHPMailer
|
||||
use PHPMailer\PHPMailer\PHPMailer;
|
||||
use PHPMailer\PHPMailer\Exception;
|
||||
|
||||
require 'path/to/PHPMailer/src/Exception.php';
|
||||
require 'path/to/PHPMailer/src/PHPMailer.php';
|
||||
require 'path/to/PHPMailer/src/SMTP.php';
|
||||
|
||||
//Incloem paràmetres de la newsletter
|
||||
include("config.inc");
|
||||
function trim_value($a) {
|
||||
$a = trim($a);
|
||||
return $a;
|
||||
}
|
||||
|
||||
$per = "";
|
||||
|
||||
// Agafa el missatge i el poses en un string
|
||||
$missatge = file_get_contents($html_missatge);
|
||||
|
||||
//Recupera ls adreces de correu, treu espais en blanc i posa'ls en una cadena
|
||||
$correus = file($correus_fitxer);
|
||||
$correusnets = array_map('trim',$correus);
|
||||
$correus_trossejats = array_chunk($correusnets,20);
|
||||
|
||||
$mailsenviats = 0;
|
||||
$numerodemail = 1;
|
||||
|
||||
//Si vols fer un mail de prova, posa això en true. Si no, posa-ho false
|
||||
$maildeprova = false;
|
||||
|
||||
//Crea encapçalaments
|
||||
|
||||
//$headers .= 'Cc: Unitat de Promoció i Comunicació de la FUAB <promocio.fuab@uab.cat>' . "\r\n";
|
||||
|
||||
if ($maildeprova === true) {
|
||||
//Fem els encapçalaments
|
||||
$headers = "MIME-Version: 1.0" . "\r\n";
|
||||
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
|
||||
$headers .= 'From: Unitat de Promoció i Comunicació de la FUAB <promocio.fuab@uab.cat>' . "\r\n";
|
||||
//Posem els destinataris del correu de prova
|
||||
//$headers .= 'Bcc: enric.pineda@uab.cat, sara.centellas@uab.cat, victoria.salvador@uab.cat, esther.crespo@uab.cat'."\r\n";
|
||||
$headers .= 'Bcc: enric.pineda@uab.cat'."\r\n";
|
||||
|
||||
//Posem un PROVA al començament del tema
|
||||
$temaprova = "[PROVA] ".$tema;
|
||||
//Enviem el correu
|
||||
mail($per,$temaprova,$missatge,$headers);
|
||||
echo "Correu de prova enviat";
|
||||
} else {
|
||||
//Ara no és un correu de prova
|
||||
foreach ($correus_trossejats as $correusfinals){
|
||||
//Fem els encapçalaments
|
||||
$headers = "MIME-Version: 1.0" . "\r\n";
|
||||
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
|
||||
$headers .= 'From: Unitat de Promoció i Comunicació de la FUAB <promocio.fuab@uab.cat>' . "\r\n";
|
||||
$correus_final = implode(", ", $correusfinals);
|
||||
$headers .= 'Bcc: '.$correus_final."\r\n";
|
||||
|
||||
//Envia el correu
|
||||
|
||||
mail($per,$tema,$missatge,$headers);
|
||||
$mailsenviats++;
|
||||
echo "Correu número $numerodemail enviat <br />";
|
||||
|
||||
//echo $headers."<hr>";
|
||||
|
||||
$numerodemail++;
|
||||
}
|
||||
}
|
||||
|
||||
// Descomentar per bug check
|
||||
//echo $headers;
|
||||
//print_r($correus_trossejats);
|
||||
if ($maildeprova !== true){
|
||||
echo "Hem enviat un total de $mailsenviats correus a un total de ".count($correusnets)." persones<br />";
|
||||
echo "End Of Line!";
|
||||
}
|
||||
?>
|
BIN
facebook.png
Normal file
BIN
facebook.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
146
get_oauth_token.php
Normal file
146
get_oauth_token.php
Normal file
|
@ -0,0 +1,146 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHPMailer - PHP email creation and transport class.
|
||||
* PHP Version 5.5
|
||||
* @package PHPMailer
|
||||
* @see https://github.com/PHPMailer/PHPMailer/ The PHPMailer GitHub project
|
||||
* @author Marcus Bointon (Synchro/coolbru) <phpmailer@synchromedia.co.uk>
|
||||
* @author Jim Jagielski (jimjag) <jimjag@gmail.com>
|
||||
* @author Andy Prevost (codeworxtech) <codeworxtech@users.sourceforge.net>
|
||||
* @author Brent R. Matzelle (original founder)
|
||||
* @copyright 2012 - 2020 Marcus Bointon
|
||||
* @copyright 2010 - 2012 Jim Jagielski
|
||||
* @copyright 2004 - 2009 Andy Prevost
|
||||
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
|
||||
* @note This program is distributed in the hope that it will be useful - WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Get an OAuth2 token from an OAuth2 provider.
|
||||
* * Install this script on your server so that it's accessible
|
||||
* as [https/http]://<yourdomain>/<folder>/get_oauth_token.php
|
||||
* e.g.: http://localhost/phpmailer/get_oauth_token.php
|
||||
* * Ensure dependencies are installed with 'composer install'
|
||||
* * Set up an app in your Google/Yahoo/Microsoft account
|
||||
* * Set the script address as the app's redirect URL
|
||||
* If no refresh token is obtained when running this file,
|
||||
* revoke access to your app and run the script again.
|
||||
*/
|
||||
|
||||
namespace PHPMailer\PHPMailer;
|
||||
|
||||
/**
|
||||
* Aliases for League Provider Classes
|
||||
* Make sure you have added these to your composer.json and run `composer install`
|
||||
* Plenty to choose from here:
|
||||
* @see http://oauth2-client.thephpleague.com/providers/thirdparty/
|
||||
*/
|
||||
//@see https://github.com/thephpleague/oauth2-google
|
||||
use League\OAuth2\Client\Provider\Google;
|
||||
//@see https://packagist.org/packages/hayageek/oauth2-yahoo
|
||||
use Hayageek\OAuth2\Client\Provider\Yahoo;
|
||||
//@see https://github.com/stevenmaguire/oauth2-microsoft
|
||||
use Stevenmaguire\OAuth2\Client\Provider\Microsoft;
|
||||
|
||||
if (!isset($_GET['code']) && !isset($_GET['provider'])) {
|
||||
?>
|
||||
<html>
|
||||
<body>Select Provider:<br>
|
||||
<a href='?provider=Google'>Google</a><br>
|
||||
<a href='?provider=Yahoo'>Yahoo</a><br>
|
||||
<a href='?provider=Microsoft'>Microsoft/Outlook/Hotmail/Live/Office365</a><br>
|
||||
</body>
|
||||
</html>
|
||||
<?php
|
||||
exit;
|
||||
}
|
||||
|
||||
require 'vendor/autoload.php';
|
||||
|
||||
session_start();
|
||||
|
||||
$providerName = '';
|
||||
|
||||
if (array_key_exists('provider', $_GET)) {
|
||||
$providerName = $_GET['provider'];
|
||||
$_SESSION['provider'] = $providerName;
|
||||
} elseif (array_key_exists('provider', $_SESSION)) {
|
||||
$providerName = $_SESSION['provider'];
|
||||
}
|
||||
if (!in_array($providerName, ['Google', 'Microsoft', 'Yahoo'])) {
|
||||
exit('Only Google, Microsoft and Yahoo OAuth2 providers are currently supported in this script.');
|
||||
}
|
||||
|
||||
//These details are obtained by setting up an app in the Google developer console,
|
||||
//or whichever provider you're using.
|
||||
$clientId = 'RANDOMCHARS-----duv1n2.apps.googleusercontent.com';
|
||||
$clientSecret = 'RANDOMCHARS-----lGyjPcRtvP';
|
||||
|
||||
//If this automatic URL doesn't work, set it yourself manually to the URL of this script
|
||||
$redirectUri = (isset($_SERVER['HTTPS']) ? 'https://' : 'http://') . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
|
||||
//$redirectUri = 'http://localhost/PHPMailer/redirect';
|
||||
|
||||
$params = [
|
||||
'clientId' => $clientId,
|
||||
'clientSecret' => $clientSecret,
|
||||
'redirectUri' => $redirectUri,
|
||||
'accessType' => 'offline'
|
||||
];
|
||||
|
||||
$options = [];
|
||||
$provider = null;
|
||||
|
||||
switch ($providerName) {
|
||||
case 'Google':
|
||||
$provider = new Google($params);
|
||||
$options = [
|
||||
'scope' => [
|
||||
'https://mail.google.com/'
|
||||
]
|
||||
];
|
||||
break;
|
||||
case 'Yahoo':
|
||||
$provider = new Yahoo($params);
|
||||
break;
|
||||
case 'Microsoft':
|
||||
$provider = new Microsoft($params);
|
||||
$options = [
|
||||
'scope' => [
|
||||
'wl.imap',
|
||||
'wl.offline_access'
|
||||
]
|
||||
];
|
||||
break;
|
||||
}
|
||||
|
||||
if (null === $provider) {
|
||||
exit('Provider missing');
|
||||
}
|
||||
|
||||
if (!isset($_GET['code'])) {
|
||||
//If we don't have an authorization code then get one
|
||||
$authUrl = $provider->getAuthorizationUrl($options);
|
||||
$_SESSION['oauth2state'] = $provider->getState();
|
||||
header('Location: ' . $authUrl);
|
||||
exit;
|
||||
//Check given state against previously stored one to mitigate CSRF attack
|
||||
} elseif (empty($_GET['state']) || ($_GET['state'] !== $_SESSION['oauth2state'])) {
|
||||
unset($_SESSION['oauth2state']);
|
||||
unset($_SESSION['provider']);
|
||||
exit('Invalid state');
|
||||
} else {
|
||||
unset($_SESSION['provider']);
|
||||
//Try to get an access token (using the authorization code grant)
|
||||
$token = $provider->getAccessToken(
|
||||
'authorization_code',
|
||||
[
|
||||
'code' => $_GET['code']
|
||||
]
|
||||
);
|
||||
//Use this to interact with an API on the users behalf
|
||||
//Use this to get a new access token if the old one expires
|
||||
echo 'Refresh Token: ', $token->getRefreshToken();
|
||||
}
|
37
index.php
Executable file
37
index.php
Executable file
|
@ -0,0 +1,37 @@
|
|||
<!doctype html>
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
|
||||
<title>Enviador de la Newsletter KEA</title>
|
||||
<meta name="description" content="The HTML5 Herald">
|
||||
<meta name="author" content="SitePoint">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<link rel="stylesheet" href="css/styles.css?v=1.0">
|
||||
<style>
|
||||
body {font-family: "Ubuntu",sans-serif;}
|
||||
.boto {padding: 0.5em; background-color: #000099; color: white; text-decoration: none;}
|
||||
.boto2 {padding: 0.5em; background-color: #666; color: white; text-decoration: none;}
|
||||
#principal {width: 100%; text-align: center;}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="principal">
|
||||
<img src="https://www.esperanto.cat/esperantoinfo/img/bannersup.webp" />
|
||||
<h1>Enviador de correus electrònics - Newsletter KEA</h1>
|
||||
<?php include("config.inc");?>
|
||||
<p>Estàs a punt d'enviar aquesta newsletter: <strong><?php echo $tema;?></strong></p>
|
||||
<p>Apreta el botó que sigui i que la màgia funcioni!</p>
|
||||
<p> </p>
|
||||
<p>
|
||||
<!--<a href="enviador.php" class="boto" id="botoEnviador">Envia!</a>-->
|
||||
<a class="boto2" id="botoEnviadorProva">Envia correu de prova</a> <a class="boto" id="botoEnviador">Envia correu normal</a>
|
||||
</p>
|
||||
<p id="respostaServer"></p>
|
||||
</div>
|
||||
<script src="js/scripts.js"></script>
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
After Width: | Height: | Size: 112 KiB |
BIN
informiloj/img/KER-ekzameno.png
Normal file
BIN
informiloj/img/KER-ekzameno.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
BIN
informiloj/img/tejo.png
Normal file
BIN
informiloj/img/tejo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 77 KiB |
145
informiloj/num1.html
Normal file
145
informiloj/num1.html
Normal file
|
@ -0,0 +1,145 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang='ca-es'>
|
||||
<head>
|
||||
<title>ESPERANTO*INFO</title>
|
||||
<meta charset='utf-8'>
|
||||
<style>
|
||||
body {font-family: "Arial", sans-serif}
|
||||
table {margin: 0px auto;}
|
||||
h1,h2,h3,h4,h5,h6,a {color: #009933;}
|
||||
p {font-size: 1.1em; line-height: 1.5em;}
|
||||
hr {width: 600px; background-color: #009933;}
|
||||
</style>
|
||||
<script>
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Encapçalament -->
|
||||
<table width="600px">
|
||||
<tr>
|
||||
<td style="text-align: center;"><p><a href="https://www.esperanto.cat/esperantoinfo/num1.html">Vidu la informilon en via retumilo | <i>Visualitza el butlletí al navegador</a></p></i></td>
|
||||
</table>
|
||||
<table>
|
||||
<tr><td>
|
||||
<img src="https://www.esperanto.cat/esperantoinfo/img/bannersup.png" />
|
||||
</td></tr>
|
||||
</table>
|
||||
<!--Nümero i mes-->
|
||||
<table width="600px">
|
||||
<tr>
|
||||
<td width="50%">Numero 1 | <i>Número 1</i></td>
|
||||
<td width="50%" style="text-align: right;">Oktobro 2022 | <i>Octubre 2022</i></td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- Cos de la newsletter -->
|
||||
<hr>
|
||||
<table width="600px" style="padding: 1em;">
|
||||
<tr>
|
||||
<td>
|
||||
<h1>Nova epoko de ESPERANTO*INFO </h1>
|
||||
<p>De 2011 ĝis 2016, Kataluna Esperanto-Asocio eldonis Esperanto*info-n, bulteno en la internacia lingvo informanta pri la interna vivo de la asocio. Dum la lastaj jaroj, tia informado estis plenumita per retmesaĝoj de la prezidanto. Nun la Komisio pri Komunikado eltiris la plej elstarajn trajtojn de ĉiu epoko kaj iniciatas rapidan komunikvojon kun membroj kaj simpatiantoj pere de dulingva reta bulteno, kataluna kaj esperanta, kiu ebligas la aliĝon kaj kiu aperos ĉiumonate informante pri la agado de la asocio.</p>
|
||||
<p>Tiu ĉi bulteno volas konekti kun sia pasinteco kaj reprenas la titolon Esperanto*info. Ni deziras ke ĝi utilu al vi kaj kuraĝigas vin invitin viajn konatulojn senpage aliĝi al ĝi.</p>
|
||||
<hr>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td width="200px">
|
||||
<img src="https://www.esperanto.cat/esperantoinfo/img/KER-ekzameno.png" />
|
||||
</td>
|
||||
<td>
|
||||
<h2>Plenumu vian Esperanto-ekzamenon en Sabadell</h2>
|
||||
<p>Universala Esperanto-Asocio, kunlabore kun la Konsilio de Eŭropo, ree kunvokas la KER-ekzamenojn (Komuna Eŭropa Referenckadro). Ĉi-jare, Kataluna Esperanto-Junularo laboris por ke la sidejo de Kataluna Esperanto-Asocio estu unu el tiuj ekzamenejoj. La ekzamenado okazos <strong>la 26an de novembro en strato Papa Pius XI numero 130 en Sabadell</strong>.</p>
|
||||
<p>Se vi deziras ekzameniĝi, <a href="https://www.esperanto.cat/plenumu-vian-esperanto-ekzamenon-en-sabadell/" target="_blank">aliĝu plej baldaŭ ĉi tie</a></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td width="200px">
|
||||
<img src="https://www.esperanto.cat/esperantoinfo/img/tejo.png" />
|
||||
</td>
|
||||
<td>
|
||||
<h2>KEJano iĝas estrarano de TEJO</h2>
|
||||
<p>Ni tre ĝojas anonci, ke membro de Kataluna Esperanto Junularo (KEJ) estas estrarano de TEJO. Gratulon al David Ruíz, kiu delonge multe kontribuis al KEJ kaj lastatempe al TEJO, kie li povis disvastigi la katalunan esperantistan movadon inter kaj ekster Katalunio. Iĝi estrarano estas bonega novaĵo ĉar pruvas kiom vigla kaj forta estas la movado en Katalunio. </p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>
|
||||
<h2>Nova estraro de KEJ</h2>
|
||||
<p>La pasintan 6an de oktobro, dum sia asembleo, KEJ renovigis sian estraron, kiun prezidos Jordi Calafí i Franquesa. La nomojn de la estraranoj <a href="https://www.esperanto.cat/junularo/qui-som-kej/" target="_blank">vi povas konsulti ĉi tie</a>.</p>
|
||||
<hr>
|
||||
<h2>Agendo (rezervu tiujn datojn)</h2>
|
||||
<h3>Dimanĉo, 27a de novembro</h3>
|
||||
<p>Gustumado de vinoj en Subirats</p>
|
||||
<h3>Dimanĉo, 18a de decembro</h3>
|
||||
<p>Zamenhofa Tago en Subirats</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="600px" style="background-color: #f8f8f8; padding: 1em;">
|
||||
<tr>
|
||||
<td>
|
||||
<h1>Nova època de ESPERANTO*INFO </h1>
|
||||
<p>Del 2011 al 2016 l’Associació Catalana d’Esperanto va publicar Esperanto*info, un butlletí en esperanto que informava dels temes interns de l'entitat. En els darrers anys, aquest tipus de comunicació s'ha fet a través de correus electrònics enviats pel president. Ara la Comissió de Comunicació ha extret el millor de cada etapa i posa en marxa una via de comunicació ràpida amb els socis i simpatitzants amb un sistema més modern i àgil, un butlletí electrònic bilingüe català i esperanto, amb opció de subscripció, que vol informar amb una periodicitat mensual de totes les novetats de la vida interna de l'associació.</p>
|
||||
<p>Aquest butlletí vol entroncar amb el seu passat i recupera la capçalera d’Esperanto*info. Desitgem que us sigui útil i us engresquem a que convideu el vostre cercle de contactes perquè s’hi subscrigui gratuïtament.</p>
|
||||
<hr>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td width="200px">
|
||||
<img src="https://www.esperanto.cat/esperantoinfo/img/KER-ekzameno.png" />
|
||||
</td>
|
||||
<td>
|
||||
<h2>Fes el teu exàmen de nivell d'esperanto a Sabadell</h2>
|
||||
<p>L'Associació Universal d'Esperanto, en col·laboració amb el Consell d'Europa, torna a convocar l'exàmen del KER (Komuna Eŭropa Referenckadro o Marc Comú Europeu de Referència). Aquest any, la Joventut Esperantista de Catalunya ha treballat per fer que la seu de l'Associació Catalana d'Esperanto sigui un dels lloc per fer l'exàmen, que tindrà lloc el <strong>26 de novembre al carrer Papa Piux XI, número 130, de Sabadell.</strong></p>
|
||||
<p>Si et vols examinar, <a href="https://www.esperanto.cat/fes-lexamen-de-nivell-desperanto-a-sabadell/" target="_blank">apunta't el més aviat possible aquí.</a></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td width="200px">
|
||||
<img src="https://www.esperanto.cat/esperantoinfo/img/tejo.png" />
|
||||
</td>
|
||||
<td>
|
||||
<h2>Un membre de KEJ, membre de la Junta Directiva de TEJO</h2>
|
||||
<p>Ens alegra moltíssim anunciar que un membre de la Joventut Catalana d'Esperanto (KEJ) forma part de la Junta de TEJO, l'associació mundial de joves esperantistes. En David Ruíz acumula tota una trajectòria a KEJ i més recentment a TEJO, on ha pogut difondre el moviment esperantista català dins i fora de casa nostra. Ser membre de la junta és un pas important per ajudar KEJ en les nombroses activitats que s'estan planificant. </p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>
|
||||
<h2>Nova junta de KEJ</h2>
|
||||
<p>El passat 6 d'octubre va tenir lloc la renovació de la Junta Directiva deJoventut Catalana d'Esperanto durant la celebració de la seva Assemblea. Podeu consultar els membres d'aquesta nova junta, que presidirà Jordi Calafí i Franquesa, <a href="https://www.esperanto.cat/joves/junta-directiva-kej/" target="_blank">fent click aquí</a>.</p>
|
||||
<hr>
|
||||
<h2>Agenda</h2>
|
||||
<h3>Diumenge, 27 de novembre</h3>
|
||||
<p>Tast de vins a Subirats</p>
|
||||
<h3>Diumenge, 18 de desembre</h3>
|
||||
<p>Zamenhofa Tago a Subirats</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- peu -->
|
||||
<hr>
|
||||
<table width="600px;" style="padding: 1em; font-size: 0.75em; text-align: center">
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<p><strong>Associació Catalana d'Esperanto | Kataluna Esperanto-Asocio</strong><br>
|
||||
C/ Papa Pius XI 131, 08208 Sabadell (Catalunya / Katalunio)</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<p>Vi ricevas tiun informilon, por ke vi decidis aboni al la reta informilo de KEA. Se vi ne volas daŭrigi ricevi ĝin, bonvolu sendu retmesaĝon al la retadreso <a href="mailto:komunikado@esperanto.cat">komunikado@esperanto.cat</a>.</p>
|
||||
</td>
|
||||
<td valign="top">
|
||||
<p><i>Reps aquest butlletí electrònic perquè en algun moment vas decidir subscriure-t'hi. Si no vols continuar rebent-lo, envia'ns un correu a <a href="mailto:comunicacio@esperanto.cat">comunicacio@esperanto.cat</a>.</i></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<p><a href="https://facebook.com/esperantocat/" target="_blank"><img src="https://www.esperanto.cat/esperantoinfo/img/facebook.png" /></a> <a href="https://instagram.com/esperanto_cat" target="_blank"><img src="https://www.esperanto.cat/esperantoinfo/img/instagram.png" /></a> <a href="https://twitter.com/esperantocat" target="_blank"><img src="https://www.esperanto.cat/esperantoinfo/img/twitter.png" /></a>
|
||||
</td>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
BIN
instagram.png
Normal file
BIN
instagram.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.2 KiB |
22
js/scripts.js
Normal file
22
js/scripts.js
Normal file
|
@ -0,0 +1,22 @@
|
|||
var botonet = document.getElementById('botoEnviador');
|
||||
var botonet2 = document.getElementById('botoEnviadorProva');
|
||||
var caparesposta = document.getElementById('respostaServer');
|
||||
var consulta = new XMLHttpRequest();
|
||||
|
||||
consulta.onreadystatechange = function() {
|
||||
if (consulta.readyState === 4) {
|
||||
if (consulta.status === 200) {
|
||||
caparesposta.innerHTML = consulta.responseText;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
botonet.addEventListener('click', function(){
|
||||
consulta.open('GET', 'enviador.php?p=0');
|
||||
consulta.send();
|
||||
});
|
||||
|
||||
botonet2.addEventListener('click', function(){
|
||||
consulta.open('GET', 'enviador.php?p=1');
|
||||
consulta.send();
|
||||
});
|
26
language/phpmailer.lang-af.php
Normal file
26
language/phpmailer.lang-af.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Afrikaans PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'SMTP-fout: kon nie geverifieer word nie.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'SMTP-fout: kon nie aan SMTP-verbind nie.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP-fout: data nie aanvaar nie.';
|
||||
$PHPMAILER_LANG['empty_message'] = 'Boodskapliggaam leeg.';
|
||||
$PHPMAILER_LANG['encoding'] = 'Onbekende kodering: ';
|
||||
$PHPMAILER_LANG['execute'] = 'Kon nie uitvoer nie: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'Kon nie lêer oopmaak nie: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Lêerfout: Kon nie lêer oopmaak nie: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'Die volgende Van adres misluk: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'Kon nie posfunksie instansieer nie.';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'Ongeldige adres: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' mailer word nie ondersteun nie.';
|
||||
$PHPMAILER_LANG['provide_address'] = 'U moet ten minste een ontvanger e-pos adres verskaf.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'SMTP-fout: Die volgende ontvangers het misluk: ';
|
||||
$PHPMAILER_LANG['signing'] = 'Ondertekening Fout: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP-verbinding () misluk.';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'SMTP-bediener fout: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'Kan nie veranderlike instel of herstel nie: ';
|
||||
$PHPMAILER_LANG['extension_missing'] = 'Uitbreiding ontbreek: ';
|
27
language/phpmailer.lang-ar.php
Normal file
27
language/phpmailer.lang-ar.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Arabic PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
* @author bahjat al mostafa <bahjat983@hotmail.com>
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'خطأ SMTP : لا يمكن تأكيد الهوية.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'خطأ SMTP: لا يمكن الاتصال بالخادم SMTP.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'خطأ SMTP: لم يتم قبول المعلومات .';
|
||||
$PHPMAILER_LANG['empty_message'] = 'نص الرسالة فارغ';
|
||||
$PHPMAILER_LANG['encoding'] = 'ترميز غير معروف: ';
|
||||
$PHPMAILER_LANG['execute'] = 'لا يمكن تنفيذ : ';
|
||||
$PHPMAILER_LANG['file_access'] = 'لا يمكن الوصول للملف: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'خطأ في الملف: لا يمكن فتحه: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'خطأ على مستوى عنوان المرسل : ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'لا يمكن توفير خدمة البريد.';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'الإرسال غير ممكن لأن عنوان البريد الإلكتروني غير صالح: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' برنامج الإرسال غير مدعوم.';
|
||||
$PHPMAILER_LANG['provide_address'] = 'يجب توفير عنوان البريد الإلكتروني لمستلم واحد على الأقل.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'خطأ SMTP: الأخطاء التالية فشل في الارسال لكل من : ';
|
||||
$PHPMAILER_LANG['signing'] = 'خطأ في التوقيع: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() غير ممكن.';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'خطأ على مستوى الخادم SMTP: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'لا يمكن تعيين أو إعادة تعيين متغير: ';
|
||||
$PHPMAILER_LANG['extension_missing'] = 'الإضافة غير موجودة: ';
|
27
language/phpmailer.lang-az.php
Normal file
27
language/phpmailer.lang-az.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Azerbaijani PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
* @author @mirjalal
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'SMTP xətası: Giriş uğursuz oldu.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'SMTP xətası: SMTP serverinə qoşulma uğursuz oldu.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP xətası: Verilənlər qəbul edilməyib.';
|
||||
$PHPMAILER_LANG['empty_message'] = 'Boş mesaj göndərilə bilməz.';
|
||||
$PHPMAILER_LANG['encoding'] = 'Qeyri-müəyyən kodlaşdırma: ';
|
||||
$PHPMAILER_LANG['execute'] = 'Əmr yerinə yetirilmədi: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'Fayla giriş yoxdur: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Fayl xətası: Fayl açıla bilmədi: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'Göstərilən poçtlara göndərmə uğursuz oldu: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'Mail funksiyası işə salına bilmədi.';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'Düzgün olmayan e-mail adresi: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' - e-mail kitabxanası dəstəklənmir.';
|
||||
$PHPMAILER_LANG['provide_address'] = 'Ən azı bir e-mail adresi daxil edilməlidir.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'SMTP xətası: Aşağıdakı ünvanlar üzrə alıcılara göndərmə uğursuzdur: ';
|
||||
$PHPMAILER_LANG['signing'] = 'İmzalama xətası: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP serverinə qoşulma uğursuz oldu.';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'SMTP serveri xətası: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'Dəyişənin quraşdırılması uğursuz oldu: ';
|
||||
//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
|
27
language/phpmailer.lang-ba.php
Normal file
27
language/phpmailer.lang-ba.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Bosnian PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
* @author Ermin Islamagić <ermin@islamagic.com>
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela prijava.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Nije moguće spojiti se sa SMTP serverom.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Greška: Podatci nisu prihvaćeni.';
|
||||
$PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.';
|
||||
$PHPMAILER_LANG['encoding'] = 'Nepoznata kriptografija: ';
|
||||
$PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'SMTP Greška: Slanje sa navedenih e-mail adresa nije uspjelo: ';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedene e-mail adrese nije uspjelo: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'Ne mogu pokrenuti mail funkcionalnost.';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'E-mail nije poslan. Neispravna e-mail adresa: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' mailer nije podržan.';
|
||||
$PHPMAILER_LANG['provide_address'] = 'Definišite barem jednu adresu primaoca.';
|
||||
$PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP server nije uspjelo.';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'SMTP greška: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'Nije moguće postaviti varijablu ili je vratiti nazad: ';
|
||||
$PHPMAILER_LANG['extension_missing'] = 'Nedostaje ekstenzija: ';
|
27
language/phpmailer.lang-be.php
Normal file
27
language/phpmailer.lang-be.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Belarusian PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
* @author Aleksander Maksymiuk <info@setpro.pl>
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'Памылка SMTP: памылка ідэнтыфікацыі.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'Памылка SMTP: нельга ўстанавіць сувязь з SMTP-серверам.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'Памылка SMTP: звесткі непрынятыя.';
|
||||
$PHPMAILER_LANG['empty_message'] = 'Пустое паведамленне.';
|
||||
$PHPMAILER_LANG['encoding'] = 'Невядомая кадыроўка тэксту: ';
|
||||
$PHPMAILER_LANG['execute'] = 'Нельга выканаць каманду: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'Няма доступу да файла: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Нельга адкрыць файл: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'Няправільны адрас адпраўніка: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'Нельга прымяніць функцыю mail().';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'Нельга даслаць паведамленне, няправільны email атрымальніка: ';
|
||||
$PHPMAILER_LANG['provide_address'] = 'Запоўніце, калі ласка, правільны email атрымальніка.';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' - паштовы сервер не падтрымліваецца.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'Памылка SMTP: няправільныя атрымальнікі: ';
|
||||
$PHPMAILER_LANG['signing'] = 'Памылка подпісу паведамлення: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'Памылка сувязі з SMTP-серверам.';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'Памылка SMTP: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'Нельга ўстанавіць або перамяніць значэнне пераменнай: ';
|
||||
//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
|
27
language/phpmailer.lang-bg.php
Normal file
27
language/phpmailer.lang-bg.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Bulgarian PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
* @author Mikhail Kyosev <mialygk@gmail.com>
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'SMTP грешка: Не може да се удостовери пред сървъра.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'SMTP грешка: Не може да се свърже с SMTP хоста.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP грешка: данните не са приети.';
|
||||
$PHPMAILER_LANG['empty_message'] = 'Съдържанието на съобщението е празно';
|
||||
$PHPMAILER_LANG['encoding'] = 'Неизвестно кодиране: ';
|
||||
$PHPMAILER_LANG['execute'] = 'Не може да се изпълни: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'Няма достъп до файл: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Файлова грешка: Не може да се отвори файл: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'Следните адреси за подател са невалидни: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'Не може да се инстанцира функцията mail.';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'Невалиден адрес: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' - пощенски сървър не се поддържа.';
|
||||
$PHPMAILER_LANG['provide_address'] = 'Трябва да предоставите поне един email адрес за получател.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: Следните адреси за Получател са невалидни: ';
|
||||
$PHPMAILER_LANG['signing'] = 'Грешка при подписване: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP провален connect().';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'SMTP сървърна грешка: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'Не може да се установи или възстанови променлива: ';
|
||||
$PHPMAILER_LANG['extension_missing'] = 'Липсва разширение: ';
|
27
language/phpmailer.lang-ca.php
Normal file
27
language/phpmailer.lang-ca.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Catalan PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
* @author Ivan <web AT microstudi DOT com>
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'Error SMTP: No s’ha pogut autenticar.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'Error SMTP: No es pot connectar al servidor SMTP.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Dades no acceptades.';
|
||||
$PHPMAILER_LANG['empty_message'] = 'El cos del missatge està buit.';
|
||||
$PHPMAILER_LANG['encoding'] = 'Codificació desconeguda: ';
|
||||
$PHPMAILER_LANG['execute'] = 'No es pot executar: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'No es pot accedir a l’arxiu: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Error d’Arxiu: No es pot obrir l’arxiu: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'La(s) següent(s) adreces de remitent han fallat: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'No s’ha pogut crear una instància de la funció Mail.';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'Adreça d’email invalida: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' mailer no està suportat';
|
||||
$PHPMAILER_LANG['provide_address'] = 'S’ha de proveir almenys una adreça d’email com a destinatari.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Els següents destinataris han fallat: ';
|
||||
$PHPMAILER_LANG['signing'] = 'Error al signar: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'Ha fallat el SMTP Connect().';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'No s’ha pogut establir o restablir la variable: ';
|
||||
//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
|
27
language/phpmailer.lang-ch.php
Normal file
27
language/phpmailer.lang-ch.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Chinese PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
* @author LiuXin <http://www.80x86.cn/blog/>
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'SMTP 错误:身份验证失败。';
|
||||
$PHPMAILER_LANG['connect_host'] = 'SMTP 错误: 不能连接SMTP主机。';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误: 数据不可接受。';
|
||||
//$PHPMAILER_LANG['empty_message'] = 'Message body empty';
|
||||
$PHPMAILER_LANG['encoding'] = '未知编码:';
|
||||
$PHPMAILER_LANG['execute'] = '不能执行: ';
|
||||
$PHPMAILER_LANG['file_access'] = '不能访问文件:';
|
||||
$PHPMAILER_LANG['file_open'] = '文件错误:不能打开文件:';
|
||||
$PHPMAILER_LANG['from_failed'] = '下面的发送地址邮件发送失败了: ';
|
||||
$PHPMAILER_LANG['instantiate'] = '不能实现mail方法。';
|
||||
//$PHPMAILER_LANG['invalid_address'] = 'Invalid address: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' 您所选择的发送邮件的方法并不支持。';
|
||||
$PHPMAILER_LANG['provide_address'] = '您必须提供至少一个 收信人的email地址。';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误: 下面的 收件人失败了: ';
|
||||
//$PHPMAILER_LANG['signing'] = 'Signing Error: ';
|
||||
//$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.';
|
||||
//$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
|
||||
//$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: ';
|
||||
//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
|
28
language/phpmailer.lang-cs.php
Normal file
28
language/phpmailer.lang-cs.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Czech PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'Chyba SMTP: Autentizace selhala.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'Chyba SMTP: Nelze navázat spojení se SMTP serverem.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'Chyba SMTP: Data nebyla přijata.';
|
||||
$PHPMAILER_LANG['empty_message'] = 'Prázdné tělo zprávy';
|
||||
$PHPMAILER_LANG['encoding'] = 'Neznámé kódování: ';
|
||||
$PHPMAILER_LANG['execute'] = 'Nelze provést: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'Nelze získat přístup k souboru: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Chyba souboru: Nelze otevřít soubor pro čtení: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'Následující adresa odesílatele je nesprávná: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'Nelze vytvořit instanci emailové funkce.';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'Neplatná adresa: ';
|
||||
$PHPMAILER_LANG['invalid_hostentry'] = 'Záznam hostitele je nesprávný: ';
|
||||
$PHPMAILER_LANG['invalid_host'] = 'Hostitel je nesprávný: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' mailer není podporován.';
|
||||
$PHPMAILER_LANG['provide_address'] = 'Musíte zadat alespoň jednu emailovou adresu příjemce.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'Chyba SMTP: Následující adresy příjemců nejsou správně: ';
|
||||
$PHPMAILER_LANG['signing'] = 'Chyba přihlašování: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() selhal.';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'Chyba SMTP serveru: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'Nelze nastavit nebo změnit proměnnou: ';
|
||||
$PHPMAILER_LANG['extension_missing'] = 'Chybí rozšíření: ';
|
29
language/phpmailer.lang-da.php
Normal file
29
language/phpmailer.lang-da.php
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Danish PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
* @author John Sebastian <jms@iwb.dk>
|
||||
* Rewrite and extension of the work by Mikael Stokkebro <info@stokkebro.dk>
|
||||
*
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'SMTP fejl: Login mislykkedes.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'SMTP fejl: Forbindelse til SMTP serveren kunne ikke oprettes.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP fejl: Data blev ikke accepteret.';
|
||||
$PHPMAILER_LANG['empty_message'] = 'Meddelelsen er uden indhold';
|
||||
$PHPMAILER_LANG['encoding'] = 'Ukendt encode-format: ';
|
||||
$PHPMAILER_LANG['execute'] = 'Kunne ikke afvikle: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'Kunne ikke tilgå filen: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Fil fejl: Kunne ikke åbne filen: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'Følgende afsenderadresse er forkert: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'Email funktionen kunne ikke initialiseres.';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'Udgyldig adresse: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' mailer understøttes ikke.';
|
||||
$PHPMAILER_LANG['provide_address'] = 'Indtast mindst en modtagers email adresse.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'SMTP fejl: Følgende modtagere er forkerte: ';
|
||||
$PHPMAILER_LANG['signing'] = 'Signeringsfejl: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fejlede.';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'SMTP server fejl: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'Kunne ikke definere eller nulstille variablen: ';
|
||||
$PHPMAILER_LANG['extension_missing'] = 'Udvidelse mangler: ';
|
28
language/phpmailer.lang-de.php
Normal file
28
language/phpmailer.lang-de.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* German PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'SMTP-Fehler: Authentifizierung fehlgeschlagen.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'SMTP-Fehler: Konnte keine Verbindung zum SMTP-Host herstellen.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP-Fehler: Daten werden nicht akzeptiert.';
|
||||
$PHPMAILER_LANG['empty_message'] = 'E-Mail-Inhalt ist leer.';
|
||||
$PHPMAILER_LANG['encoding'] = 'Unbekannte Kodierung: ';
|
||||
$PHPMAILER_LANG['execute'] = 'Konnte folgenden Befehl nicht ausführen: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'Zugriff auf folgende Datei fehlgeschlagen: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Dateifehler: Konnte folgende Datei nicht öffnen: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'Die folgende Absenderadresse ist nicht korrekt: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'Mail-Funktion konnte nicht initialisiert werden.';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'Die Adresse ist ungültig: ';
|
||||
$PHPMAILER_LANG['invalid_hostentry'] = 'Ungültiger Hosteintrag: ';
|
||||
$PHPMAILER_LANG['invalid_host'] = 'Ungültiger Host: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' mailer wird nicht unterstützt.';
|
||||
$PHPMAILER_LANG['provide_address'] = 'Bitte geben Sie mindestens eine Empfängeradresse an.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'SMTP-Fehler: Die folgenden Empfänger sind nicht korrekt: ';
|
||||
$PHPMAILER_LANG['signing'] = 'Fehler beim Signieren: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'Verbindung zum SMTP-Server fehlgeschlagen.';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'Fehler vom SMTP-Server: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'Kann Variable nicht setzen oder zurücksetzen: ';
|
||||
$PHPMAILER_LANG['extension_missing'] = 'Fehlende Erweiterung: ';
|
26
language/phpmailer.lang-el.php
Normal file
26
language/phpmailer.lang-el.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Greek PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'SMTP Σφάλμα: Αδυναμία πιστοποίησης (authentication).';
|
||||
$PHPMAILER_LANG['connect_host'] = 'SMTP Σφάλμα: Αδυναμία σύνδεσης στον SMTP-Host.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Σφάλμα: Τα δεδομένα δεν έγιναν αποδεκτά.';
|
||||
$PHPMAILER_LANG['empty_message'] = 'Το E-Mail δεν έχει περιεχόμενο .';
|
||||
$PHPMAILER_LANG['encoding'] = 'Αγνωστο Encoding-Format: ';
|
||||
$PHPMAILER_LANG['execute'] = 'Αδυναμία εκτέλεσης ακόλουθης εντολής: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'Αδυναμία προσπέλασης του αρχείου: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Σφάλμα Αρχείου: Δεν είναι δυνατό το άνοιγμα του ακόλουθου αρχείου: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'Η παρακάτω διεύθυνση αποστολέα δεν είναι σωστή: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'Αδυναμία εκκίνησης Mail function.';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'Το μήνυμα δεν εστάλη, η διεύθυνση δεν είναι έγκυρη: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' mailer δεν υποστηρίζεται.';
|
||||
$PHPMAILER_LANG['provide_address'] = 'Παρακαλούμε δώστε τουλάχιστον μια e-mail διεύθυνση παραλήπτη.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'SMTP Σφάλμα: Οι παρακάτω διευθύνσεις παραλήπτη δεν είναι έγκυρες: ';
|
||||
$PHPMAILER_LANG['signing'] = 'Σφάλμα υπογραφής: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'Αποτυχία σύνδεσης στον SMTP Server.';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'Σφάλμα από τον SMTP Server: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'Αδυναμία ορισμού ή αρχικοποίησης μεταβλητής: ';
|
||||
//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
|
26
language/phpmailer.lang-eo.php
Normal file
26
language/phpmailer.lang-eo.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Esperanto PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'Eraro de servilo SMTP : aŭtentigo malsukcesis.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'Eraro de servilo SMTP : konektado al servilo malsukcesis.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'Eraro de servilo SMTP : neĝustaj datumoj.';
|
||||
$PHPMAILER_LANG['empty_message'] = 'Teksto de mesaĝo mankas.';
|
||||
$PHPMAILER_LANG['encoding'] = 'Nekonata kodoprezento: ';
|
||||
$PHPMAILER_LANG['execute'] = 'Lanĉi rulumadon ne eblis: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'Aliro al dosiero ne sukcesis: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Eraro de dosiero: malfermo neeblas: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'Jena adreso de sendinto malsukcesis: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'Genero de retmesaĝa funkcio neeblis.';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'Retadreso ne validas: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' mesaĝilo ne subtenata.';
|
||||
$PHPMAILER_LANG['provide_address'] = 'Vi devas tajpi almenaŭ unu recevontan retadreson.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'Eraro de servilo SMTP : la jenaj poŝtrecivuloj kaŭzis eraron: ';
|
||||
$PHPMAILER_LANG['signing'] = 'Eraro de subskribo: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP konektado malsukcesis.';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'Eraro de servilo SMTP : ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'Variablo ne pravalorizeblas aŭ ne repravalorizeblas: ';
|
||||
$PHPMAILER_LANG['extension_missing'] = 'Mankas etendo: ';
|
27
language/phpmailer.lang-es.php
Normal file
27
language/phpmailer.lang-es.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Spanish PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
* @author Matt Sturdy <matt.sturdy@gmail.com>
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'Error SMTP: Imposible autentificar.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'Error SMTP: Imposible conectar al servidor SMTP.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Datos no aceptados.';
|
||||
$PHPMAILER_LANG['empty_message'] = 'El cuerpo del mensaje está vacío.';
|
||||
$PHPMAILER_LANG['encoding'] = 'Codificación desconocida: ';
|
||||
$PHPMAILER_LANG['execute'] = 'Imposible ejecutar: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'Imposible acceder al archivo: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Error de Archivo: Imposible abrir el archivo: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'La(s) siguiente(s) direcciones de remitente fallaron: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'Imposible crear una instancia de la función Mail.';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'Imposible enviar: dirección de email inválido: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' mailer no está soportado.';
|
||||
$PHPMAILER_LANG['provide_address'] = 'Debe proporcionar al menos una dirección de email de destino.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Los siguientes destinos fallaron: ';
|
||||
$PHPMAILER_LANG['signing'] = 'Error al firmar: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falló.';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'No se pudo configurar la variable: ';
|
||||
$PHPMAILER_LANG['extension_missing'] = 'Extensión faltante: ';
|
28
language/phpmailer.lang-et.php
Normal file
28
language/phpmailer.lang-et.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Estonian PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
* @author Indrek Päri
|
||||
* @author Elan Ruusamäe <glen@delfi.ee>
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'SMTP Viga: Autoriseerimise viga.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'SMTP Viga: Ei õnnestunud luua ühendust SMTP serveriga.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP Viga: Vigased andmed.';
|
||||
$PHPMAILER_LANG['empty_message'] = 'Tühi kirja sisu';
|
||||
$PHPMAILER_LANG["encoding"] = 'Tundmatu kodeering: ';
|
||||
$PHPMAILER_LANG['execute'] = 'Tegevus ebaõnnestus: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'Pole piisavalt õiguseid järgneva faili avamiseks: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Faili Viga: Faili avamine ebaõnnestus: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'Järgnev saatja e-posti aadress on vigane: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'mail funktiooni käivitamine ebaõnnestus.';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'Saatmine peatatud, e-posti address vigane: ';
|
||||
$PHPMAILER_LANG['provide_address'] = 'Te peate määrama vähemalt ühe saaja e-posti aadressi.';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' maileri tugi puudub.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'SMTP Viga: Järgnevate saajate e-posti aadressid on vigased: ';
|
||||
$PHPMAILER_LANG["signing"] = 'Viga allkirjastamisel: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() ebaõnnestus.';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'SMTP serveri viga: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'Ei õnnestunud määrata või lähtestada muutujat: ';
|
||||
$PHPMAILER_LANG['extension_missing'] = 'Nõutud laiendus on puudu: ';
|
28
language/phpmailer.lang-fa.php
Normal file
28
language/phpmailer.lang-fa.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Persian/Farsi PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
* @author Ali Jazayeri <jaza.ali@gmail.com>
|
||||
* @author Mohammad Hossein Mojtahedi <mhm5000@gmail.com>
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'خطای SMTP: احراز هویت با شکست مواجه شد.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'خطای SMTP: اتصال به سرور SMTP برقرار نشد.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'خطای SMTP: دادهها نادرست هستند.';
|
||||
$PHPMAILER_LANG['empty_message'] = 'بخش متن پیام خالی است.';
|
||||
$PHPMAILER_LANG['encoding'] = 'کدگذاری ناشناخته: ';
|
||||
$PHPMAILER_LANG['execute'] = 'امکان اجرا وجود ندارد: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'امکان دسترسی به فایل وجود ندارد: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'خطای File: امکان بازکردن فایل وجود ندارد: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'آدرس فرستنده اشتباه است: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'امکان معرفی تابع ایمیل وجود ندارد.';
|
||||
$PHPMAILER_LANG['invalid_address'] = 'آدرس ایمیل معتبر نیست: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = ' mailer پشتیبانی نمیشود.';
|
||||
$PHPMAILER_LANG['provide_address'] = 'باید حداقل یک آدرس گیرنده وارد کنید.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'خطای SMTP: ارسال به آدرس گیرنده با خطا مواجه شد: ';
|
||||
$PHPMAILER_LANG['signing'] = 'خطا در امضا: ';
|
||||
$PHPMAILER_LANG['smtp_connect_failed'] = 'خطا در اتصال به SMTP.';
|
||||
$PHPMAILER_LANG['smtp_error'] = 'خطا در SMTP Server: ';
|
||||
$PHPMAILER_LANG['variable_set'] = 'امکان ارسال یا ارسال مجدد متغیرها وجود ندارد: ';
|
||||
$PHPMAILER_LANG['extension_missing'] = 'افزونه موجود نیست: ';
|
28
language/phpmailer.lang-fi.php
Normal file
28
language/phpmailer.lang-fi.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Finnish PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
* @author Jyry Kuukanen
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'SMTP-virhe: käyttäjätunnistus epäonnistui.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'SMTP-virhe: yhteys palvelimeen ei onnistu.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP-virhe: data on virheellinen.';
|
||||
//$PHPMAILER_LANG['empty_message'] = 'Message body empty';
|
||||
$PHPMAILER_LANG['encoding'] = 'Tuntematon koodaustyyppi: ';
|
||||
$PHPMAILER_LANG['execute'] = 'Suoritus epäonnistui: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'Seuraavaan tiedostoon ei ole oikeuksia: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Tiedostovirhe: Ei voida avata tiedostoa: ';
|
||||
$PHPMAILER_LANG['from_failed'] = 'Seuraava lähettäjän osoite on virheellinen: ';
|
||||
$PHPMAILER_LANG['instantiate'] = 'mail-funktion luonti epäonnistui.';
|
||||
//$PHPMAILER_LANG['invalid_address'] = 'Invalid address: ';
|
||||
$PHPMAILER_LANG['mailer_not_supported'] = 'postivälitintyyppiä ei tueta.';
|
||||
$PHPMAILER_LANG['provide_address'] = 'Aseta vähintään yksi vastaanottajan sähköpostiosoite.';
|
||||
$PHPMAILER_LANG['recipients_failed'] = 'SMTP-virhe: seuraava vastaanottaja osoite on virheellinen.';
|
||||
$PHPMAILER_LANG['encoding'] = 'Tuntematon koodaustyyppi: ';
|
||||
//$PHPMAILER_LANG['signing'] = 'Signing Error: ';
|
||||
//$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.';
|
||||
//$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
|
||||
//$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: ';
|
||||
//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
|
27
language/phpmailer.lang-fo.php
Normal file
27
language/phpmailer.lang-fo.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Faroese PHPMailer language file: refer to English translation for definitive list
|
||||
* @package PHPMailer
|
||||
* @author Dávur Sørensen <http://www.profo-webdesign.dk>
|
||||
*/
|
||||
|
||||
$PHPMAILER_LANG['authenticate'] = 'SMTP feilur: Kundi ikki góðkenna.';
|
||||
$PHPMAILER_LANG['connect_host'] = 'SMTP feilur: Kundi ikki knýta samband við SMTP vert.';
|
||||
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP feilur: Data ikki góðkent.';
|
||||
//$PHPMAILER_LANG['empty_message'] = 'Message body empty';
|
||||
$PHPMAILER_LANG['encoding'] = 'Ókend encoding: ';
|
||||
$PHPMAILER_LANG['execute'] = 'Kundi ikki útføra: ';
|
||||
$PHPMAILER_LANG['file_access'] = 'Kundi ikki tilganga fílu: ';
|
||||
$PHPMAILER_LANG['file_open'] = 'Fílu feilur: Kundi ikki opna fílu: ';
|
||||