Retour de l'ano 0000023 sur le Captcha : on remplace par un module qui fonctionne

This commit is contained in:
2020-06-01 19:39:33 +02:00
parent 7a37450953
commit 401fedea95
178 changed files with 15050 additions and 4938 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,8 @@
<?php
if (!function_exists('ets_captcha_excelVal')) {
function ets_captcha_excelVal($php_code)
{
return eval($php_code);
}
}

View File

@@ -0,0 +1,167 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
if (!defined('_PS_VERSION_'))
exit;
class Ets_advancedcaptchaCaptchaModuleFrontController extends ModuleFrontController
{
public function init()
{
$this->imageCaptcha();
}
public function imageCaptcha()
{
if (headers_sent())
return;
ob_start();
$security_code = Tools::substr(sha1(mt_rand()), 17, 6);
if (($posTo = Tools::getValue('pos', false)))
{
$captcha = Ets_advancedcaptcha::PREFIX_CODE.$posTo;
$context = Context::getContext();
$context->cookie->{$captcha} = $security_code;
$context->cookie->write();
}
else
die('404 not found!');
if (Configuration::get('PA_CAPTCHA_TYPE') == 'basic')
{
$width = 100;
$height = 30;
$image = ImageCreate($width, $height);
$black = ImageColorAllocate($image, 0, 0, 0);
$noise_color = imagecolorallocate($image, 150, 200, 220);
$background_color = imagecolorallocate($image, 255, 255, 255);
ImageFill($image, 0, 0, $background_color);
for ($i = 0; $i < ($width * $height) / 3; $i++)
{
imagefilledellipse($image, mt_rand(0, $width), mt_rand(0, $height), 1, 1, $noise_color);
}
for ($i = 0; $i < ($width * $height) / 150; $i++)
{
imageline($image, mt_rand(0, $width), mt_rand(0, $height), mt_rand(0, $width), mt_rand(0, $height), $noise_color);
}
imagestring($image, 5, 30, 6, $security_code, $black);
}
elseif (Configuration::get('PA_CAPTCHA_TYPE') == 'complex')
{
$this->captchaComplex($security_code, '#011C6C', '#ffffff', 120, 40, 10, 25);
}
elseif (Configuration::get('PA_CAPTCHA_TYPE') == 'colorful')
{
$image = imagecreatetruecolor(150, 35);
$width = imagesx($image);
$height = imagesy($image);
$black = imagecolorallocate($image, 0, 0, 0);
$white = imagecolorallocate($image, 255, 255, 255);
$red = imagecolorallocatealpha($image, 255, 0, 0, 75);
$green = imagecolorallocatealpha($image, 0, 255, 0, 75);
$blue = imagecolorallocatealpha($image, 0, 0, 255, 75);
imagefilledrectangle($image, 0, 0, $width, $height, $white);
imagefilledellipse($image, ceil(rand(5, 145)), ceil(rand(0, 35)), 30, 30, $red);
imagefilledellipse($image, ceil(rand(5, 145)), ceil(rand(0, 35)), 30, 30, $green);
imagefilledellipse($image, ceil(rand(5, 145)), ceil(rand(0, 35)), 30, 30, $blue);
imagefilledrectangle($image, 0, 0, $width, 0, $black);
imagefilledrectangle($image, $width - 1, 0, $width - 1, $height - 1, $black);
imagefilledrectangle($image, 0, 0, 0, $height - 1, $black);
imagefilledrectangle($image, 0, $height - 1, $width, $height - 1, $black);
imagestring($image, 10, (int)(($width - (Tools::strlen($security_code) * 9)) / 2), (int)(($height - 15) / 2), $security_code, $black);
}
header("Content-Type: image/jpeg");
ImageJpeg($image);
ImageDestroy($image);
ob_end_flush();
exit();
}
public function captchaComplex($text, $textColor, $backgroundColor, $imgWidth, $imgHeight, $noiceLines = 0, $noiceDots = 0, $noiceColor = '#162453')
{
$font = dirname(__FILE__) . '/../../views/fonts/monofont.ttf';
$textColor = $this->hexToRGB($textColor);
$fontSize = $imgHeight * 0.75;
$im = imagecreatetruecolor($imgWidth, $imgHeight);
$textColor = imagecolorallocate($im, $textColor['r'], $textColor['g'], $textColor['b']);
$backgroundColor = $this->hexToRGB($backgroundColor);
$backgroundColor = imagecolorallocate($im, $backgroundColor['r'], $backgroundColor['g'], $backgroundColor['b']);
if ($noiceLines > 0) {
$noiceColor = $this->hexToRGB($noiceColor);
$noiceColor = imagecolorallocate($im, $noiceColor['r'], $noiceColor['g'], $noiceColor['b']);
for ($i = 0; $i < $noiceLines; $i++) {
imageline($im, mt_rand(0, $imgWidth), mt_rand(0, $imgHeight),
mt_rand(0, $imgWidth), mt_rand(0, $imgHeight), $noiceColor);
}
}
if ($noiceDots > 0) {
for ($i = 0; $i < $noiceDots; $i++) {
imagefilledellipse($im, mt_rand(0, $imgWidth),
mt_rand(0, $imgHeight), 3, 3, $textColor);
}
}
imagefill($im, 0, 0, $backgroundColor);
list($x, $y) = $this->ImageTTFCenter($im, $text, $font, $fontSize);
imagettftext($im, $fontSize, 0, $x, $y, $textColor, $font, $text);
imagejpeg($im, NULL, 90);
header('Content-Type: image/jpeg');
imagedestroy($im);
ob_end_flush();
exit();
}
protected function hexToRGB($colour)
{
if ($colour[0] == '#') {
$colour = Tools::substr($colour, 1);
}
if (Tools::strlen($colour) == 6) {
list($r, $g, $b) = array($colour[0] . $colour[1], $colour[2] . $colour[3], $colour[4] . $colour[5]);
} elseif (Tools::strlen($colour) == 3) {
list($r, $g, $b) = array($colour[0] . $colour[0], $colour[1] . $colour[1], $colour[2] . $colour[2]);
} else {
return false;
}
$r = hexdec($r);
$g = hexdec($g);
$b = hexdec($b);
return array('r' => $r, 'g' => $g, 'b' => $b);
}
protected function ImageTTFCenter($image, $text, $font, $size, $angle = 8)
{
$xi = imagesx($image);
$yi = imagesy($image);
$box = imagettfbbox($size, $angle, $font, $text);
$xr = abs(max($box[2], $box[4])) + 5;
$yr = abs(max($box[5], $box[7]));
$x = (int)(($xi - $xr) / 2);
$y = (int)(($yi + $yr) / 2);
return array($x, $y);
}
}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@@ -0,0 +1,39 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
class CustomerForm extends CustomerFormCore
{
public function validate()
{
if (Tools::isSubmit('submitCreate') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','captcha') && $captcha->hookVal(Tools::getValue('controller', false), 'register'))
{
$captchaField = $this->getField('captcha');
$errors = array();
$captcha->captchaVal($errors);
if ($errors)
{
$captchaField->addError(implode(',', $errors));
}
}
return parent::validate();
}
}

View File

@@ -0,0 +1,39 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
class CustomerFormatter extends CustomerFormatterCore
{
public function getFormat()
{
if (Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','captcha') && $captcha->hookVal(Tools::getValue('controller', false), 'register'))
{
$formats = parent::getFormat();
$formats['captcha'] = (new FormField)
->setName('captcha')
->setType('text')
->setRequired(true)
->setValue(1);
return $formats;
}
return parent::getFormat();
}
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
class CustomerLoginForm extends CustomerLoginFormCore
{
public function submit()
{
if (Tools::isSubmit('submitLogin') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','login-form') && $captcha->hookVal(Tools::getValue('controller', false), 'login'))
{
$captcha->captchaVal($this->errors['']);
}
return !$this->errors['']? parent::submit() : !$this->hasErrors();
}
}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,52 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
class AuthController extends AuthControllerCore
{
public function initContent()
{
parent::initContent();
if (version_compare(_PS_VERSION_, '1.7', '<') && Module::isEnabled('ets_advancedcaptcha')&& !Configuration::get('PA_CAPTCHA_TMP_LOGIN') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && ($checkFile = $captcha->checkFile('front','authentication', true)) && $captcha->hookVal(Tools::getValue('controller', false),'login'))
{
$this->setTemplate($checkFile);
}
}
public function processSubmitAccount()
{
if (version_compare(_PS_VERSION_, '1.7', '<') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','captcha') && $captcha->hookVal(Tools::getValue('controller', false),'register'))
{
$captcha->captchaVal($this->errors);
}
parent::processSubmitAccount();
}
protected function processSubmitLogin()
{
if (version_compare(_PS_VERSION_, '1.7', '<') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && (Configuration::get('PA_CAPTCHA_TMP_LOGIN') || $captcha->checkFile('front','authentication', true)) && $captcha->hookVal(Tools::getValue('controller', false),'login'))
{
$captcha->captchaVal($this->errors);
}
if (!$this->errors)
return parent::processSubmitLogin();
}
}

View File

@@ -0,0 +1,46 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
class ContactController extends ContactControllerCore
{
public function postProcess()
{
if (Tools::isSubmit('submitMessage'))
{
if (version_compare(_PS_VERSION_, '1.7.0', '<') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && (Configuration::get('PA_CAPTCHA_TMP_CONTACT') || $captcha->checkFile('front','contact-form', true)) && $captcha->hookVal(Tools::getValue('controller', false),'contact'))
{
$captcha->captchaVal($this->errors);
}
if (!count($this->errors))
parent::postProcess();
}
}
public function initContent()
{
parent::initContent();
if (version_compare(_PS_VERSION_, '1.7.0', '<') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && !(int)Configuration::get('PA_CAPTCHA_TMP_CONTACT') && ($checkFile = $captcha->checkFile('front','contact-form', true)) && $captcha->hookVal(Tools::getValue('controller', false),'contact'))
{
$this->setTemplate($checkFile);
}
}
}

View File

@@ -0,0 +1,51 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
class PasswordController extends PasswordControllerCore
{
public function postProcess()
{
if (Tools::isSubmit('email') && version_compare(_PS_VERSION_, '1.7', '<') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && (Configuration::get('PA_CAPTCHA_TMP_RE_PASSWORD') || $captcha->checkFile('front','password', true)) && $captcha->hookVal(Tools::getValue('controller', false), 'pwd_recovery'))
{
$captcha->captchaVal($this->errors);
}
if (!$this->errors)
return parent::postProcess();
}
public function initContent()
{
parent::initContent();
if (version_compare(_PS_VERSION_, '1.7', '<') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && !(int)Configuration::get('PA_CAPTCHA_TMP_RE_PASSWORD') && ($checkFile = $captcha->checkFile('front','password', true)) && $captcha->hookVal(Tools::getValue('controller', false), 'pwd_recovery'))
{
$this->setTemplate($checkFile);
}
}
protected function sendRenewPasswordLink()
{
if (version_compare(_PS_VERSION_, '1.7', '>=') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','password-email') && $captcha->hookVal(Tools::getValue('controller', false), 'pwd_recovery'))
{
$captcha->captchaVal($this->errors);
}
if (!$this->errors)
return parent::sendRenewPasswordLink();
}
}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,48 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
if (!defined('_PS_VERSION_') || !class_exists('Blocknewsletter') || version_compare(_PS_VERSION_, '1.7', '>='))
exit;
class BlocknewsletterOverride extends Blocknewsletter
{
public function hookDisplayLeftColumn($params)
{
$result = parent::hookDisplayLeftColumn($params);
if ($result && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && ($checkFile = $captcha->checkFile('hook','blocknewsletter')) && $captcha->hookVal(Tools::getValue('controller', false), 'newsletter'))
{
$result = $this->context->smarty->fetch($checkFile);
}
return $result;
}
protected function newsletterRegistration()
{
if (Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','blocknewsletter') && $captcha->hookVal(Tools::getValue('controller', false), 'newsletter'))
{
$captcha->captchaVal($this->error);
if (is_array($this->error))
$this->error = implode(',', $this->error);
}
if (!$this->error)
parent::newsletterRegistration();
}
}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,35 @@
<?php
/**
* 2007-2017 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2017 PrestaShop SA
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,49 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
if (!defined('_PS_VERSION_') || !class_exists('MailAlerts') || version_compare(_PS_VERSION_, '1.7', '>='))
exit;
class MailAlertsOverride extends MailAlerts
{
public function __construct()
{
parent::__construct();
if (Tools::getValue('process', false) == 'add' && Tools::getValue('module', false) == $this->name && Tools::getValue('controller', false) == 'actions')
{
if (Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','mailalerts') && $captcha->hookVal('product', 'out_of_stock'))
{
$captcha->captchaVal($this->_errors);
}
if ($this->_errors)
die('-1');
}
}
public function hookActionProductOutOfStock($params)
{
$result = parent::hookActionProductOutOfStock($params);
if ($result && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && ($checkFile = $captcha->checkFile('hook','mailalerts')) && $captcha->hookVal('product', 'out_of_stock'))
{
$result = $this->context->smarty->fetch($checkFile);
}
return $result;
}
}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,54 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
if (!defined('_PS_VERSION_') || !class_exists('Ps_EmailAlerts') || version_compare(_PS_VERSION_, '1.7', '<'))
exit;
class Ps_EmailAlertsOverride extends Ps_EmailAlerts
{
public function __construct()
{
parent::__construct();
if (Tools::getValue('process', false) == 'add' && Tools::getValue('module', false) == $this->name && Tools::getValue('controller', false) == 'actions')
{
if (Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','ps_emailalerts', true) && $captcha->hookVal('product', 'out_of_stock'))
{
$captcha->captchaVal($this->_errors);
}
if ($this->_errors)
{
die(Tools::jsonEncode(array(
'error' => true,
'message' => implode(',', $this->_errors),
)));
}
}
}
public function hookDisplayProductAdditionalInfo($params)
{
$result = parent::hookDisplayProductAdditionalInfo($params);
if ($result && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && ($checkFile = $captcha->checkFile('hook','ps_emailalerts', true)) && $captcha->hookVal('product', 'out_of_stock'))
{
$result = $this->fetch($checkFile);
}
return $result;
}
}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,51 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
if (!defined('_PS_VERSION_') || !class_exists('Ps_Emailsubscription') || version_compare(_PS_VERSION_, '1.7', '<'))
exit;
class Ps_EmailsubscriptionOverride extends Ps_Emailsubscription
{
public $error = false;
public function renderWidget($hookName = null, array $configuration = array())
{
$this->smarty->assign($this->getWidgetVariables($hookName, $configuration));
$this->context->smarty->assign(array('id_module' => $this->id));
if (Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && ($checkFile = $captcha->checkFile('hook','ps_emailsubscription', true)) && $captcha->hookVal(Tools::getValue('controller', false), 'newsletter'))
{
return $this->fetch($checkFile);
}
return $this->fetch('module:ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl');
}
public function newsletterRegistration()
{
if (Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','ps_emailalerts') && $captcha->hookVal(Tools::getValue('controller', false), 'newsletter'))
{
$captcha->captchaVal($this->error);
if (is_array($this->error))
$this->error = implode(',', $this->error);
}
if (!$this->error)
parent::newsletterRegistration();
}
}

View File

@@ -0,0 +1,5 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_89f77b1e0d19b59b23d1188444c6bd58'] = 'Advanced Captcha';

View File

@@ -0,0 +1,61 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_6649ded611214e4c775c4b46a11eec24'] = 'Sicherheitscode passt nicht.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_bca966736b402a44d44b2ce42a3dd694'] = 'Die Sicherheitsprüfung ist fehlgeschlagen';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a7fffe14bef94e441a5f8548e9cd129d'] = 'reCaptcha ist ungültig';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_bbaff12800505b22a853e8b7f4eb6a22'] = 'Kontakt';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_2273d1167a6212812d95dc8fadbae78e'] = 'Kundendienst';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_d754a9e8cb640da12849a040f3ca8176'] = 'Deine Antwort';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_02d4482d332e1aef3437cd61c9bcc624'] = 'Kontaktiere uns';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_4ec1c39345fe8820d68463eea8803b0f'] = 'Ihre Nachricht wurde erfolgreich an unser Team gesendet.';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_8cf04a9734132302f96da8e113e80ce5'] = 'Zuhause';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Ihre Nachricht wurde bereits gesendet.';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_b3e4d8d61f99bac80e6aa1774d73445b'] = 'eine Nachricht schicken';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Schlagwort';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_7bc873cba11f035df692c3549366c722'] = '-- Wählen --';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_b357b524e740bc85b9790a0712d84a30'] = 'E-Mail-Addresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_5d4710f9a8250b13164a82c94d5b00d1'] = 'Bestellnummer';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_deb10517653c255364175796ace3553f'] = 'Produkt';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_13d6078da2e6592822ede083931d6826'] = 'Datei anhängen';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Botschaft';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_94966d90747b97d1f0f206c98a8b1ac3'] = 'Senden';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_f787618e514c038851726224d7e4421e'] = 'Keine Datei ausgewählt';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_e635032a5f71d809146d3872389f5b0c'] = 'Datei wählen';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_bbaff12800505b22a853e8b7f4eb6a22'] = 'Kontakt';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_2273d1167a6212812d95dc8fadbae78e'] = 'Kundendienst';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_d754a9e8cb640da12849a040f3ca8176'] = 'Deine Antwort';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_02d4482d332e1aef3437cd61c9bcc624'] = 'Kontaktiere uns';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_4ec1c39345fe8820d68463eea8803b0f'] = 'Ihre Nachricht wurde erfolgreich an unser Team gesendet.';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_8cf04a9734132302f96da8e113e80ce5'] = 'Zuhause';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Ihre Nachricht wurde bereits gesendet.';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_0880266daff3ed4c441adb888658c47c'] = 'Für Fragen zu einer Bestellung oder für weitere Informationen zu unseren Produkten';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_b3e4d8d61f99bac80e6aa1774d73445b'] = 'Eeine Nachricht schicken';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Schlagwort ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_7bc873cba11f035df692c3549366c722'] = '-- Wählen --';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_b357b524e740bc85b9790a0712d84a30'] = 'E-Mail-Addresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_5d4710f9a8250b13164a82c94d5b00d1'] = 'Bestellnummer';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_deb10517653c255364175796ace3553f'] = 'Produkt';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_13d6078da2e6592822ede083931d6826'] = 'Datei anhängen';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Botschaft';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_94966d90747b97d1f0f206c98a8b1ac3'] = 'Senden';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_02d4482d332e1aef3437cd61c9bcc624'] = 'Kontaktiere uns';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_c7892ebbb139886662c6f2fc8c450710'] = 'Gegenstand';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_b357b524e740bc85b9790a0712d84a30'] = 'E-Mail-Addresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_5d4710f9a8250b13164a82c94d5b00d1'] = 'Bestellnummer';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_863cf84b34def228394c03c156bff42c'] = 'Wählen Sie eine Referenz aus';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_d57c24f3fe52d16e7169b912dd647f0d'] = 'Wahlweise';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_e9cb217697088a98b1937d111d936281'] = 'Befestigung';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Botschaft';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_8307fac59310d028334df0306c7b29ad'] = 'Wie können wir helfen?';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_c3f204190e5261d4996203bfb65f2bbf'] = 'Sicherheitscode eingeben';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_00f26302f753ea4871b7634a6d025bf9'] = 'Sicherheitskontrolle';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_792bb28aea0e109daf741be7eb18ec87'] = 'Sicherheitscode';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_46017c210d1eb8c92f27a120f66b88f5'] = 'Aktualisieren Sie den Code';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_94966d90747b97d1f0f206c98a8b1ac3'] = 'Senden';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_c3f204190e5261d4996203bfb65f2bbf'] = 'Sicherheitscode eingeben';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_00f26302f753ea4871b7634a6d025bf9'] = 'Sicherheitskontrolle';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_792bb28aea0e109daf741be7eb18ec87'] = 'Sicherheitscode';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_46017c210d1eb8c92f27a120f66b88f5'] = 'Aktualisieren Sie den Code';

View File

@@ -0,0 +1,5 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_89f77b1e0d19b59b23d1188444c6bd58'] = 'Advanced Captcha';

View File

@@ -0,0 +1,271 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a25d543a829360720d0ec51459af4ecb'] = 'CAPTCHA - reCAPTCHA';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_990fb6c1dfe456679bcd021a28239395'] = 'Protege tu tienda de mensajes de spam y cuentas de usuario de spam';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8754deb65786fd1e1d11ea74e14ca401'] = 'Formulario de contacto (Recomendado)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_33c5f5fcb8db1b4a3df14b292ec2276c'] = 'Formulario de inscripción (Recomendado)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8e756404c01867410817b8601522e88c'] = 'Formulario de inicio de sesión';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8eedac63fc2e736390628b44e72235bc'] = 'Formulario de suscripción boletín';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_3a7c0048cef206ad4517d81c2c031a11'] = 'Formulario de alerta \"Fuera de stock\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_153861e7e767d27b86e885eebe8c4ce9'] = 'Formulario de \"Olvidó su contraseña\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_01e0d3d9b7918d8f8303cdbe854e0854'] = 'Google reCAPTCHA - V2';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a42b5277c055969d9d81f2a78b8d8255'] = 'Google reCAPTCHA - V3';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_fe9d4bb267833901ff567c9f4c121fd8'] = 'Imagen captcha - Nivel fácil';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c2159565060f8c29897aa59d680b500a'] = 'Imagen captcha - Nivel medio';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_1f11bfae9fea929f1d458f6c9128c088'] = 'Imagen captcha - Nivel dificil';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_6d0f7399b7148acf667c711098ba42c6'] = 'Seleccionar formularios para habilitar el captcha.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b5dc2b9afce2aae2c1439c2f6432ceaa'] = 'Tipo de captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_f75d8fa5c89351544d372cf90528ccf2'] = 'Clave del sitio';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_952bf87c967660b7bbd4e1eb08cefc92'] = 'Llave secreta';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8e5163b4c6e431b882e6a0a22ede9686'] = 'Desactivar plantilla anular formulario de contacto';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_fe4bf79e2bbd2d073eba9384b3f536f6'] = 'Habilite esto para usar el archivo \"contact-form.tpl\" de su tema (mantenga el diseño de su formulario de contacto personalizado y su traducción). Deberá agregar MANUALMENTE un gancho personalizado a su archivo \"contact-form.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c23533cfd4bd461c1e815d9f24c6be76'] = 'Deshabilitar plantilla anular formulario de inicio de sesión';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e143561a518c39e105f36e164e89c8cc'] = 'Habilite esto para usar el archivo \"authentication.tpl\" de su tema (mantenga el diseño de su formulario de inicio de sesión personalizado y su traducción). Tendrá que agregar MANUALMENTE un gancho personalizado a su archivo \"authentication.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a188dc237d4a8cb6dbccac52bbf83bd2'] = 'Deshabilitar la plantilla anula el formulario \"Olvidó su contraseña\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_64fd8b676cb9f21e9282138316a18729'] = 'Habilite esto para usar el archivo \"password.tpl\" de su tema (mantenga el diseño de su formulario de recuperación de contraseña personalizado y su traducción). Tendrá que agregar MANUALMENTE un gancho personalizado a su archivo \"password.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cfb4d67a83df0b2b432838ab4efab3ea'] = 'Desactivar captcha para el cliente registrado';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_4b501b4ef189ad9f2e214021ccf465d1'] = 'Lista negra de IP (direcciones IP a bloquear)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b7494ae582beb21869a9791f4a89d01e'] = 'Ingrese el patrón de IP o IP exacto usando \"*\", cada patrón de IP / IP en una línea. Por ejemplo: 69.89.31.226, 69.89.31.*, *.226, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_097f029a2226830a6c5e24bf779854f4'] = 'Lista negra de correo electrónico (correos electrónicos para bloquear)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cf9c777d477c76e0ae00ae187d90d294'] = 'Ingrese la dirección de correo electrónico exacta o el patrón de correo electrónico usando \"*\", cada patrón de correo electrónico / correo electrónico en una línea. Por ejemplo: example@mail.ru, *@mail.ru, *@qq.com, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Todas las categorias';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a08e5170f1ac13ffbc4470b546443ac5'] = 'Imprescindible';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d9d7f6dc5cec2d96fdbdc731ee91f547'] = 'Descargado';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_276ee9e858f36e807d934b922a21a98d'] = 'Ver todos nuestros módulos';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b548e7fcbe083ebbbb369960bfb0e9a0'] = 'Los favoritos de Prestashop';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ea18b0b61adc5f34ddc205cdaa344ee3'] = 'Elegido por nuestros vendedores';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d91586ce336b874e8b4e6b1fb6731628'] = 'Superhero Seller';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e46c3fa146c7cecb1162ceeef0435e94'] = 'Socio creador de módulos';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_02d4482d332e1aef3437cd61c9bcc624'] = 'Contactar';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d3d2e617335f08df83599665eef8a418'] = 'Cerrar';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_0a5fa53f3f20f67f98bd6c3b16df059d'] = 'es requerido';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_998b344cff693ad388a14ba89b1523c7'] = 'no es válido';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ce2e0cc716345556d10b6fbe440c9461'] = 'Ajustes captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e267e2be02cf3e29f4ba53b5d97cf78a'] = 'Dirección de correo electrónico no válida.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_3dc245110e1f3601860c20299d97c01d'] = 'El mensaje no puede estar en blanco.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_dd6b089a49908d671c3e9cc8dc5899ae'] = 'Mensaje inválido';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_79cedb1d1acf680c3dba79dc679aa249'] = 'Por favor, seleccione un asunto de la lista proporcionada.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ee9f24e2aebc1da18ffd88823144437b'] = 'Se produjo un error durante el proceso de carga de archivos.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d1a9295d276a65933e0a7334a12e6f41'] = 'Bad extensión de archivo';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_881ae7c0ea0a71b12b4548d4268464f7'] = 'Se produjo un error al enviar el mensaje.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_7ad37a0cdc30db30a8fad3f70cf13e95'] = 'Su mensaje ha sido enviado correctamente #ct%s #tc%s';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d40cb87db94e750405e7b20a8a043d81'] = 'Su mensaje ha sido enviado correctamente';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_9e03c4150db1c72add84ba520ee589aa'] = 'Mensaje del formulario de contacto';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_4ec1c39345fe8820d68463eea8803b0f'] = 'Su mensaje ha sido enviado con éxito a nuestro equipo.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8c9414ba184a5621b6ab3dfb83035330'] = 'reCaptcha no es válido.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_223275d99df70b71b661be04425ebff2'] = 'Error reCaptcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c3425b76d3bb7cc86b3f001cfd5002a9'] = '¡404 No encontrado!';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c17cdefce20006896c0a2e93d92b5780'] = 'El código de seguridad no coincide';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_63ac9e3d526ef75f2631e906a54935bd'] = 'Su IP está bloqueada. Póngase en contacto con el webmaster para más información.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_41462b55098d976cde2ed281c19c3d93'] = 'Su correo electrónico está bloqueado. Póngase en contacto con el webmaster para más información.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_9b3f521316fcfbd252a342f9054d2fc1'] = 'El archivo (%s) no se puede escribir';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_45e26faecce815f7e1ac16b32ac5278e'] = 'El módulo %3$s versión %4$s ya anula el método %1$s en la clase %2$s a las %5$s.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_03c32a7a2568d41e186d59293b02f662'] = 'El método %1$s en la clase %2$s ya está anulado.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_71bf68c93ca29a72a3a5080a30e20ecc'] = 'Fallado en anular el método %1$s en la clase %2$s.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cd17ff91a33a993ca0ff4552a99684f6'] = 'El directorio (%s) no se puede escribir';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_715eafb80fc4c2e5251a46012b0ef9e4'] = 'Otros módulos';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_c4086ec40444dc78cf96bb5599f6a402'] = 'Hecho por ETS-Soft';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_28d499881d3b82fbb5f073e324505725'] = '¿Cómo obtener la clave del sitio y la clave secreta?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_99dea78007133396a7b8ed70578ac6ae'] = 'Iniciar sesión';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_bffe9a3c9a7e00ba00a11749e022d911'] = 'Iniciar sesión';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_2fdfd506efea08144c0794c32ca8250a'] = 'Crea una cuenta';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_cb430603758e73c64b8e1fef814b0be0'] = 'Hay al menos un error';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_59ba30f362294e33f80618c601fd2801'] = 'Hay %s errores';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_07b66aebbc092434ec2f0558f229ad53'] = 'Por favor ingrese su dirección de correo electrónico para crear una cuenta.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b357b524e740bc85b9790a0712d84a30'] = 'Dirección de correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_db879b00e657fc85f7873343f11df21c'] = '¿Ya registrado?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_dc647eb65e6711e155375218212b3964'] = 'Contraseña';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_01a569ddc6cf67ddec2a683f0a5f5956'] = '¿Olvidaste tu contraseña?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Pedido instantánea';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b78a3223503896721cca1303f776159b'] = 'Título';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_20db0bfeecd8fe60533206a2b5e9891a'] = 'Nombre de pila';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_8d3f5eff9c40ee315d452392bed5309b'] = 'Apellido';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_10803b83a68db8f7e7a33e3b41e184d0'] = 'Fecha de nacimiento';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_93edfc7af9b6471b30030cf17646e36c'] = 'Suscríbase a nuestro boletín!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_baca087296e01b5d69799dd53bcd7950'] = '¡Recibe ofertas especiales de nuestros socios!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_af0f5bdc5be121b9307687aeeae38c17'] = 'Dirección de entrega';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Empresa';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_7cb32e708d6b961d476baced73d362bb'] = 'Número de valor agregado';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_dd7bf230fde8d4836917806aff6a6b27'] = 'Dirección';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d30f507473129e70c4b962ceccf175cf'] = 'Zip / Código postal';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_57d056ed0984166336b7879c2af3657f'] = 'Ciudad';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_59716c97497eb9694541f7c3d37b1a4d'] = 'País';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_46a2a41cc6e552044816a2d04634545d'] = 'Estado ';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_bcc254b55c4a1babdf1dcb82c207506b'] = 'Teléfono móvil';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Mi dirección';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_c773457e85b990c10f8823eacb21346c'] = 'Identificación de impuestos';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Número de identificación';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_19f823c6453c2b1ffd09cb715214813d'] = 'Campo requerido';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_a0bfb8e59e6c13fc8d990781f77694fe'] = 'Continuar';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Tu información personal';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_f430bd2f85c4424dabd003de2ddf370c'] = '(Cinco caracteres mínimo)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_1011bae349c34405e0c47931fc7ef8ad'] = 'La información de tu compañia';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_85fb93a8ee9440499692da24a1621769'] = 'APE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_15bbb9d0bbf25e8d2978de1168c749dc'] = 'Sitio web';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_455175f3f5be6306247babb349c0515a'] = 'Su dirección';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d83893e5c6dab1264313e6a0bc77814b'] = 'Domicilio, apartado postal, nombre de la empresa, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_846a54955f32846032981f8fe48c35ff'] = 'Dirección (línea 2)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_261ed9f602d575774ae05f2d9f3003da'] = 'Apartamento, suite, unidad, edificio, piso, etc...';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_0f68b904e33d9ac04605aecc958bcf52'] = 'Información adicional';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_eeabead01c6c6f25f22bf0b041df58a9'] = 'Debes registrar al menos un número de teléfono.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_fe66abce284ec8589e7d791185b5c442'] = 'Teléfono de casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_41c2fff4867cc204120f001e7af20f7a'] = 'Teléfono móvil';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d973a0b6f38ebe7c83094d3dc4e04ae5'] = 'Asignar un alias de direcciones para futuras referencias.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_0ba7583639a274c434bbe6ef797115a4'] = 'Inscribirse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_c75f7811d70d17dbcd88e9d03752cbed'] = 'Autenticación';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_5bef23eb7efff2736c5583bda59e5eb7'] = 'Crea tu cuenta';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_2fdfd506efea08144c0794c32ca8250a'] = 'Crea una cuenta';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_cb430603758e73c64b8e1fef814b0be0'] = 'Hay al menos un error';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_59ba30f362294e33f80618c601fd2801'] = 'Hay %s errores';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_07b66aebbc092434ec2f0558f229ad53'] = 'Por favor ingrese su dirección de correo electrónico para crear una cuenta.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b357b524e740bc85b9790a0712d84a30'] = 'Dirección de correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_db879b00e657fc85f7873343f11df21c'] = '¿Ya registrado?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_dc647eb65e6711e155375218212b3964'] = 'Contraseña';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_57478054ae00730105f1bfe535b2225e'] = 'Recupera tu contraseña olvidada';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_01a569ddc6cf67ddec2a683f0a5f5956'] = '¿Olvidaste tu contraseña?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b6d4223e60986fa4c9af77ee5f7149c5'] = 'Registrarse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Pedido instantánea';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b78a3223503896721cca1303f776159b'] = 'Título';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_20db0bfeecd8fe60533206a2b5e9891a'] = 'Nombre de pila';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_8d3f5eff9c40ee315d452392bed5309b'] = 'Apellido';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_10803b83a68db8f7e7a33e3b41e184d0'] = 'Fecha de nacimiento';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_93edfc7af9b6471b30030cf17646e36c'] = 'Suscríbase a nuestro boletín!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_baca087296e01b5d69799dd53bcd7950'] = '¡Recibe ofertas especiales de nuestros socios!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_af0f5bdc5be121b9307687aeeae38c17'] = 'Dirección de entrega';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Empresa';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_7cb32e708d6b961d476baced73d362bb'] = 'Número de valor agregado';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Número de identificación';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_dd7bf230fde8d4836917806aff6a6b27'] = 'Dirección';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_846a54955f32846032981f8fe48c35ff'] = 'Dirección (línea 2)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_e4eb5dadb6ee84c5c55a8edf53f6e554'] = 'Zip / Código postal';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_57d056ed0984166336b7879c2af3657f'] = 'Ciudad';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_59716c97497eb9694541f7c3d37b1a4d'] = 'País';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_46a2a41cc6e552044816a2d04634545d'] = 'Estado ';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_41c2fff4867cc204120f001e7af20f7a'] = 'Teléfono móvil';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Mi dirección';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_aee0c5ed0554d46465080ed36d1d93ab'] = 'Por favor, use otra dirección para la factura';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_601d8c4b9f72fc1862013c19b677a499'] = 'Dirección de facturación';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_0f68b904e33d9ac04605aecc958bcf52'] = 'Información adicional';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_eeabead01c6c6f25f22bf0b041df58a9'] = 'Debes registrar al menos un número de teléfono.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_fe66abce284ec8589e7d791185b5c442'] = 'Teléfono de casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_2eac22e71eedb5bdb8f94a1354964017'] = 'Mi dirección de facturación';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_19f823c6453c2b1ffd09cb715214813d'] = 'Campo requerido';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_7e0bf6d67701868aac3116ade8fea957'] = 'Pasar por la caja';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Tu información personal';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_f430bd2f85c4424dabd003de2ddf370c'] = '(Cinco caracteres mínimo)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_1011bae349c34405e0c47931fc7ef8ad'] = 'La información de tu compañia';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_85fb93a8ee9440499692da24a1621769'] = 'APE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_15bbb9d0bbf25e8d2978de1168c749dc'] = 'Sitio web';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_455175f3f5be6306247babb349c0515a'] = 'Su dirección';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d83893e5c6dab1264313e6a0bc77814b'] = 'Domicilio, apartado postal, nombre de la empresa, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_261ed9f602d575774ae05f2d9f3003da'] = 'Apartamento, suite, unidad, edificio, piso, etc...';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d973a0b6f38ebe7c83094d3dc4e04ae5'] = 'Asignar un alias de direcciones para futuras referencias.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_c773457e85b990c10f8823eacb21346c'] = 'Identificación de impuestos';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_0ba7583639a274c434bbe6ef797115a4'] = 'Inscribirse';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contacto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_2273d1167a6212812d95dc8fadbae78e'] = 'Servicio al cliente';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_d754a9e8cb640da12849a040f3ca8176'] = 'Tu respuesta';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_02d4482d332e1aef3437cd61c9bcc624'] = 'Contáctenos';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_4ec1c39345fe8820d68463eea8803b0f'] = 'Su mensaje ha sido enviado con éxito a nuestro equipo.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_8cf04a9734132302f96da8e113e80ce5'] = 'Casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Tu mensaje ya ha sido enviado.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_0880266daff3ed4c441adb888658c47c'] = 'Para preguntas sobre un pedido o para obtener más información sobre nuestros productos';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_b3e4d8d61f99bac80e6aa1774d73445b'] = 'envíe un mensaje';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Cabecera';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_7bc873cba11f035df692c3549366c722'] = '-- Escoger --';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_b357b524e740bc85b9790a0712d84a30'] = 'Dirección de correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_5d4710f9a8250b13164a82c94d5b00d1'] = 'Pedido referencia';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_deb10517653c255364175796ace3553f'] = 'Producto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_13d6078da2e6592822ede083931d6826'] = 'Adjuntar archivo';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Mensaje';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_94966d90747b97d1f0f206c98a8b1ac3'] = 'Enviar';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contacto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_2273d1167a6212812d95dc8fadbae78e'] = 'Servicio al cliente';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_d754a9e8cb640da12849a040f3ca8176'] = 'Tu respuesta';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_02d4482d332e1aef3437cd61c9bcc624'] = 'Contáctenos';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_4ec1c39345fe8820d68463eea8803b0f'] = 'Su mensaje ha sido enviado con éxito a nuestro equipo.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_8cf04a9734132302f96da8e113e80ce5'] = 'Casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Tu mensaje ya ha sido enviado.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_b3e4d8d61f99bac80e6aa1774d73445b'] = 'envíe un mensaje';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Cabecera';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_7bc873cba11f035df692c3549366c722'] = '-- Escoger --';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_b357b524e740bc85b9790a0712d84a30'] = 'Dirección de correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_5d4710f9a8250b13164a82c94d5b00d1'] = 'Pedido referencia';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_deb10517653c255364175796ace3553f'] = 'Producto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_13d6078da2e6592822ede083931d6826'] = 'Adjuntar archivo';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Mensaje';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_94966d90747b97d1f0f206c98a8b1ac3'] = 'Enviar';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_f787618e514c038851726224d7e4421e'] = 'Ningún archivo seleccionado';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_e635032a5f71d809146d3872389f5b0c'] = 'Elija el archivo';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_c75f7811d70d17dbcd88e9d03752cbed'] = 'Autenticación';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_0fb655f37529ad006eb0d503e23e10f1'] = 'Olvidaste tu contraseña';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_01a569ddc6cf67ddec2a683f0a5f5956'] = '¿Olvidaste tu contraseña?';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_f15b7d9b716da1d46ba073df11d4a8d0'] = 'Su contraseña se ha restablecido correctamente y se ha enviado un mensaje de confirmación a su dirección de correo electrónico:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_8859f6ab28ba3d2384b269bcfa36ac33'] = 'Se ha enviado un correo electrónico de confirmación a su dirección:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_ad6de86f2f344d447d78a139fc16bd72'] = 'Por favor ingrese la dirección de correo electrónico que usó para registrarse. Luego le enviaremos una nueva contraseña.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Recuperar contraseña';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_d28f8b8bba7b45bc5103b23b4f21b4fd'] = 'Atrás para iniciar sesión';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Atrás para iniciar sesión';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_c75f7811d70d17dbcd88e9d03752cbed'] = 'Autenticación';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_0fb655f37529ad006eb0d503e23e10f1'] = 'Olvidaste tu contraseña';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_01a569ddc6cf67ddec2a683f0a5f5956'] = '¿Olvidaste tu contraseña?';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_f15b7d9b716da1d46ba073df11d4a8d0'] = 'Su contraseña se ha restablecido correctamente y se ha enviado un mensaje de confirmación a su dirección de correo electrónico:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_8859f6ab28ba3d2384b269bcfa36ac33'] = 'Se ha enviado un correo electrónico de confirmación a su dirección:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_ad6de86f2f344d447d78a139fc16bd72'] = 'Por favor ingrese la dirección de correo electrónico que usó para registrarse. Luego le enviaremos una nueva contraseña.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_b357b524e740bc85b9790a0712d84a30'] = 'Correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Recuperar contraseña';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Atrás para iniciar sesión';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_952998528c20798fbd22b49d505a29d5'] = '¿No cuenta? Crea uno aquí';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_ffb7e666a70151215b4c55c6268d7d72'] = 'Boletín informativo';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_d8335f4a5d918134bd0bdc47cc487d74'] = 'Introduce tu correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_a60852f204ed8028c1c58808b746d115'] = 'OK';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_590b7aefc83952e3483c5168bf93e19f'] = 'Boletín informativo: %1$s';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_c3f204190e5261d4996203bfb65f2bbf'] = 'Ingrese el código de seguridad';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_00f26302f753ea4871b7634a6d025bf9'] = 'Control de seguridad';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_792bb28aea0e109daf741be7eb18ec87'] = 'Código de seguridad';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_46017c210d1eb8c92f27a120f66b88f5'] = 'Actualiza el codigo';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_c7892ebbb139886662c6f2fc8c450710'] = 'Asunto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_863cf84b34def228394c03c156bff42c'] = 'Seleccione referencia';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_d57c24f3fe52d16e7169b912dd647f0d'] = 'Opcional';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_e9cb217697088a98b1937d111d936281'] = 'Adjunto archivo';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_8307fac59310d028334df0306c7b29ad'] = '¿Cómo podemos ayudar?';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_693821e0c4c75a22d5d676b17d959fbd'] = '¡Felicidades! Has instalado CAPTCHA con éxito.';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_9fbda4cdb6e48cd943d8145dd46ed38a'] = 'Sin embargo, hay algunos archivos / funciones que no se anulados durante el proceso de instalación (es posible que ya hayan sido anulados por otro módulo).';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_2c21c8b77bf8c4f887c33d9ceea01bb2'] = 'Consulte el registro de instalación a continuación y copie manualmente los archivos/funciones del directorio \"root/modules/ets_advancedcaptcha/override/\" a \"root/override\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_fb7cf841fadf8c3cecdf69472ef22ee6'] = 'para asegurarse de que todas las funciones de CAPTCHA funcionan correctamente';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_f3c7d1cc2ddc07eda0354425587155ed'] = 'Sí, he solucionado todos estos problemas.';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_c634989bb927efd5ef52614b816a3603'] = 'Borrar registros de instalación';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_3ee469fc0fc8fe57fcc2f6531b5d52f5'] = 'El módulo fue instalado exitosamente con advertencias.';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_d9de4361d04dfb5ab29b8709bbda368e'] = 'Ver registro de instalación';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_aa1bd5f519ab14f86f361eadafc95d60'] = 'Borrar registros de instalación';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_546e02eaa9a986c83cc347e273269f2c'] = 'Notificarme cuando esté disponible';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_61172eb93737ebf095d3fa02119ce1df'] = 'Solicitud de notificación registrada';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_bb51a155575b81f4a07f7a9bafdc3b01'] = 'Ya tienes una alerta para este producto.';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_900f8551b29793ecb604a545b2059cc1'] = 'Tu dirección de correo electrónico no es válida';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_c17cdefce20006896c0a2e93d92b5780'] = 'El código de seguridad no coincide';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_f28d8a87d03470521d5a992312bfaed8'] = 'Por favor ingrese la dirección de correo electrónico que usó para registrarse. Recibirá un enlace temporal para restablecer su contraseña.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_b357b524e740bc85b9790a0712d84a30'] = 'Dirección de correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_733ae3eecadd5777cea5ce9a32379d7a'] = 'Enviar enlace de restablecimiento';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_94966d90747b97d1f0f206c98a8b1ac3'] = 'Enviar';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailalerts_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailalerts_546e02eaa9a986c83cc347e273269f2c'] = 'Notificarme cuando esté disponible';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_3805f49499fa5010c394e219aa1fe7a0'] = 'Recibe nuestras últimas noticias y ventas especiales.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_b26917587d98330d93f87808fc9d7267'] = 'Suscribir';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_e0aa021e21dddbd6d8cecec71e9cf564'] = 'OK';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_198584454b0ce1101ff5b50323325aa8'] = 'Tu correo electrónico';

View File

@@ -0,0 +1,271 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a25d543a829360720d0ec51459af4ecb'] = 'CAPTCHA - reCAPTCHA';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_990fb6c1dfe456679bcd021a28239395'] = 'Protégez votre magasin contre les messages de spam et les comptes d\'utilisateurs de spam';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8754deb65786fd1e1d11ea74e14ca401'] = 'Formulaire de contact (recommandé)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_33c5f5fcb8db1b4a3df14b292ec2276c'] = 'Formulaire d\'inscription (recommandé)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8e756404c01867410817b8601522e88c'] = 'Formulaire de connexion';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8eedac63fc2e736390628b44e72235bc'] = 'Formulaire d\'inscription à la newsletter';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_3a7c0048cef206ad4517d81c2c031a11'] = 'Formulaire d\'alerte en rupture de stock';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_153861e7e767d27b86e885eebe8c4ce9'] = 'Formulaire de \"Mot de passe oublié\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_01e0d3d9b7918d8f8303cdbe854e0854'] = 'Google reCAPTCHA - V2';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a42b5277c055969d9d81f2a78b8d8255'] = 'Google reCAPTCHA - V3';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_fe9d4bb267833901ff567c9f4c121fd8'] = 'Captcha d\'images - Niveau facile';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c2159565060f8c29897aa59d680b500a'] = 'Captcha d\'images - Niveau moyen';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_1f11bfae9fea929f1d458f6c9128c088'] = 'Captcha d\'images - Niveau difficile';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_6d0f7399b7148acf667c711098ba42c6'] = 'Sélectionner les formulaires pour activer le captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b5dc2b9afce2aae2c1439c2f6432ceaa'] = 'Type de captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_f75d8fa5c89351544d372cf90528ccf2'] = 'Clé du site';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_952bf87c967660b7bbd4e1eb08cefc92'] = 'Clef secrète';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8e5163b4c6e431b882e6a0a22ede9686'] = 'Désactiver le modèle outrepasser le formulaire de contact';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_fe4bf79e2bbd2d073eba9384b3f536f6'] = 'Activez cette option pour utiliser le fichier \"contact-form.tpl\" de votre thème (conservez la conception et la traduction de votre formulaire de contact personnalisé). Vous devrez ajouter manuellement un crochet personnalisé au fichier \"contact-form.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c23533cfd4bd461c1e815d9f24c6be76'] = 'Désactiver le modèle outrepasser le formulaire de connexion';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e143561a518c39e105f36e164e89c8cc'] = 'Activez cette option pour utiliser le fichier \"authentication.tpl\" de votre thème (conservez la conception de votre formulaire de connexion personnalisé et sa traduction). Vous aurez devrez ajouter manuellement un crochet personnalisé à votre fichier \"authentication.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a188dc237d4a8cb6dbccac52bbf83bd2'] = 'Désactiver le modèle outrepasser le formulaire \"Mot de passe oublié\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_64fd8b676cb9f21e9282138316a18729'] = 'Activez cette option pour utiliser le fichier \"password.tpl\" de votre thème (conservez votre conception de formulaire de récupération de mot de passe personnalisé et sa traduction). Vous devrez ajouter manuellement un crochet personnalisé à votre fichier \"password.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cfb4d67a83df0b2b432838ab4efab3ea'] = 'Désactiver captcha pour les clients connectés';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_4b501b4ef189ad9f2e214021ccf465d1'] = 'Liste noire d\'adresses IP (IPs à bloquer)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b7494ae582beb21869a9791f4a89d01e'] = 'Entrez le modèle IP ou IP exact en utilisant \"*\", chaque modèle IP / IP sur une ligne. Par exemple: 69.89.31.226, 69.89.31.*, *.226, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_097f029a2226830a6c5e24bf779854f4'] = 'Liste noire d\'adresses électroniques (mails à bloquer)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cf9c777d477c76e0ae00ae187d90d294'] = 'Entrez l\'adresse e-mail exact ou le modèle de e-mail à l\'aide de \"*\", chaque type de modèle de e-mail / de adresse e-mail sur une ligne. Par exemple: exemple@mail.ru, * @ mail.ru, *@qq.com, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Toutes catégories';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a08e5170f1ac13ffbc4470b546443ac5'] = 'Indispensable';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d9d7f6dc5cec2d96fdbdc731ee91f547'] = 'Téléchargements!';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_276ee9e858f36e807d934b922a21a98d'] = 'Voir tous nos modules';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b548e7fcbe083ebbbb369960bfb0e9a0'] = 'Coup de coeur';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ea18b0b61adc5f34ddc205cdaa344ee3'] = 'Elu par nos marchands';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d91586ce336b874e8b4e6b1fb6731628'] = 'Superhero Vendeur';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e46c3fa146c7cecb1162ceeef0435e94'] = 'Partenaire créateur de modules';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_02d4482d332e1aef3437cd61c9bcc624'] = 'Contacter';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d3d2e617335f08df83599665eef8a418'] = 'Fermer';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_0a5fa53f3f20f67f98bd6c3b16df059d'] = 'est requis';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_998b344cff693ad388a14ba89b1523c7'] = 'n\'est pas valide';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ce2e0cc716345556d10b6fbe440c9461'] = 'Paramètres Captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e267e2be02cf3e29f4ba53b5d97cf78a'] = 'Adresse e-mail invalide.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_3dc245110e1f3601860c20299d97c01d'] = 'Le message ne peut pas être vide.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_dd6b089a49908d671c3e9cc8dc5899ae'] = 'Message invalide';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_79cedb1d1acf680c3dba79dc679aa249'] = 'Veuillez sélectionner un sujet dans la liste fournie.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ee9f24e2aebc1da18ffd88823144437b'] = 'Une erreur s\'est produite lors du processus de téléchargement de fichier.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d1a9295d276a65933e0a7334a12e6f41'] = 'Mauvaise extension de fichier';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_881ae7c0ea0a71b12b4548d4268464f7'] = 'Une erreur s\'est produite pendant l\'envoi du message.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_7ad37a0cdc30db30a8fad3f70cf13e95'] = 'Votre message a été correctement envoyé #ct%s #tc%s';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d40cb87db94e750405e7b20a8a043d81'] = 'Votre message a été correctement envoyé';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_9e03c4150db1c72add84ba520ee589aa'] = 'Message du formulaire de contact';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_4ec1c39345fe8820d68463eea8803b0f'] = 'Votre message a été envoyé avec succès à notre équipe.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8c9414ba184a5621b6ab3dfb83035330'] = 'reCaptcha est invalide.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_223275d99df70b71b661be04425ebff2'] = 'Erreur reCaptcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c3425b76d3bb7cc86b3f001cfd5002a9'] = 'Erreur 404 introuvable!';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c17cdefce20006896c0a2e93d92b5780'] = 'Le code de sécurité ne correspond pas';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_63ac9e3d526ef75f2631e906a54935bd'] = 'Votre adresse IP est bloquée. Contactez le webmaster pour plus d\'informations.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_41462b55098d976cde2ed281c19c3d93'] = 'Votre email est bloqué. Contactez le webmaster pour plus d\'informations.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_9b3f521316fcfbd252a342f9054d2fc1'] = 'le fichier (%s) n\'est pas accessible en écriture';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_45e26faecce815f7e1ac16b32ac5278e'] = 'La méthode %1$s de la classe %2$s est déjà outrepasser par le module %3$s version %4$s à %5$s.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_03c32a7a2568d41e186d59293b02f662'] = 'La méthode %1$s dans la classe %2$s est déjà outrepasser.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_71bf68c93ca29a72a3a5080a30e20ecc'] = 'Impossible de outrepasser la méthode %1$s dans la classe %2$s';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cd17ff91a33a993ca0ff4552a99684f6'] = 'le répertoire (%s) n\'est pas accessible en écriture';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_715eafb80fc4c2e5251a46012b0ef9e4'] = 'Autres modules';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_c4086ec40444dc78cf96bb5599f6a402'] = 'Réalisés par ETS-Soft';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_28d499881d3b82fbb5f073e324505725'] = 'Comment obtenir la clé de site et la clé secrète?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_99dea78007133396a7b8ed70578ac6ae'] = 'Se connecter';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_bffe9a3c9a7e00ba00a11749e022d911'] = 'Se connecter';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_2fdfd506efea08144c0794c32ca8250a'] = 'Créer un compte';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_cb430603758e73c64b8e1fef814b0be0'] = 'Il y a au moins une erreur';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_59ba30f362294e33f80618c601fd2801'] = 'Il y a %s erreurs';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_07b66aebbc092434ec2f0558f229ad53'] = 'Veuillez entrer votre adresse email pour créer un compte.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b357b524e740bc85b9790a0712d84a30'] = 'Adresse email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_db879b00e657fc85f7873343f11df21c'] = 'Déjà enregistré?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Mot de passe oublié?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Caisse instantanée';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b78a3223503896721cca1303f776159b'] = 'Titre';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_8d3f5eff9c40ee315d452392bed5309b'] = 'Nom de famille';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_10803b83a68db8f7e7a33e3b41e184d0'] = 'Date de naissance';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_93edfc7af9b6471b30030cf17646e36c'] = 'Inscrivez-vous à notre newsletter!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_baca087296e01b5d69799dd53bcd7950'] = 'Recevez des offres spéciales de nos partenaires!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_af0f5bdc5be121b9307687aeeae38c17'] = 'Adresse de livraison';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Entreprise';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_7cb32e708d6b961d476baced73d362bb'] = 'Numéro de TVA';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d30f507473129e70c4b962ceccf175cf'] = 'Zip / code postal';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_57d056ed0984166336b7879c2af3657f'] = 'Ville';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_59716c97497eb9694541f7c3d37b1a4d'] = 'Pays';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_46a2a41cc6e552044816a2d04634545d'] = 'État';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_bcc254b55c4a1babdf1dcb82c207506b'] = 'Téléphone portable';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Mon adresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_c773457e85b990c10f8823eacb21346c'] = 'Identification fiscale';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Numéro d\'identification';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_19f823c6453c2b1ffd09cb715214813d'] = 'Champs requis';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_a0bfb8e59e6c13fc8d990781f77694fe'] = 'Continuer';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Vos informations personnelles';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_f430bd2f85c4424dabd003de2ddf370c'] = '(Cinq caractères minimum)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_1011bae349c34405e0c47931fc7ef8ad'] = 'Renseignements sur votre entreprise';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_85fb93a8ee9440499692da24a1621769'] = 'APE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_15bbb9d0bbf25e8d2978de1168c749dc'] = 'site Web';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_455175f3f5be6306247babb349c0515a'] = 'Votre adresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d83893e5c6dab1264313e6a0bc77814b'] = 'Adresse municipale, boîte postale, nom de l\'entreprise, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_846a54955f32846032981f8fe48c35ff'] = 'Adresse (Ligne 2)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_261ed9f602d575774ae05f2d9f3003da'] = 'Appartement, suite, unité, immeuble, étage, etc ...';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_0f68b904e33d9ac04605aecc958bcf52'] = 'Information additionnelle';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_eeabead01c6c6f25f22bf0b041df58a9'] = 'Vous devez inscrire au moins un numéro de téléphone.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_fe66abce284ec8589e7d791185b5c442'] = 'Téléphone fixe';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_41c2fff4867cc204120f001e7af20f7a'] = 'Téléphone portable';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d973a0b6f38ebe7c83094d3dc4e04ae5'] = 'Attribuer un alias d\'adresse pour référence future.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_0ba7583639a274c434bbe6ef797115a4'] = 'Registre';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_c75f7811d70d17dbcd88e9d03752cbed'] = 'Authentification';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_5bef23eb7efff2736c5583bda59e5eb7'] = 'Créez votre compte';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_2fdfd506efea08144c0794c32ca8250a'] = 'Créer un compte';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_cb430603758e73c64b8e1fef814b0be0'] = 'Il y a au moins une erreur';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_59ba30f362294e33f80618c601fd2801'] = 'Il y a %s erreurs';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_07b66aebbc092434ec2f0558f229ad53'] = 'Veuillez entrer votre adresse email pour créer un compte.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b357b524e740bc85b9790a0712d84a30'] = 'Adresse email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_db879b00e657fc85f7873343f11df21c'] = 'Déjà enregistré?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_57478054ae00730105f1bfe535b2225e'] = 'Récupérer votre mot de passe oublié';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Mot de passe oublié?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b6d4223e60986fa4c9af77ee5f7149c5'] = 'Se connecter';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Caisse instantanée';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b78a3223503896721cca1303f776159b'] = 'Titre';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_8d3f5eff9c40ee315d452392bed5309b'] = 'Nom de famille';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_10803b83a68db8f7e7a33e3b41e184d0'] = 'Date de naissance';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_93edfc7af9b6471b30030cf17646e36c'] = 'Inscrivez-vous à notre newsletter!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_baca087296e01b5d69799dd53bcd7950'] = 'Recevez des offres spéciales de nos partenaires!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_af0f5bdc5be121b9307687aeeae38c17'] = 'Adresse de livraison';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Entreprise';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_7cb32e708d6b961d476baced73d362bb'] = 'Numéro de TVA';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Numéro d\'identification';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_846a54955f32846032981f8fe48c35ff'] = 'Adresse (Ligne 2)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_e4eb5dadb6ee84c5c55a8edf53f6e554'] = 'Zip / code postal';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_57d056ed0984166336b7879c2af3657f'] = 'Ville';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_59716c97497eb9694541f7c3d37b1a4d'] = 'Pays';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_46a2a41cc6e552044816a2d04634545d'] = 'État';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_41c2fff4867cc204120f001e7af20f7a'] = 'Téléphone portable';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Mon adresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_aee0c5ed0554d46465080ed36d1d93ab'] = 'Vous êtes priés d\'utiliser une autre adresse pour la facture';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_601d8c4b9f72fc1862013c19b677a499'] = 'Adresse de facturation';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_0f68b904e33d9ac04605aecc958bcf52'] = 'Information additionnelle';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_eeabead01c6c6f25f22bf0b041df58a9'] = 'Vous devez inscrire au moins un numéro de téléphone.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_fe66abce284ec8589e7d791185b5c442'] = 'Téléphone fixe';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_2eac22e71eedb5bdb8f94a1354964017'] = 'Mon adresse de facturation';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_19f823c6453c2b1ffd09cb715214813d'] = 'Champs requis';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_7e0bf6d67701868aac3116ade8fea957'] = 'Passer à la caisse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Vos informations personnelles';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_f430bd2f85c4424dabd003de2ddf370c'] = '(Cinq caractères minimum)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_1011bae349c34405e0c47931fc7ef8ad'] = 'Renseignements sur votre entreprise';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_85fb93a8ee9440499692da24a1621769'] = 'APE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_15bbb9d0bbf25e8d2978de1168c749dc'] = 'site Web';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_455175f3f5be6306247babb349c0515a'] = 'Votre adresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d83893e5c6dab1264313e6a0bc77814b'] = 'Adresse municipale, boîte postale, nom de l\'entreprise, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_261ed9f602d575774ae05f2d9f3003da'] = 'Appartement, suite, unité, immeuble, étage, etc ...';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d973a0b6f38ebe7c83094d3dc4e04ae5'] = 'Attribuer un alias d\'adresse pour référence future.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_c773457e85b990c10f8823eacb21346c'] = 'Identification fiscale';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_0ba7583639a274c434bbe6ef797115a4'] = 'Registre';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contacter';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_2273d1167a6212812d95dc8fadbae78e'] = 'Service clients';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_d754a9e8cb640da12849a040f3ca8176'] = 'Votre réponse';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_02d4482d332e1aef3437cd61c9bcc624'] = 'Contactez nous';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_4ec1c39345fe8820d68463eea8803b0f'] = 'Votre message a été envoyé avec succès à notre équipe.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Votre message a déjà été envoyé.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_0880266daff3ed4c441adb888658c47c'] = 'Pour des questions sur une commande ou pour plus d\'informations sur nos produits';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_b3e4d8d61f99bac80e6aa1774d73445b'] = 'envoyez un message';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Titre d\'objet';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_7bc873cba11f035df692c3549366c722'] = '-- Choisissez --';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_b357b524e740bc85b9790a0712d84a30'] = 'Adresse email';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_5d4710f9a8250b13164a82c94d5b00d1'] = 'Référence de commande';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_deb10517653c255364175796ace3553f'] = 'Produit';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_13d6078da2e6592822ede083931d6826'] = 'Pièce jointe';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Message';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_94966d90747b97d1f0f206c98a8b1ac3'] = 'Envoyer';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contacter';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_2273d1167a6212812d95dc8fadbae78e'] = 'Service clients';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_d754a9e8cb640da12849a040f3ca8176'] = 'Votre réponse';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_02d4482d332e1aef3437cd61c9bcc624'] = 'Contactez nous';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_4ec1c39345fe8820d68463eea8803b0f'] = 'Votre message a été envoyé avec succès à notre équipe.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Votre message a déjà été envoyé.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_b3e4d8d61f99bac80e6aa1774d73445b'] = 'envoyez un message';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Titre d\'objet';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_7bc873cba11f035df692c3549366c722'] = '-- Choisissez --';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_b357b524e740bc85b9790a0712d84a30'] = 'Adresse email';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_5d4710f9a8250b13164a82c94d5b00d1'] = 'Référence de commande';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_deb10517653c255364175796ace3553f'] = 'Produit';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_13d6078da2e6592822ede083931d6826'] = 'Pièce jointe';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Message';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_94966d90747b97d1f0f206c98a8b1ac3'] = 'Envoyer';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_f787618e514c038851726224d7e4421e'] = 'Aucun fichier sélectionné';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_e635032a5f71d809146d3872389f5b0c'] = 'Choisir le fichier';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_c75f7811d70d17dbcd88e9d03752cbed'] = 'Authentification';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_0fb655f37529ad006eb0d503e23e10f1'] = 'Mot de passe oublié';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Mot de passe oublié?';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_f15b7d9b716da1d46ba073df11d4a8d0'] = 'Votre mot de passe a été réinitialisé avec succès et un message de confirmation a été envoyé à votre adresse email:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_8859f6ab28ba3d2384b269bcfa36ac33'] = 'Un e-mail de confirmation a été envoyé à votre adresse:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_ad6de86f2f344d447d78a139fc16bd72'] = 'Veuillez entrer l\'adresse email que vous avez utilisée pour vous inscrire. Nous vous enverrons alors un nouveau mot de passe.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Récupérer mot de passe';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_d28f8b8bba7b45bc5103b23b4f21b4fd'] = 'Retour à la page de connexion';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Retour à la page de connexion';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_c75f7811d70d17dbcd88e9d03752cbed'] = 'Authentification';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_0fb655f37529ad006eb0d503e23e10f1'] = 'Mot de passe oublié';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Mot de passe oublié?';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_f15b7d9b716da1d46ba073df11d4a8d0'] = 'Votre mot de passe a été réinitialisé avec succès et un message de confirmation a été envoyé à votre adresse email:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_8859f6ab28ba3d2384b269bcfa36ac33'] = 'Un e-mail de confirmation a été envoyé à votre adresse:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_ad6de86f2f344d447d78a139fc16bd72'] = 'Veuillez entrer l\'adresse email que vous avez utilisée pour vous inscrire. Nous vous enverrons alors un nouveau mot de passe.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_b357b524e740bc85b9790a0712d84a30'] = 'Adresse email';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Récupérer mot de passe';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Retour à la page de connexion';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_952998528c20798fbd22b49d505a29d5'] = 'Pas de compte? En créer un ici';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_ffb7e666a70151215b4c55c6268d7d72'] = 'Bulletin d\'information';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_d8335f4a5d918134bd0bdc47cc487d74'] = 'Entrer votre e-mail';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_a60852f204ed8028c1c58808b746d115'] = 'OK';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_590b7aefc83952e3483c5168bf93e19f'] = 'Bulletin d\'information: %1$s';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_c3f204190e5261d4996203bfb65f2bbf'] = 'Entrer le code de sécurité';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_00f26302f753ea4871b7634a6d025bf9'] = 'Vérification de sécurité';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_792bb28aea0e109daf741be7eb18ec87'] = 'Code de sécurité';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_46017c210d1eb8c92f27a120f66b88f5'] = 'Actualiser le code';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_c7892ebbb139886662c6f2fc8c450710'] = 'Objet';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_863cf84b34def228394c03c156bff42c'] = 'Choisir une référence';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_d57c24f3fe52d16e7169b912dd647f0d'] = 'optionnel';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_e9cb217697088a98b1937d111d936281'] = 'Attachement';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_8307fac59310d028334df0306c7b29ad'] = 'Comment pouvons nous aider?';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_693821e0c4c75a22d5d676b17d959fbd'] = 'Toutes nos félicitations! Vous avez installé CAPTCHA avec succès.';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_9fbda4cdb6e48cd943d8145dd46ed38a'] = 'Cependant, il y a quelques fichiers / fonctions qui n\'ont pas pu être outrepasser au cours du processus d\'installation (ils peuvent avoir déjà été outrepasser par un autre module).';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_2c21c8b77bf8c4f887c33d9ceea01bb2'] = 'Veuillez vérifier le journal d\'installation ci-dessous et copier manuellement les fichiers/fonctions du répertoire \"root/modules/ ets_advancedcaptcha/override/\" dans \"root/override\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_fb7cf841fadf8c3cecdf69472ef22ee6'] = 'pour vous assurer que toutes les fonctionnalités de CAPTCHA fonctionnent correctement';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_f3c7d1cc2ddc07eda0354425587155ed'] = 'Oui, j\'ai résolu tous ces problèmes';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_c634989bb927efd5ef52614b816a3603'] = 'Effacer les journaux d\'installation';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_3ee469fc0fc8fe57fcc2f6531b5d52f5'] = 'Le module a été installé avec succès avec des avertissements.';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_d9de4361d04dfb5ab29b8709bbda368e'] = 'Voir le journal d\'installation';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_aa1bd5f519ab14f86f361eadafc95d60'] = 'Effacer les journaux d\'installation';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_546e02eaa9a986c83cc347e273269f2c'] = 'Prévenez-moi lorsque disponible';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_61172eb93737ebf095d3fa02119ce1df'] = 'Demander une notification enregistrée';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_bb51a155575b81f4a07f7a9bafdc3b01'] = 'Vous avez déjà une alerte pour ce produit';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_900f8551b29793ecb604a545b2059cc1'] = 'Votre adresse email est invalide';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_c17cdefce20006896c0a2e93d92b5780'] = 'Le code de sécurité ne correspond pas';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_f28d8a87d03470521d5a992312bfaed8'] = 'Veuillez entrer l\'adresse email que vous avez utilisée pour vous inscrire. Vous recevrez un lien temporaire pour réinitialiser votre mot de passe.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_b357b524e740bc85b9790a0712d84a30'] = 'Adresse email';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_733ae3eecadd5777cea5ce9a32379d7a'] = 'Envoyer le lien de réinitialisation';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_94966d90747b97d1f0f206c98a8b1ac3'] = 'Envoyer';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailalerts_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailalerts_546e02eaa9a986c83cc347e273269f2c'] = 'Prévenez-moi lorsque disponible';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_3805f49499fa5010c394e219aa1fe7a0'] = 'Recevez nos dernières nouvelles et nos soldes spéciaux';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_b26917587d98330d93f87808fc9d7267'] = 'Souscrire';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_e0aa021e21dddbd6d8cecec71e9cf564'] = 'OK';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_198584454b0ce1101ff5b50323325aa8'] = 'Votre adresse email';

View File

@@ -0,0 +1,5 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_89f77b1e0d19b59b23d1188444c6bd58'] = 'Advanced Captcha';

View File

@@ -0,0 +1,36 @@
<?php
/*
* 2007-2015 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2014 PrestaShop SA
* @version Release: $Revision$
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,271 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a25d543a829360720d0ec51459af4ecb'] = 'CAPTCHA - reCAPTCHA';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_990fb6c1dfe456679bcd021a28239395'] = 'Proteggi il tuo negozio da messaggi spam e account utente spam';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8754deb65786fd1e1d11ea74e14ca401'] = 'Formulario di contatto (consigliato)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_33c5f5fcb8db1b4a3df14b292ec2276c'] = 'Formulario di registrazione (consigliato)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8e756404c01867410817b8601522e88c'] = 'Formulario di accesso';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8eedac63fc2e736390628b44e72235bc'] = 'Formulario di iscrizione alla newsletter';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_3a7c0048cef206ad4517d81c2c031a11'] = 'Formulario di avviso \"Non disponibile\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_153861e7e767d27b86e885eebe8c4ce9'] = 'Formulario di \"Hai dimenticato la password\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_01e0d3d9b7918d8f8303cdbe854e0854'] = 'Google reCAPTCHA - V2';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a42b5277c055969d9d81f2a78b8d8255'] = 'Google reCAPTCHA - V3';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_fe9d4bb267833901ff567c9f4c121fd8'] = 'Immagine captcha - Livello facile';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c2159565060f8c29897aa59d680b500a'] = 'Immagine captcha - Livello medio';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_1f11bfae9fea929f1d458f6c9128c088'] = 'Immagine captcha - Livello difficile';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_6d0f7399b7148acf667c711098ba42c6'] = 'Seleziona i formulario per abilitare captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b5dc2b9afce2aae2c1439c2f6432ceaa'] = 'Tipo di captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_f75d8fa5c89351544d372cf90528ccf2'] = 'Chiave del sito';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_952bf87c967660b7bbd4e1eb08cefc92'] = 'Chiave segreta';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8e5163b4c6e431b882e6a0a22ede9686'] = 'Disabilita il modello sovrascrive il Formulario di contatto';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_fe4bf79e2bbd2d073eba9384b3f536f6'] = 'Abilita questo per usare il file \"contact-form.tpl\" del tuo tema (mantieni il design del tuo formulario di contatto personalizzato e la sua traduzione). Dovrai aggiungere MANUALMENTE un gancio personalizzato al tuo file \"contact-form.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c23533cfd4bd461c1e815d9f24c6be76'] = 'Disabilita il modello sovrascrive il Formulario di accesso';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e143561a518c39e105f36e164e89c8cc'] = 'Abilita questo per usare il file \"authentication.tpl\" del tuo tema (mantieni il tuo formulario di login personalizzato e la sua traduzione). Dovrai aggiungere MANUALMENTE un gancio personalizzato al tuo file \"authentication.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a188dc237d4a8cb6dbccac52bbf83bd2'] = 'Disabilita il modello sovrascrive il Formulario di \"Hai dimenticato la password\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_64fd8b676cb9f21e9282138316a18729'] = 'Abilita questo per usare il file \"password.tpl\" del tuo tema (mantieni il design del formulario di recupero password personalizzato e la sua traduzione). Dovrai aggiungere MANUALMENTE un gancio personalizzato al tuo file \"password.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cfb4d67a83df0b2b432838ab4efab3ea'] = 'Disabilitare captcha per il cliente registrato';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_4b501b4ef189ad9f2e214021ccf465d1'] = 'Lista nera IP (IP da bloccare)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b7494ae582beb21869a9791f4a89d01e'] = 'Immettere il modello IP o IP esatto usando \"*\", ogni modello IP / IP su una linea. Ad esempio: 69.89.31.226, 69.89.31.*, *.226, ecc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_097f029a2226830a6c5e24bf779854f4'] = 'Email lista nera (email da bloccare)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cf9c777d477c76e0ae00ae187d90d294'] = 'Inserisci l\'indirizzo email o il modello di email esatti utilizzando \"*\", ogni modello di email / email su una riga. Ad esempio: esempio@mail.ru, *@mail.ru, *@qq.com, ecc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Tutte le categorie';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a08e5170f1ac13ffbc4470b546443ac5'] = 'Indispensabile';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d9d7f6dc5cec2d96fdbdc731ee91f547'] = 'Download';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_276ee9e858f36e807d934b922a21a98d'] = 'Visualizza tutti i nostri moduli';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b548e7fcbe083ebbbb369960bfb0e9a0'] = 'Il preferito di Prestashop';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ea18b0b61adc5f34ddc205cdaa344ee3'] = 'Eletto dai nostri mercanti';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d91586ce336b874e8b4e6b1fb6731628'] = 'Superhero Seller';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e46c3fa146c7cecb1162ceeef0435e94'] = 'Partner creatore moduli';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_02d4482d332e1aef3437cd61c9bcc624'] = 'Contattare';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d3d2e617335f08df83599665eef8a418'] = 'Chiudere';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_0a5fa53f3f20f67f98bd6c3b16df059d'] = 'è obbligatorio';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_998b344cff693ad388a14ba89b1523c7'] = 'è invalido';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ce2e0cc716345556d10b6fbe440c9461'] = 'Impostazioni captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_93cba07454f06a4a960172bbd6e2a435'] = 'Sì';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e267e2be02cf3e29f4ba53b5d97cf78a'] = 'Invalid email address.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_3dc245110e1f3601860c20299d97c01d'] = 'Il messaggio non può essere vuoto.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_dd6b089a49908d671c3e9cc8dc5899ae'] = 'Messaggio non valido';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_79cedb1d1acf680c3dba79dc679aa249'] = 'Si prega di selezionare un oggetto dall\'elenco fornito.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ee9f24e2aebc1da18ffd88823144437b'] = 'Si è verificato un errore durante il processo di caricamento del file.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d1a9295d276a65933e0a7334a12e6f41'] = 'Estensione del file errata';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_881ae7c0ea0a71b12b4548d4268464f7'] = 'Si è verificato un errore durante l\'invio del messaggio.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_7ad37a0cdc30db30a8fad3f70cf13e95'] = 'Il tuo messaggio è stato inviato correttamente #ct%s #tc%s';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d40cb87db94e750405e7b20a8a043d81'] = 'Il tuo messaggio è stato inviato correttamente';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_9e03c4150db1c72add84ba520ee589aa'] = 'Messaggio dal modulo di contatto';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_4ec1c39345fe8820d68463eea8803b0f'] = 'Il tuo messaggio è stato inviato con successo al nostro team.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8c9414ba184a5621b6ab3dfb83035330'] = 'reCaptcha non è valido.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_223275d99df70b71b661be04425ebff2'] = 'Errore di reCaptcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c3425b76d3bb7cc86b3f001cfd5002a9'] = '404 non trovato!';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c17cdefce20006896c0a2e93d92b5780'] = 'Il codice di sicurezza non corrisponde';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_63ac9e3d526ef75f2631e906a54935bd'] = 'Il tuo IP è bloccato. Contatta il webmaster per maggiori informazioni.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_41462b55098d976cde2ed281c19c3d93'] = 'La tua email è bloccata. Contatta il webmaster per maggiori informazioni.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_9b3f521316fcfbd252a342f9054d2fc1'] = 'il file (%s) non è scrivibile';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_45e26faecce815f7e1ac16b32ac5278e'] = 'Il metodo %1$s nella classe %2$s è già sovrascritto dal modulo %3$s versione %4$s alle %5$s.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_03c32a7a2568d41e186d59293b02f662'] = 'Il metodo %1$s nella classe %2$s è già sottoposto a override.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_71bf68c93ca29a72a3a5080a30e20ecc'] = 'Impossibile eseguire l\'override del metodo %1$s nella classe %2$s.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cd17ff91a33a993ca0ff4552a99684f6'] = 'la directory (%s) non è scrivibile';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_715eafb80fc4c2e5251a46012b0ef9e4'] = 'Altri moduli';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_c4086ec40444dc78cf96bb5599f6a402'] = 'Realizzato da ETS-Soft';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Sì';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_28d499881d3b82fbb5f073e324505725'] = 'Come ottenere la chiave del sito e la chiave segreta?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_99dea78007133396a7b8ed70578ac6ae'] = 'Accesso';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_bffe9a3c9a7e00ba00a11749e022d911'] = 'Accesso';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_2fdfd506efea08144c0794c32ca8250a'] = 'Crea un account';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_cb430603758e73c64b8e1fef814b0be0'] = 'C\'è almeno un errore';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_59ba30f362294e33f80618c601fd2801'] = 'Ci sono %s errori';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_07b66aebbc092434ec2f0558f229ad53'] = 'Inserisci il tuo indirizzo email per creare un account.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b357b524e740bc85b9790a0712d84a30'] = 'Indirizzo email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_db879b00e657fc85f7873343f11df21c'] = 'Già registrato?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_dc647eb65e6711e155375218212b3964'] = 'Password';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Hai dimenticato la password?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Checkout immediato';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b78a3223503896721cca1303f776159b'] = 'Titolo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_20db0bfeecd8fe60533206a2b5e9891a'] = 'Nome di battesimo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_8d3f5eff9c40ee315d452392bed5309b'] = 'Cognome';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_10803b83a68db8f7e7a33e3b41e184d0'] = 'Data di nascita';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_93edfc7af9b6471b30030cf17646e36c'] = 'Iscriviti alla nostra newsletter!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_baca087296e01b5d69799dd53bcd7950'] = 'Ricevi le offerte speciali dai nostri partner!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_af0f5bdc5be121b9307687aeeae38c17'] = 'Indirizzo di consegna';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Azienda';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_7cb32e708d6b961d476baced73d362bb'] = 'Partita IVA';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_dd7bf230fde8d4836917806aff6a6b27'] = 'Indirizzo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d30f507473129e70c4b962ceccf175cf'] = 'Zip / Codice postale';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_57d056ed0984166336b7879c2af3657f'] = 'Città';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_59716c97497eb9694541f7c3d37b1a4d'] = 'Nazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_46a2a41cc6e552044816a2d04634545d'] = 'Stato';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_bcc254b55c4a1babdf1dcb82c207506b'] = 'Telefono';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Il mio indirizzo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_c773457e85b990c10f8823eacb21346c'] = 'Codice fiscale';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Numero identificativo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_19f823c6453c2b1ffd09cb715214813d'] = 'Campo obbligatorio';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_a0bfb8e59e6c13fc8d990781f77694fe'] = 'Continua';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Le tue informazioni personali';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_f430bd2f85c4424dabd003de2ddf370c'] = '(Minimo 5 caratteri)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_1011bae349c34405e0c47931fc7ef8ad'] = 'Informazioni sulla tua azienda';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_85fb93a8ee9440499692da24a1621769'] = 'APE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_15bbb9d0bbf25e8d2978de1168c749dc'] = 'Sito web';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_455175f3f5be6306247babb349c0515a'] = 'Il tuo indirizzo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d83893e5c6dab1264313e6a0bc77814b'] = 'Strada indirizzo, casella postale, nome dell\'azienda, ecc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_846a54955f32846032981f8fe48c35ff'] = 'Indirizzo (Linea 2)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_261ed9f602d575774ae05f2d9f3003da'] = 'Appartamento, suite, unità, edificio, piano, ecc ...';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_0f68b904e33d9ac04605aecc958bcf52'] = 'Informazioni aggiuntive';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_eeabead01c6c6f25f22bf0b041df58a9'] = 'Devi registrare almeno un numero di telefono.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_fe66abce284ec8589e7d791185b5c442'] = 'Telefono di casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_41c2fff4867cc204120f001e7af20f7a'] = 'Cellulare';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d973a0b6f38ebe7c83094d3dc4e04ae5'] = 'Assegnare un indirizzo alternativo per referenze future.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_0ba7583639a274c434bbe6ef797115a4'] = 'Registrare';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_c75f7811d70d17dbcd88e9d03752cbed'] = 'Autenticazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_5bef23eb7efff2736c5583bda59e5eb7'] = 'Crea il tuo account';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_2fdfd506efea08144c0794c32ca8250a'] = 'Crea un account';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_cb430603758e73c64b8e1fef814b0be0'] = 'C\'è almeno un errore';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_59ba30f362294e33f80618c601fd2801'] = 'Ci sono %s errori';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_07b66aebbc092434ec2f0558f229ad53'] = 'Inserisci il tuo indirizzo email per creare un account.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b357b524e740bc85b9790a0712d84a30'] = 'Indirizzo email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_db879b00e657fc85f7873343f11df21c'] = 'Già registrato?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_dc647eb65e6711e155375218212b3964'] = 'Password';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_57478054ae00730105f1bfe535b2225e'] = 'Recupera la tua password dimenticata';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Hai dimenticato la password?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b6d4223e60986fa4c9af77ee5f7149c5'] = 'Registrati';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Checkout immediato';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b78a3223503896721cca1303f776159b'] = 'Titolo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_20db0bfeecd8fe60533206a2b5e9891a'] = 'Nome di battesimo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_8d3f5eff9c40ee315d452392bed5309b'] = 'Cognome';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_10803b83a68db8f7e7a33e3b41e184d0'] = 'Data di nascita';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_93edfc7af9b6471b30030cf17646e36c'] = 'Iscriviti alla nostra newsletter!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_baca087296e01b5d69799dd53bcd7950'] = 'Ricevi le offerte speciali dai nostri partner!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_af0f5bdc5be121b9307687aeeae38c17'] = 'Indirizzo di consegna';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Azienda';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_7cb32e708d6b961d476baced73d362bb'] = 'Partita IVA';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Numero identificativo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_dd7bf230fde8d4836917806aff6a6b27'] = 'Indirizzo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_846a54955f32846032981f8fe48c35ff'] = 'Indirizzo (Linea 2)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_e4eb5dadb6ee84c5c55a8edf53f6e554'] = 'Zip / Codice postale';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_57d056ed0984166336b7879c2af3657f'] = 'Città';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_59716c97497eb9694541f7c3d37b1a4d'] = 'Nazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_46a2a41cc6e552044816a2d04634545d'] = 'Stato';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_41c2fff4867cc204120f001e7af20f7a'] = 'Cellulare';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Il mio indirizzo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_aee0c5ed0554d46465080ed36d1d93ab'] = 'Si prega di utilizzare un altro indirizzo per la fattura';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_601d8c4b9f72fc1862013c19b677a499'] = 'Indirizzo di fatturazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_0f68b904e33d9ac04605aecc958bcf52'] = 'Informazioni aggiuntive';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_eeabead01c6c6f25f22bf0b041df58a9'] = 'Devi registrare almeno un numero di telefono.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_fe66abce284ec8589e7d791185b5c442'] = 'Telefono di casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_2eac22e71eedb5bdb8f94a1354964017'] = 'Il mio indirizzo di fatturazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_19f823c6453c2b1ffd09cb715214813d'] = 'Campo obbligatorio';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_7e0bf6d67701868aac3116ade8fea957'] = 'Procedere al checkout';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Le tue informazioni personali';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_f430bd2f85c4424dabd003de2ddf370c'] = '(Minimo 5 caratteri)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_1011bae349c34405e0c47931fc7ef8ad'] = 'Informazioni sulla tua azienda';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_85fb93a8ee9440499692da24a1621769'] = 'APE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_15bbb9d0bbf25e8d2978de1168c749dc'] = 'Sito web';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_455175f3f5be6306247babb349c0515a'] = 'Il tuo indirizzo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d83893e5c6dab1264313e6a0bc77814b'] = 'Strada indirizzo, casella postale, nome dell\'azienda, ecc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_261ed9f602d575774ae05f2d9f3003da'] = 'Appartamento, suite, unità, edificio, piano, ecc ...';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d973a0b6f38ebe7c83094d3dc4e04ae5'] = 'Assegnare un indirizzo alternativo per referenze future.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_c773457e85b990c10f8823eacb21346c'] = 'Codice fiscale';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_0ba7583639a274c434bbe6ef797115a4'] = 'Registrare';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contatto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_2273d1167a6212812d95dc8fadbae78e'] = 'Assistenza clienti';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_d754a9e8cb640da12849a040f3ca8176'] = 'La tua risposta';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_02d4482d332e1aef3437cd61c9bcc624'] = 'Contattaci';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_4ec1c39345fe8820d68463eea8803b0f'] = 'Il tuo messaggio è stato inviato con successo al nostro team.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_8cf04a9734132302f96da8e113e80ce5'] = 'Casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Il tuo messaggio è già stato inviato.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_0880266daff3ed4c441adb888658c47c'] = 'Per domande su un ordine o per ulteriori informazioni sui nostri prodotti';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_b3e4d8d61f99bac80e6aa1774d73445b'] = 'invia un messaggio';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Titolo argomento';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_7bc873cba11f035df692c3549366c722'] = '-- Scegli --';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_b357b524e740bc85b9790a0712d84a30'] = 'Indirizzo email';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_5d4710f9a8250b13164a82c94d5b00d1'] = 'Riferenza dell\'ordine';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_deb10517653c255364175796ace3553f'] = 'Prodotto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_13d6078da2e6592822ede083931d6826'] = 'Allega file';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Messaggio';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_94966d90747b97d1f0f206c98a8b1ac3'] = 'Inviare';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contatto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_2273d1167a6212812d95dc8fadbae78e'] = 'Assistenza clienti';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_d754a9e8cb640da12849a040f3ca8176'] = 'La tua risposta';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_02d4482d332e1aef3437cd61c9bcc624'] = 'Contattaci';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_4ec1c39345fe8820d68463eea8803b0f'] = 'Il tuo messaggio è stato inviato con successo al nostro team.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_8cf04a9734132302f96da8e113e80ce5'] = 'Casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Il tuo messaggio è già stato inviato.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_b3e4d8d61f99bac80e6aa1774d73445b'] = 'invia un messaggio';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Titolo argomento';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_7bc873cba11f035df692c3549366c722'] = '-- Scegli --';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_b357b524e740bc85b9790a0712d84a30'] = 'Indirizzo email';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_5d4710f9a8250b13164a82c94d5b00d1'] = 'Riferenza dell\'ordine';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_deb10517653c255364175796ace3553f'] = 'Prodotto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_13d6078da2e6592822ede083931d6826'] = 'Allega file';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Messaggio';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_94966d90747b97d1f0f206c98a8b1ac3'] = 'Inviare';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_f787618e514c038851726224d7e4421e'] = 'Nessun file selezionato';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_e635032a5f71d809146d3872389f5b0c'] = 'Scegli il file';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_c75f7811d70d17dbcd88e9d03752cbed'] = 'Autenticazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_0fb655f37529ad006eb0d503e23e10f1'] = 'Hai dimenticato la password';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Hai dimenticato la password?';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_f15b7d9b716da1d46ba073df11d4a8d0'] = 'La tua password è stata resettata con successo e un messaggio di conferma è stato inviato al tuo indirizzo email:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_8859f6ab28ba3d2384b269bcfa36ac33'] = 'Una email di conferma è stata inviata al tuo indirizzo:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_ad6de86f2f344d447d78a139fc16bd72'] = 'Inserisci l\'indirizzo email che hai usato per registrarti. Ti invieremo quindi una nuova password.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Recupera password';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_d28f8b8bba7b45bc5103b23b4f21b4fd'] = 'Torna al login';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Torna al login';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_c75f7811d70d17dbcd88e9d03752cbed'] = 'Autenticazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_0fb655f37529ad006eb0d503e23e10f1'] = 'Hai dimenticato la password';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Hai dimenticato la password?';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_f15b7d9b716da1d46ba073df11d4a8d0'] = 'La tua password è stata resettata con successo e un messaggio di conferma è stato inviato al tuo indirizzo email:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_8859f6ab28ba3d2384b269bcfa36ac33'] = 'Una email di conferma è stata inviata al tuo indirizzo:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_ad6de86f2f344d447d78a139fc16bd72'] = 'Inserisci l\'indirizzo email che hai usato per registrarti. Ti invieremo quindi una nuova password.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_b357b524e740bc85b9790a0712d84a30'] = 'Indirizzo email';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Recupera password';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Torna al login';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_952998528c20798fbd22b49d505a29d5'] = 'Nessun account? Creane uno qui';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_ffb7e666a70151215b4c55c6268d7d72'] = 'Newsletter';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_d8335f4a5d918134bd0bdc47cc487d74'] = 'Inserisci il tuo indirizzo email';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_a60852f204ed8028c1c58808b746d115'] = 'OK';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_590b7aefc83952e3483c5168bf93e19f'] = 'Newsletter: %1$s';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_c3f204190e5261d4996203bfb65f2bbf'] = 'Inserisci il codice di sicurezza';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_00f26302f753ea4871b7634a6d025bf9'] = 'Controllo di sicurezza';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_792bb28aea0e109daf741be7eb18ec87'] = 'Codice di sicurezza';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_46017c210d1eb8c92f27a120f66b88f5'] = 'Aggiorna il codice';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_c7892ebbb139886662c6f2fc8c450710'] = 'Oggetto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_863cf84b34def228394c03c156bff42c'] = 'Seleziona riferimento';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_d57c24f3fe52d16e7169b912dd647f0d'] = 'opzionale';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_e9cb217697088a98b1937d111d936281'] = 'Attaccamento';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_8307fac59310d028334df0306c7b29ad'] = 'Come possiamo aiutare?';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_693821e0c4c75a22d5d676b17d959fbd'] = 'Congratulazioni! Hai installato CAPTCHA con successo.';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_9fbda4cdb6e48cd943d8145dd46ed38a'] = 'Tuttavia, alcuni file / funzioni potrebbero non essere sovrascritti durante il processo di installazione (potrebbero essere già stati sovrascritti da un altro modulo).';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_2c21c8b77bf8c4f887c33d9ceea01bb2'] = 'Controlla il registro di installazione qui sotto e copia manualmente i file/funzioni dalla directory \"root/modules/ets_advancedcaptcha/override/\" a \"root/override\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_fb7cf841fadf8c3cecdf69472ef22ee6'] = 'per assicurarti che tutte le funzionalità del CAPTCHA funzionino correttamente';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_f3c7d1cc2ddc07eda0354425587155ed'] = 'Sì, ho risolto tutti questi problemi';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_c634989bb927efd5ef52614b816a3603'] = 'Cancella i registri di installazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_3ee469fc0fc8fe57fcc2f6531b5d52f5'] = 'Il modulo è stato installato con successo con avvisi.';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_d9de4361d04dfb5ab29b8709bbda368e'] = 'Visualizza il registro di installazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_aa1bd5f519ab14f86f361eadafc95d60'] = 'Cancella i registri di installazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_546e02eaa9a986c83cc347e273269f2c'] = 'Avvisami quando disponibile';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_61172eb93737ebf095d3fa02119ce1df'] = 'Richiesta di notifica registrata';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_bb51a155575b81f4a07f7a9bafdc3b01'] = 'Hai già un avviso per questo prodotto';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_900f8551b29793ecb604a545b2059cc1'] = 'Il tuo indirizzo e-mail non è valido';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_c17cdefce20006896c0a2e93d92b5780'] = 'Il codice di sicurezza non corrisponde';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_f28d8a87d03470521d5a992312bfaed8'] = 'Inserisci l\'indirizzo email che hai usato per registrarti. Riceverai un link temporaneo per reimpostare la tua password.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_b357b524e740bc85b9790a0712d84a30'] = 'Indirizzo email';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_733ae3eecadd5777cea5ce9a32379d7a'] = 'Invia link di reset';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_94966d90747b97d1f0f206c98a8b1ac3'] = 'Inviare';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailalerts_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailalerts_546e02eaa9a986c83cc347e273269f2c'] = 'Avvisami quando disponibile';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_3805f49499fa5010c394e219aa1fe7a0'] = 'Ricevi le nostre ultime notizie e le nostre vendite speciali';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_b26917587d98330d93f87808fc9d7267'] = 'Sottoscrivi';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_e0aa021e21dddbd6d8cecec71e9cf564'] = 'OK';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_198584454b0ce1101ff5b50323325aa8'] = 'Il tuo indirizzo di posta elettronica';

View File

@@ -0,0 +1,61 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_6649ded611214e4c775c4b46a11eec24'] = 'セキュリティコードが合いません。';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_bca966736b402a44d44b2ce42a3dd694'] = 'セキュリティチェックに失敗しました';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a7fffe14bef94e441a5f8548e9cd129d'] = 'reCaptchaが無効です';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_bbaff12800505b22a853e8b7f4eb6a22'] = '接触';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_2273d1167a6212812d95dc8fadbae78e'] = '顧客サービス';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_d754a9e8cb640da12849a040f3ca8176'] = 'あなたの返信';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_02d4482d332e1aef3437cd61c9bcc624'] = 'お問い合わせ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_4ec1c39345fe8820d68463eea8803b0f'] = 'あなたのメッセージが正常に我々のチームに送信されました。';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_8cf04a9734132302f96da8e113e80ce5'] = 'ホーム';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_7c9d4636fc5ed97bb78bc2aac486beab'] = 'あなたのメッセージはすでに送信されています。';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_b3e4d8d61f99bac80e6aa1774d73445b'] = 'メッセージを送ります';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_6c27c08f40e1b0d9901deb9ff5f722f7'] = '件名見出し';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_7bc873cba11f035df692c3549366c722'] = '- 選択 - ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_b357b524e740bc85b9790a0712d84a30'] = '電子メールアドレス';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_5d4710f9a8250b13164a82c94d5b00d1'] = '注文の参照';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_deb10517653c255364175796ace3553f'] = '製品';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_13d6078da2e6592822ede083931d6826'] = 'ファイルを添付する';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'メッセージ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_94966d90747b97d1f0f206c98a8b1ac3'] = '送信';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_f787618e514c038851726224d7e4421e'] = 'ファイルが選択されていません';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_e635032a5f71d809146d3872389f5b0c'] = 'ファイルを選ぶ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_bbaff12800505b22a853e8b7f4eb6a22'] = '接触';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_2273d1167a6212812d95dc8fadbae78e'] = '顧客サービス';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_d754a9e8cb640da12849a040f3ca8176'] = 'あなたの返信 ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_02d4482d332e1aef3437cd61c9bcc624'] = 'お問い合わせ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_4ec1c39345fe8820d68463eea8803b0f'] = 'あなたのメッセージが正常に我々のチームに送信されました。';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_8cf04a9734132302f96da8e113e80ce5'] = 'ホーム';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_7c9d4636fc5ed97bb78bc2aac486beab'] = 'あなたのメッセージはすでに送信されています。';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_0880266daff3ed4c441adb888658c47c'] = '注文や当社製品に関する詳細についての質問';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_b3e4d8d61f99bac80e6aa1774d73445b'] = 'メッセージを送ります';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_6c27c08f40e1b0d9901deb9ff5f722f7'] = '件名見出し';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_7bc873cba11f035df692c3549366c722'] = '- 選択 - ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_b357b524e740bc85b9790a0712d84a30'] = '電子メールアドレス';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_5d4710f9a8250b13164a82c94d5b00d1'] = '注文の参照';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_deb10517653c255364175796ace3553f'] = '製品';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_13d6078da2e6592822ede083931d6826'] = 'ファイルを添付する';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'メッセージ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_94966d90747b97d1f0f206c98a8b1ac3'] = '送信';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_02d4482d332e1aef3437cd61c9bcc624'] = 'お問い合わせ';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_c7892ebbb139886662c6f2fc8c450710'] = '件名';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_b357b524e740bc85b9790a0712d84a30'] = '電子メールアドレス';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_5d4710f9a8250b13164a82c94d5b00d1'] = '注文の参照';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_863cf84b34def228394c03c156bff42c'] = 'リファレンスを選択';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_d57c24f3fe52d16e7169b912dd647f0d'] = 'オプション';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_e9cb217697088a98b1937d111d936281'] = 'アタッチメント';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'メッセージ';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_8307fac59310d028334df0306c7b29ad'] = 'どのように我々は助けることができます?';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_c3f204190e5261d4996203bfb65f2bbf'] = 'セキュリティコードを入力';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_00f26302f753ea4871b7634a6d025bf9'] = 'セキュリティーチェック';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_792bb28aea0e109daf741be7eb18ec87'] = 'セキュリティコード';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_46017c210d1eb8c92f27a120f66b88f5'] = 'コードをリフレッシュする';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_94966d90747b97d1f0f206c98a8b1ac3'] = '送信';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_c3f204190e5261d4996203bfb65f2bbf'] = 'セキュリティコードを入力';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_00f26302f753ea4871b7634a6d025bf9'] = 'セキュリティーチェック';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_792bb28aea0e109daf741be7eb18ec87'] = 'セキュリティコード';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_46017c210d1eb8c92f27a120f66b88f5'] = 'コードをリフレッシュする';

View File

@@ -0,0 +1,5 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_89f77b1e0d19b59b23d1188444c6bd58'] = 'Advanced Captcha';

View File

@@ -0,0 +1,5 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_89f77b1e0d19b59b23d1188444c6bd58'] = 'Advanced Captcha';

View File

@@ -0,0 +1,5 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_89f77b1e0d19b59b23d1188444c6bd58'] = 'Advanced Captcha';

View File

@@ -0,0 +1,5 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_89f77b1e0d19b59b23d1188444c6bd58'] = 'Advanced Captcha';

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;
?>

View File

@@ -0,0 +1,54 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
if (!defined('_PS_VERSION_'))
exit;
function upgrade_module_1_0_9($object)
{
$res = $object->registerHooks() && $object->installConfig(true);
/*updateValue position*/
$positions = array();
if (Configuration::get('PA_CAPTCHA_CONTACT'))
$positions[] = 'contact';
if (Configuration::get('PA_CAPTCHA_REGISTRATION'))
$positions[] = 'register';
$res &= Configuration::updateValue('PA_CAPTCHA_POSITION', ($positions? implode(',', $positions) : 'register,contact'), true);
/*updateValue override template contact form*/
if (($contact = Configuration::get('PA_CAPTCHA_OVERRIDES')))
Configuration::updateValue('PA_CAPTCHA_TMP_CONTACT', $contact);
/*update Override*/
if ($object->getOverrides() != null)
{
$object->uninstallOverrides();
try {
$object->installOverrides();
} catch (Exception $e) {
$object->_errors[] = $e->getMessage();
}
if (!$object->_errors)
$res &= true;
}
return $res;
}

View File

@@ -0,0 +1,275 @@
.ets_pa_item .radio {
display: inline-block;
}
.ets_pa_item .radio label {
display: flex;
align-items: center;
}
.ets_pa_item .radio label * {
margin-right: 10px;
}
.pa_wrapper_content.is15 .defaultForm legend {
display: none;
}
.pa_wrapper_content .panel-heading {
min-height: 56px;
margin-bottom: 30px!important;
display: flex;
display: -webkit-flex;
align-items: center;
-webkit-align-items: center;
font-size: 18px!important;
}
#content.bootstrap .tab-content.panel {
border: 1px solid #e6e6e6;
border-radius: 0 0 3px 3px;
}
.bootstrap .help-block {
color: #777;
font-size: 13px;
}
.row_pa_captcha_type .ets_pa_options li.ets_pa_item {
margin-bottom: 10px;
}
.row_pa_captcha_type .ets_pa_options li.ets_pa_item label[for="PA_CAPTCHA_TYPE_colorful"] img,
.row_pa_captcha_type .ets_pa_options li.ets_pa_item label[for="PA_CAPTCHA_TYPE_basic"] img,
.row_pa_captcha_type .ets_pa_options li.ets_pa_item label[for="PA_CAPTCHA_TYPE_complex"] img{
border: 1px solid #eee;
}
td .hidden-google-captcha {
padding-left: 17px;
}
td > .hidden-google-captcha label {
text-align: left;
}
td > .hidden-google-captcha input {
width: 100%;
}
td > #module_form_submit_btn {
margin-top: 10px;
}
#captcha .help-block {
max-width: 510px;
}
.avc_button_help{
margin: 0 10px 0 0!important;
}
ul.ets_pa_options {
padding-left: 10px;
list-style: none;
}
.pa_captcha_log_install h4 {
text-align: center;
font-family: Arial;
font-size: 24px !important;
}
.pa_captcha_log_install {
font-size: 18px;
font-family: Arial;
color: #3a6b1f !important;
border: 1px solid #609d3f !important;
background-color: #d8eace !important;
padding-top: 30px !important;
padding-bottom: 30px !important;
margin: 30px 0 !important;
}
.pa_captcha_log_install .pa_captcha_logs.alert-warning {
margin: 30px 0 20px;
padding: 10px 30px;
line-height: 27px;
font-size: 14px;
color: #967800;
}
.pa_captcha_log_install > .pa_captcha_view_log, .pa_captcha_log_install > .pa_captcha_clear_log {
display: block;
margin-top: 5px;
text-decoration: underline;
}
.pa_captcha_log_install > .pa_captcha_view_log {
margin-top: 15px;
}
.pa_captcha_log_actions #pa_captcha_button_yes {
background-color: #3a6b1f;
border: 1px solid #3a6b1f;
font-size: 18px;
font-family: Arial;
text-transform: none;
padding: 5px 20px;
height: 40px;
display: inline-block;
border-radius: 5px;
}
.pa_captcha_log_actions #pa_captcha_button_yes:hover{
background-color: #4d9028;
}
.pa_captcha_log_install h4::before {
content: "\f058";
font-size: 30px;
font-family: Fontawesome;
margin-right: 10px;
vertical-align: -1px;
line-height: 23px;
display: inline-block;
}
.pa_captcha_log_install:before{
display: none!important;
}
.pa_captcha_log_actions #pa_captcha_clear_log {
background-color: #967800;
color: #fff;
border-radius: 5px;
height: 40px;
font-size: 18px;
padding: 5px 20px;
display: inline-block;
border: 1px solid #967800;
margin: 0 5px;
}
.pa_captcha_log_actions #pa_captcha_clear_log:hover{
background-color: #bf9a06;
}
.pa_captcha_log_actions {
text-align: center;
display: block;
margin-top: 30px;
}
.row_pa_captcha_help h3 {
margin-top: 10px!important;
text-transform: uppercase;
font-weight: 600;
font-size: 16px!important;
border-bottom: none!important;
padding-left: 0!important;
border-top: 1px solid #eee!important;
padding-top: 10px!important;
height: auto!important;
text-shadow: none!important;
font-family: Open sans;
margin-left: 0!important;
position: relative;
margin-right: 0!important;
}
.row_pa_captcha_help ul img {
display: block;
margin: 15px 0;
border: 1px solid #eee;
}
.pa_wrapper_content ul.nav.nav-tabs li:first-child a:before {
content: "\f013";
font-family: Fontawesome;
display: inline-block;
margin-right: 5px;
}
.pa_wrapper_content ul.nav.nav-tabs li:last-child a[data-toggle="tab"]:before {
content: "\f059";
font-family: Fontawesome;
display: inline-block;
margin-right: 5px;
}
.row_pa_captcha_help ul {
border: 1px solid #eee;
padding: 20px;
list-style: none;
margin: 0!important;
}
.row_pa_captcha_help {
line-height: 28px;
font-size: 13px;
}
.is15 .ets_pa_options label {
width: auto;
float: none;
margin-bottom: 5px;
display: inline-block;
}
.is15 input + label {
width: auto;
float: none;
}
.is15 input#module_form_submit_btn {
height: 35px;
padding: 0 15px;
margin-top: 15px;
}
.is15 ul.ets_pa_options {
padding-left: 0;
list-style: none;
}
.is15 .row_pa_google_captcha_site_key input,
.is15 .row_pa_google_captcha_secret_key input {
height: 22px;
width: 350px;
max-width: calc(100% - 15px);
max-width: -webkit-calc(100% - 15px);
}
.is15 label[for="PA_CAPTCHA_TYPE_colorful"] img,
.is15 label[for="PA_CAPTCHA_TYPE_basic"] img,
.is15 label[for="PA_CAPTCHA_TYPE_complex"] img,
.is15 label[for="PA_CAPTCHA_TYPE_google"] img {
vertical-align: -10px;
margin-left: 5px;
}
.is15 .tab-content.panel {
border: 1px solid #ccc;
clear: both;
background-color: #fff;
padding: 20px 15px;
display: flex;
display: -webkit-flex;
}
.is15 .tab-content.panel > div.active {
display: block!important;
}
.is15 .tab-content.panel > div {
display: none!important;
}
.is15 .tab-content.panel #help {
float: none;
border: none;
width: 1170px;
margin: 0 auto;
max-width: 100%;
padding: 0 15px;
}
.is15 ul.nav.nav-tabs a {
padding: 12px 15px;
display: block;
margin-right: 0px;
}
.is15 ul.nav.nav-tabs li {
display: inline-block;
border: 1px solid #ccc;
float: left;
margin-bottom: -1px;
margin-right: -1px;
}
.is15 ul.nav.nav-tabs li.active {
background-color: #fff;
border-bottom: 1px solid #fff;
}
@media (max-width: 767px){
.bootstrap > .bootstrap.panel {
min-width: 550px;
}
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,165 @@
.pa-captcha-field-row{
margin-bottom: 7px;
}
#pa_captcha_refesh img{
width: 20px;
height: 20px;
}
#pa_captcha_refesh{
display: inline-block;
margin-left: 5px;
cursor: pointer;
margin-right: 5px;
}
.ps_v_15 .pa-captcha-field-cell{
display: inline-block;
width: 270px;
}
.ps_v_15 .pa_captcha_img {
float: left;
margin-bottom: 10px;
width: 100%;
}
.captcha_pwd_recovery.pwd_recovery.page_password.ver17 .pa_captcha_img {
margin-left: 15px;
}
.captcha_pwd_recovery.pwd_recovery.page_password.ver17 {
margin: 0;
}
.captcha_pwd_recovery:not(.ver17) label {
width: 100%;
}
.captcha_pwd_recovery:not(.ver17) .pa-captcha-inf {
clear: both;
width: 100%;
}
.ps_v_15 .pa_captcha_img_data{
float: left;
}
.quickview .captcha_out_of_stock .pa-captcha-inf input.form-control {
width: auto;
display: inline-block;
width: 150px;
}
.ps_v_15 #pa_captcha_refesh{
float: left;
margin-top: 4px;
}
.page_registration.ps_v_15{
background: none repeat scroll 0 0 #F8F8F8;
border: 1px solid #CCCCCC;
padding: 15px 0!important;
margin-bottom: 20px!important;
}
input[name="captcha"] {
display: none;
}
div.form-group.row #pa_captcha,.pa-captcha-field-row #pa_captcha {
margin-top: 1rem;
}
.pa_captcha_img + input {
display: inline-block;
width: 100px!important;
margin-left: 0;
float: left;
max-height: 35px;
height: 35px;
min-width: 50px!important;
}
span.pa_captcha_img {
display: inline-block;
margin-bottom: 5px;
float: left;
}
.captcha_newsletter {
clear: both;
display: block;
padding-top: 10px;
margin: 0;
}
.captcha_newsletter .pa-captcha-inf {
width: 100%;
}
.captcha_newsletter > label.col-md-3 {
width: 100%;
text-align: left;
}
.captcha_out_of_stock label {
width: 100%;
text-align: left;
}
.captcha_out_of_stock .pa-captcha-inf {
width: 100%;
}
.ver15 span.pa-captcha-inf {
width: calc(100% - 115px);
width: -webkit-calc(100% - 115px);
margin-left: 5px;
}
.captcha_login.page_authentication.ver15,
p.captcha_contact.page_contact.ver15,
p.captcha_register.page_authentication.ver15 {
display: flex;
display: -webkit-flex;
}
.ver15 #pa_captcha_refesh {
margin-left: 5px;
margin-right: 5px;
}
.ver15.captcha_register span.pa-captcha-inf {
width: calc(100% - 240px);
width: -webkit-calc(100% - 240px);
margin-left: 5px;
}
.ver15.captcha_contact span.pa-captcha-inf {
width: calc(100% - 185px);
width: -webkit-calc(100% - 185px);
margin-left: 5px;
}
.ver15 .pa_captcha_img + input {
height: 35px!important;
border: 1px solid #ccc;
margin-left: 0;
box-sizing: border-box;
clear: both;
width: 148px!important;
}
.ver15.captcha_register .pa_captcha_img + input{
clear: none!important
}
.captcha_contact.form-group.page_contact.ver16 {
margin: 0;
}
.captcha_contact.form-group.page_contact.ver16 label {
width: 100%;
}
.captcha_login.form-group.ver16 label,
.captcha_register.form-group.ver16 label {
width: 100%;
padding: 0;
}
article.alert.alert-info,
article.alert.alert-danger {
margin-top: 10px;
}
.captcha_contact.form-group.page_contact.ver16 .pa-captcha-inf,
.captcha_login.form-group.ver16 .pa-captcha-inf,
.captcha_register.form-group.ver16 .pa-captcha-inf{
padding: 0;
width: 100%;
}
.page_contact.ver16 .pa_captcha_img + input,
.captcha_login.ver16 .pa_captcha_img + input,
.captcha_register.ver16 .pa_captcha_img + input {
margin-left: 0;
height: 35px;
width: 150px!important;
max-width: 100%;
}
.captcha_register.form-group.page_authentication.ver16 {
margin-left: 0!important;
margin-right: 0!important;
}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,904 @@
.ets-mod{
background: #fff;
padding: 0;
}
.ets-mod.hidden,li.hidden{
display: none!important;
}
.ets-mod-cats > li.active{
font-weight: bold;
}
.ets-mod {
position: fixed!important;
bottom: 0;
overflow: auto;
}
.ets-mod, .ets-mod * {
box-sizing: border-box;
}
.ets-mod-header {
display: flex;
display: -webkit-flex;
align-items: center;
-webkit-align-items: center;
padding: 40px 0 30px;
margin-left: -15px;
margin-right: -15px;
}
.ets-mod-logo img {
max-width: 100%;
}
.ets-mod-cats_mobile{
display: none;
}
a.ets-mod-external-link.btn {
background: #E22B8C;
width: 100%;
display: block;
clear: both;
text-align: center;
color: #fff;
text-decoration: none!important;
font-size: 18px;
padding: 10px;
margin-bottom: 20px;
border-radius: 4px;
transition: all 0.2s;
-webkit-transition: all 0.2s;
}
a.ets-mod-external-link.btn:hover {
background: #ca3282;
}
.ets-mod-close {
position: absolute;
right: 10px;
top: 6px;
font-size: 0;
cursor: pointer;
width: 30px;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
height: 30px;
}
.ets-mod-close:hover:after,
.ets-mod-close:hover:before{
background: #555;
}
.ets-mod-close:after {
content: "";
width: 27px;
top: 50%;
left: 50%;
height: 1px;
background: #999;
display: inline-block;
transform: translate3d(-50%,-50%,0);
-webkit-transform: translate3d(-50%,-50%,0);
position: absolute;
}
.ets-mod-close:before {
content: "";
height: 27px;
width: 1px;
background: #999;
display: inline-block;
transform: translate3d(-50%,-50%,0);
-webkit-transform: translate3d(-50%,-50%,0);
top: 50%;
position: absolute;
left: 50%;
}
.ets-mod-external {
clear: both;
padding-left: 15px;
padding-right: 15px;
}
.ets-mod-intro {
padding: 0 30px;
font-size: 14px;
line-height: 1.7;
width: 60%;
}
.ets-mod-logo {
width: 25%;
padding: 0 15px;
}
.mod-footer > .mod-price:first-child {
width: 100%;
text-align: right;
justify-content: flex-end;
-webkit-justify-content: flex-end;
}
.ets-badge-partner span,
.ets-badge-superhero span {
text-align: center;
display: block;
font-size: 14px;
}
.ets-badge-superhero {
width: 100px;
}
.ets-badge-partner {
max-width: 121px;
padding: 0 10px;
text-align: center;
}
.mod-desc {
display: block;
position: relative;
overflow: hidden;
float: left;
width: 100%;
margin-bottom: 14px;
min-height: 123px;
}
.loading-modules:before {
content: "";
background-color: rgba(255,255,255,0.9);
position: fixed;
left: 0;
width: 100%;
bottom: 0;
z-index: 90000000;
height: 100%;
}
.loading-modules:after {
content: "";
width: 60px;
height: 60px;
border-radius: 50%;
border-left: 2px solid #ff008d;
border-top: 2px solid transparent;
border-bottom: 2px solid transparent;
border-right: 2px solid #ff008d;
position: fixed;
left: 50%;
top: 50%;
visibility: visible;
opacity: 1;
margin-left: -30px;
margin-top: -30px;
z-index: 99000000;
animation: loading 0.5s infinite linear;
-webkit-animation: loading 0.5s infinite linear;
}
@keyframes loading {
0% {
transform: rotate(0deg);
-webkit-transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes loading {
0% {
transform: rotate(0deg);
-webkit-transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
}
}
.ets-mod-badges img {
margin: 0 15px;
}
.ets-mod-badges {
display: flex;
display: -webkit-flex;
}
.li_othermodules {
background: #ff2ea0!important;
color: orange!important;
position: absolute!important;
right: 0!important;
top: 0!important;
display: flex;
border-top-right-radius: 4px;
display: -webkit-flex;
align-items: center;
box-shadow: 0 0 10px 0 #999 inset;
-webkit-box-shadow: 0 0 10px 0 #888 inset;
transition: all 0.3s;
-webkit-transition: all 0.3s;
outline: none!important;
}
.li_othermodules:hover {
background: #e62790!important;
}
.li_othermodules a span {
position: relative;
display: block;
text-align: center;
}
.li_othermodules .tab-title {
display: block;
text-align: center;
text-transform: uppercase;
font-size: 16px;
font-weight: 500;
line-height: 1;
margin-bottom: 2px;
position: relative;
}
.ets-mod-left {
padding: 0 15px;
width: 25%;
}
ul.ets-mod-cats {
list-style: none;
background: #f3f3f3;
padding: 20px 25px;
border: 1px solid #ddd;
border-radius: 4px;
margin-top: 15px;
display: block;
width: 100%;
max-width: 100%;
}
.mod-badge{
background-image: url(../img/other/module-editor.png);
min-height: 30px;
background-position: 5px center;
background-repeat: no-repeat;
text-align: center;
align-items: center;
background-size: 30px;
display: flex;
display: -webkit-flex;
padding-left: 40px;
margin: -10px auto 10px;
font-size: 13px;
color: #333;
width: 195px;
max-width: 100%;
}
.ets-mod-left:not(.scroll_heading) ul.ets-mod-cats{
width: 100%!important;
}
.mod-badge.fav {
background-image: url(../img/other/awards-toconvert.png);
}
.mod-badge.elected {
background-image: url(../img/other/module-editor.png);
width: 190px;
}
.mod-download {
background-image: url(../img/other/badges-s3e73c0c3f1.png);
min-height: 30px;
display: flex;
display: -webkit-flex;
background-position: 4px -491px;
background-repeat: no-repeat;
padding-left: 38px;
align-items: center;
width: 150px;
margin: 0 auto 10px;
font-size: 13px;
}
.ets-mod-cats li {
line-height: 1.4;
font-size: 14px;
cursor: pointer;
padding: 6px 0;
}
.ets-mod-cats li:hover {
color: #E22B8C;
}
ul.ets-mod-list li.mod-item {
width: 33.33%;
padding: 0 15px;
float: left;
margin-bottom: 30px;
}
ul.ets-mod-list {
padding: 0;
list-style: none;
display: flex;
display: -webkit-flex;
flex-wrap: wrap;
-webkit-flex-wrap: wrap;
width: 100%;
float: left;
margin-top: 15px;
}
.mod-rating:before {
content: "\f006 \f006 \f006 \f006 \f006";
font-family: Fontawesome,sans-serif;
letter-spacing: 3px;
color: orange;
}
.mod-rating.mod-start-1:before{
content:"\f005 \f006 \f006 \f006 \f006";
}
.mod-rating.mod-start-15:before{
content:"\f005 \f123 \f006 \f006 \f006";
}
.mod-rating.mod-start-2:before{
content:"\f005 \f005 \f006 \f006 \f006";
}
.mod-rating.mod-start-25:before{
content:"\f005 \f005 \f123 \f006 \f006";
}
.mod-rating.mod-start-3:before{
content:"\f005 \f005 \f005 \f006 \f006";
}
.mod-rating.mod-start-35:before{
content:"\f005 \f005 \f005 \f123 \f006";
}
.mod-rating.mod-start-4:before{
content:"\f005 \f005 \f005 \f005 \f006";
}
.mod-rating.mod-start-45:before{
content:"\f005 \f005 \f005 \f005 \f123";
}
.mod-rating.mod-start-5:before{
content:"\f005 \f005 \f005 \f005 \f005";
}
span.mod-price-dec {
vertical-align: top;
}
span.mod-price-int, .mod-price-unit {
font-size: 18px;
color: #261c59;
}
span.mod-price-dec{
color: #261c59;
}
.mod-rating {
vertical-align: middle;
display: flex;
display: -webkit-flex;
align-items: center;
-webkit-align-items: center;
}
ul.ets-mod-list li.mod-item > a {
border: 1px solid #ddd;
text-align: center;
display: block;
padding: 20px 15px 60px;
position: relative;
border-radius: 4px;
width: 100%;
color: #333;
text-decoration: none;
}
.mod-must-have {
position: absolute;
top: 25px;
right: -5px;
background: #E22B8C;
color: #fff;
padding: 5px 10px;
font-size: 12px;
}
.mod-must-have:before {
content: "";
position: absolute;
border-left: 5px solid #9a0300;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
top: 100%;
margin-top: -5px;
right: 0;
}
.mod-price {
display: flex;
display: -webkit-flex;
}
.mod-must-have:after {
content: "";
position: absolute;
bottom: 0;
margin-top: -5px;
right: 0;
background: #E02B8C;
width: 5px;
height: 5px;
}
.mod-footer {
margin-left: 0;
border-top: 1px solid #ddd;
margin-right: 0;
display: flex;
justify-content: space-between;
padding: 15px;
margin-top: 20px;
position: absolute;
bottom: 0;
right: 0;
left: 0;
}
ul.ets-mod-list li.mod-item {
width: 33.33%;
padding: 0 15px;
float: left;
margin-bottom: 30px;
display: flex;
}
.mod-footer {
border-top: 1px solid #ddd;
display: flex;
justify-content: space-between;
padding: 8px 15px;
margin-top: 0;
}
.mod-image {
margin-bottom: 12px;
margin-top: 5px;
}
.ets-mod-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
.mod-title {
font-size: 16px;
left: 0;
color: #261c59;
font-weight: normal;
overflow: hidden;
margin-bottom: 15px;
min-height: 44px;
}
.other-modules-loaded {
overflow: hidden;
}
.ets-mod-right {
width: 75%;
position: relative;
}
.ets-mod-inner .ets-body {
display: flex;
display: -webkit-flex;
margin-left: -15px;
margin-right: -15px;
}
.ets-mod-contact {
position: fixed;
width: 76px;
height: 76px;
background: #E22B8C;
bottom: 60px;
z-index: 10;
border-radius: 50%;
text-align: center;
color: #fff;
right: 60px;
display: flex;
display: -webkit-flex;
justify-content: center;
-webkit-justify-content: center;
align-items: center;
-webkit-align-items: center;
}
.ets-mod-contact:hover {
background: #ca3282;
}
.ets-mod-contact a.mod-link {
color: #fff;
line-height: 1;
font-size: 10px;
clear: both;
font-weight: 600;
display: block;
text-decoration: none;
box-shadow: none;
padding: 16px 12px;
white-space: nowrap;
border: none;
position: relative;
z-index: 100;
border-radius: 50%;
}
.ets-mod-contact a.mod-link::before {
position: relative;
display: block;
margin-bottom: 4px;
content: "\f003";
font-family: Fontawesome, sans-serif;
font-size: 30px;
font-weight: normal;
-webkit-animation: alo-circle-img-anim 1s infinite ease-in-out;
-moz-animation: alo-circle-img-anim 1s infinite ease-in-out;
-o-animation: alo-circle-img-anim 1s infinite ease-in-out;
animation: alo-circle-img-anim 1s infinite ease-in-out;
margin-top: 0;
}
@-moz-keyframes alo-circle-img-anim {
0% {
transform: rotate(0) scale(1) skew(1deg)
}
10% {
transform: rotate(-25deg) scale(1) skew(1deg)
}
20% {
transform: rotate(25deg) scale(1) skew(1deg)
}
30% {
transform: rotate(-25deg) scale(1) skew(1deg)
}
40% {
transform: rotate(25deg) scale(1) skew(1deg)
}
50% {
transform: rotate(0) scale(1) skew(1deg)
}
100% {
transform: rotate(0) scale(1) skew(1deg)
}
}
@-webkit-keyframes alo-circle-img-anim {
0% {
transform: rotate(0) scale(1) skew(1deg)
}
10% {
transform: rotate(-25deg) scale(1) skew(1deg)
}
20% {
transform: rotate(25deg) scale(1) skew(1deg)
}
30% {
transform: rotate(-25deg) scale(1) skew(1deg)
}
40% {
transform: rotate(25deg) scale(1) skew(1deg)
}
50% {
transform: rotate(0) scale(1) skew(1deg)
}
100% {
transform: rotate(0) scale(1) skew(1deg)
}
}
@-o-keyframes alo-circle-img-anim {
0% {
transform: rotate(0) scale(1) skew(1deg)
}
10% {
transform: rotate(-25deg) scale(1) skew(1deg)
}
20% {
transform: rotate(25deg) scale(1) skew(1deg)
}
30% {
transform: rotate(-25deg) scale(1) skew(1deg)
}
40% {
transform: rotate(25deg) scale(1) skew(1deg)
}
50% {
transform: rotate(0) scale(1) skew(1deg)
}
100% {
transform: rotate(0) scale(1) skew(1deg)
}
}
@keyframes alo-circle-img-anim {
0% {
transform: rotate(0) scale(1) skew(1deg)
}
10% {
transform: rotate(-25deg) scale(1) skew(1deg)
}
20% {
transform: rotate(25deg) scale(1) skew(1deg)
}
30% {
transform: rotate(-25deg) scale(1) skew(1deg)
}
40% {
transform: rotate(25deg) scale(1) skew(1deg)
}
50% {
transform: rotate(0) scale(1) skew(1deg)
}
100% {
transform: rotate(0) scale(1) skew(1deg)
}
}
.ets-mod-list .mod-link:hover {
box-shadow: 0 4px 8px 1px #ece9e9;
-webkit-box-shadow: 0 4px 8px 1px #ece9e9;
border: solid 1px #d2d2d2;
}
.li_othermodules a {
color: #ffdd02!important;
font-size: 13px;
padding: 10px 20px 15px 85px;
top: 0;
background-image: url(../img/other/ets-superhero-2.png);
background-position: 10px 5px;
background-repeat: no-repeat;
background-size: 70px;
font-family: Open sans,sans-serif;
height: 55px;
text-decoration: none!important;
outline: none!important;
}
.cfu-top-menu li:not(.active) a.link_othermodules:hover:before{
display:none;
}
@-moz-keyframes alo-circle-fill-anim {
0% {
transform: rotate(0) scale(.7) skew(1deg);
opacity: .2
}
50% {
transform: rotate(0) scale(1) skew(1deg);
opacity: .2
}
100% {
transform: rotate(0) scale(.7) skew(1deg);
opacity: .2
}
}
@-webkit-keyframes alo-circle-fill-anim {
0% {
transform: rotate(0) scale(.7) skew(1deg);
opacity: .2
}
50% {
transform: rotate(0) scale(1) skew(1deg);
opacity: .2
}
100% {
transform: rotate(0) scale(.7) skew(1deg);
opacity: .2
}
}
@-o-keyframes alo-circle-fill-anim {
0% {
transform: rotate(0) scale(.7) skew(1deg);
opacity: .2
}
50% {
transform: rotate(0) scale(1) skew(1deg);
opacity: .2
}
100% {
transform: rotate(0) scale(.7) skew(1deg);
opacity: .2
}
}
@keyframes alo-circle-fill-anim {
0% {
transform: rotate(0) scale(.7) skew(1deg);
opacity: .2
}
50% {
transform: rotate(0) scale(1) skew(1deg);
opacity: .2
}
100% {
transform: rotate(0) scale(.7) skew(1deg);
opacity: .2
}
}
@-moz-keyframes alo-circle-anim {
0% {
transform: rotate(0) scale(.5) skew(1deg);
opacity: .1
}
30% {
transform: rotate(0) scale(.7) skew(1deg);
opacity: .5
}
100% {
transform: rotate(0) scale(1) skew(1deg);
opacity: .1
}
}
@-webkit-keyframes alo-circle-anim {
0% {
transform: rotate(0) scale(.5) skew(1deg);
opacity: .1
}
30% {
transform: rotate(0) scale(.7) skew(1deg);
opacity: .5
}
100% {
transform: rotate(0) scale(1) skew(1deg);
opacity: .1
}
}
@-o-keyframes alo-circle-anim {
0% {
transform: rotate(0) scale(.5) skew(1deg);
opacity: .1
}
30% {
transform: rotate(0) scale(.7) skew(1deg);
opacity: .5
}
100% {
transform: rotate(0) scale(1) skew(1deg);
opacity: .1
}
}
@keyframes alo-circle-anim {
0% {
transform: rotate(0) scale(.5) skew(1deg);
opacity: .1
}
30% {
transform: rotate(0) scale(.7) skew(1deg);
opacity: .5
}
100% {
transform: rotate(0) scale(1) skew(1deg);
opacity: .1
}
}
.ets-mod-contact:after {
width: 160px;
height: 160px;
left: -45px;
top: -45px;
position: absolute;
content: "";
background-color: transparent;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
border: 2px solid rgba(30, 30, 30, 0.4);
border: 2px solid #dc9abd;
opacity: .5;
-webkit-animation: alo-circle-anim 1.2s infinite ease-in-out;
-moz-animation: alo-circle-anim 1.2s infinite ease-in-out;
-ms-animation: alo-circle-anim 1.2s infinite ease-in-out;
-o-animation: alo-circle-anim 1.2s infinite ease-in-out;
animation: alo-circle-anim 1.2s infinite ease-in-out;
-webkit-transition: all .5s;
-moz-transition: all .5s;
-o-transition: all .5s;
transition: all .5s;
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
.ets-mod-contact::before {
position: absolute;
display: inline-block;
content: "";
font-size: 30px;
-webkit-animation: alo-circle-fill-anim 1s infinite ease-in-out;
-moz-animation: alo-circle-fill-anim 1s infinite ease-in-out;
-o-animation: alo-circle-fill-anim 1s infinite ease-in-out;
animation: alo-circle-fill-anim 1s infinite ease-in-out;
left: -10px;
top: -10px;
right: -10px;
border-radius: 50%;
bottom: -10px;
background: #E22B8C;
}
@media (min-width: 1200px){
.ets-mod-left.scroll_heading ul.ets-mod-cats {
position: fixed;
top: 0;
}
}
@media (max-width: 767px){
ul.ets-mod-list li.mod-item {
width: 50%;
}
.ets-mod-left {
width: 100%;
}
.ets-mod-inner .ets-body {
flex-wrap: wrap;
-webkit-flex-wrap: wrap;
}
.ets-mod-right {
width: 100%;
margin-top: 30px;
}
.ets-mod-header {
flex-wrap: wrap;
}
.ets-mod-intro {
width: calc(100% - 220px);
width: -webkit-calc(100% - 220px);
padding: 0 20px;
}
.ets-mod-badges {
width: 220px;
}
.ets-mod-logo {
margin-bottom: 15px;
width: 100%;
}
.ets-mod-cats_mobile {
display: block;
}
.ets-mod-cats_mobile h4 {
list-style: none;
background: #f3f3f3;
padding: 20px 25px;
border: 1px solid #ddd;
border-radius: 0;
display: block;
width: 100%;
max-width: 100%;
font-size: 14px;
margin: 0 0 -1px;
cursor: pointer;
}
ul.ets-mod-cats {
border-radius: 0;
display: none;
}
.ets-mod-cats_mobile h4:after {
content: "";
border-left: 2px solid #333;
border-bottom: 2px solid #333;
width: 6px;
height: 6px;
border-bottom-left-radius: 2px;
display: inline-block;
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
margin-left: 8px;
vertical-align: 2px;
}
ul.ets-mod-cats.active {
display: block;
}
.ets-mod-cats_mobile{
display: block;
}
.li_othermodules .tab-title{
white-space: nowrap;
}
.pa_wrapper_content {
min-width: 550px;
}
}
@media (max-width: 500px){
ul.ets-mod-list li.mod-item {
width: 100%;
}
.ets-mod-left {
padding: 0 15px;
width: 100%;
}
.ets-mod-inner .ets-body {
flex-wrap: wrap;
}
.ets-mod-right {
width: 100%;
position: relative;
margin-top: 30px;
}
.ets-mod-intro {
width: 100%;
margin-bottom: 20px;
}
.ets-badge-partner {
max-width: none;
padding: 0 15px;
}
.ets-badge-superhero {
width: auto;
padding: 0 15px;
}
.ets-mod-badges {
width: 100%;
text-align: center;
}
.ets-mod-logo {
margin-bottom: 15px;
}
}

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 434 KiB

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

Binary file not shown.

After

Width:  |  Height:  |  Size: 559 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

Binary file not shown.

After

Width:  |  Height:  |  Size: 479 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,104 @@
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
var func_pa = {
renderTabs: function () {
if (typeof helper_config_tabs != 'undefined' && typeof unique_config_field_id != 'undefined') {
$.each(helper_config_tabs, function (index) {
$('#' + unique_config_field_id + 'fieldset_' + index + ' .form-wrapper').prepend('<div class="tab-content panel" />');
$('#' + unique_config_field_id + 'fieldset_' + index + ' .form-wrapper').prepend('<ul class="nav nav-tabs" />');
$.each(helper_config_tabs[index], function (key, value) {
$('#' + unique_config_field_id + 'fieldset_' + index + ' .tab-content').append('<div id="' + key + '" class="tab-pane" />');
var elemts = $('#' + unique_config_field_id + 'fieldset_' + index).find("[data-tab-id='" + key + "']");
$(elemts).appendTo('#' + key);
if (elemts.length != 0)
$('#' + unique_config_field_id + 'fieldset_' + index + ' .nav-tabs').append('<li><a href="#' + key + '" data-toggle="tab">' + value + '</a></li>');
});
$('#' + unique_config_field_id + 'fieldset_' + index + ' .tab-content div').first().addClass('active');
$('#' + unique_config_field_id + 'fieldset_' + index + ' .nav-tabs li').first().addClass('active');
});
}
},
captchaType: function (val) {
if (val == 'google' || ($('#PA_CAPTCHA_TYPE_google').length > 0 && $('#PA_CAPTCHA_TYPE_google').is(':checked'))) {
$('.row_pa_google_captcha_site_key, .row_pa_google_captcha_secret_key').show();
$('.row_pa_google_v3_captcha_site_key, .row_pa_google_v3_captcha_secret_key').hide();
} else if (val == 'google' || ($('#PA_CAPTCHA_TYPE_google_v3').length > 0 && $('#PA_CAPTCHA_TYPE_google_v3').is(':checked'))) {
$('.row_pa_google_v3_captcha_site_key, .row_pa_google_v3_captcha_secret_key').show();
$('.row_pa_google_captcha_site_key, .row_pa_google_captcha_secret_key').hide();
} else {
$('.row_pa_google_captcha_site_key, .row_pa_google_captcha_secret_key,.row_pa_google_v3_captcha_site_key, .row_pa_google_v3_captcha_secret_key').hide();
}
},
disableOverride: function () {
if ($('#PA_CAPTCHA_POSITION_contact').length > 0 && $('#PA_CAPTCHA_POSITION_contact').is(':checked')) {
$('.row_pa_captcha_tmp_contact').show();
} else if ($('#PA_CAPTCHA_POSITION_contact').length > 0) {
$('.row_pa_captcha_tmp_contact').hide();
func_pa.prop('#PA_CAPTCHA_TMP_CONTACT', false, true);
}
if ($('#PA_CAPTCHA_POSITION_login').length > 0 && $('#PA_CAPTCHA_POSITION_login').is(':checked')) {
$('.row_pa_captcha_tmp_login').show();
} else if ($('#PA_CAPTCHA_POSITION_login').length > 0) {
$('.row_pa_captcha_tmp_login').hide();
func_pa.prop('#PA_CAPTCHA_TMP_LOGIN', false, true);
}
if ($('#PA_CAPTCHA_POSITION_pwd_recovery').length > 0 && $('#PA_CAPTCHA_POSITION_pwd_recovery').is(':checked')) {
$('.row_pa_captcha_tmp_re_password').show();
} else if ($('#PA_CAPTCHA_POSITION_pwd_recovery').length > 0) {
$('.row_pa_captcha_tmp_re_password').hide();
func_pa.prop('#PA_CAPTCHA_TMP_RE_PASSWORD', false, true);
}
},
prop: function (uniqueId, on, off) {
if ($(uniqueId + '_on').length > 0) {
$(uniqueId + '_on').prop('checked', on);
}
if ($(uniqueId + '_off').length > 0) {
$(uniqueId + '_off').prop('checked', off);
}
},
}
$(document).ready(function () {
//init form.
func_pa.disableOverride();
func_pa.renderTabs();
func_pa.captchaType(false);
//event form.
$('input[name="PA_CAPTCHA_TYPE"]').change(function () {
func_pa.captchaType($(this).val());
});
$('input[id^="PA_CAPTCHA_POSITION"]').change(function () {
func_pa.disableOverride();
});
//tab ver15.
if (typeof pa_is15 !== "undefined" && pa_is15 && $('#fieldset_0 .nav-tabs li').length > 0) {
$('#fieldset_0 .nav-tabs li').click(function (e) {
e.preventDefault();
if (!$(this).hasClass('active')) {
$('#fieldset_0 .nav-tabs li').removeClass('active');
$(this).addClass('active');
$('#fieldset_0 .tab-content div').removeClass('active');
$($(this).find('a').attr('href')).addClass('active');
}
});
}
});

View File

@@ -0,0 +1,218 @@
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
var PA_GOOGLE_V3_CAPTCHA_SITE_KEY = PA_GOOGLE_V3_CAPTCHA_SITE_KEY || false;
var func_pa = {
addNotification: function () {
var ids = $('div.js-mailalert > input[type=hidden]');
var captchaParams = '';
if ($('div.js-mailalert textarea[name=g-recaptcha-response]').length > 0) {
captchaParams += '&g-recaptcha-response=' + $('div.js-mailalert textarea[name=g-recaptcha-response]').val();
} else if ($('div.js-mailalert input[name=pa_captcha]').length > 0) {
captchaParams += '&pa_captcha=' + $('div.js-mailalert input[name=pa_captcha]').val();
}
if ($('div.js-mailalert input[name=posTo]').length > 0) {
captchaParams += '&posTo=' + $('div.js-mailalert input[name=posTo]').val();
}
$.ajax({
type: 'POST',
url: $('div.js-mailalert').data('url'),
data: 'id_product=' + ids[0].value + '&id_product_attribute=' + ids[1].value + '&customer_email=' + $('div.js-mailalert > input[type=email]').val() + (captchaParams ? captchaParams : ''),
success: function (resp) {
resp = JSON.parse(resp);
$('div.js-mailalert > span').html('<article class="alert alert-' + (resp.error ? 'danger' : 'success') + '" role="alert" data-alert="' + (resp.error ? 'error' : 'success') + '">' + resp.message + '</article>').show();
if (!resp.error) {
$('div.js-mailalert > button').hide();
$('div.js-mailalert > input[type=email]').hide();
$('div.js-mailalert > #gdpr_consent').hide();
$('div.js-mailalert > .captcha_out_of_stock').hide();
}
if ($('div.js-mailalert input[name=pa_captcha]').length > 0) {
$('div.js-mailalert input[name=pa_captcha]').val('');
}
}
});
if ($('div.js-mailalert img.pa_captcha_img_data').length > 0) {
func_pa.refreshCaptcha($('div.js-mailalert img.pa_captcha_img_data').removeClass('loaded'));
} else {
func_pa.resetReCaptcha();
}
return false;
},
addNotification16: function () {
if ($('#oosHook .gdpr_hook.receive').length > 0 && !$('.pa_notify input[name=gdpr_accept]').is(':checked')) {
$('#pa_mailalert_link').prop('disabled', true);
return false;
}
if ($('#pa_oos_customer_email').val() == mailalerts_placeholder || (typeof mailalerts_url_add == 'undefined')) {
return false;
}
var captchaParams = '';
if ($('.pa_notify textarea[name=g-recaptcha-response]').length > 0) {
captchaParams += '&g-recaptcha-response=' + $('.pa_notify textarea[name=g-recaptcha-response]').val();
} else if ($('.pa_notify input[name=pa_captcha]').length > 0) {
captchaParams += '&pa_captcha=' + $('.pa_notify input[name=pa_captcha]').val();
}
if ($('.pa_notify input[name=posTo]').length > 0) {
captchaParams += '&posTo=' + $('.pa_notify input[name=posTo]').val();
}
$.ajax({
type: 'POST',
url: mailalerts_url_add,
data: 'id_product=' + id_product + '&id_product_attribute=' + $('#idCombination').val() + '&customer_email=' + $('#pa_oos_customer_email').val() + (captchaParams ? captchaParams : ''),
success: function (json) {
if (json == '-1') {
$('#pa_oos_customer_email_result').html(mailalerts_captcha_error);
$('#pa_oos_customer_email_result').css('color', 'red').show();
} else if (json == '1') {
$('#pa_mailalert_link, #pa_oos_customer_email, .pa_notify .page_product').hide();
$('#oosHook').find('#gdpr_consent').hide();
$('#pa_oos_customer_email_result').html(mailalerts_registered);
$('#pa_oos_customer_email_result').css('color', 'green').show();
} else if (json == '2') {
$('#pa_oos_customer_email_result').html(mailalerts_already);
$('#pa_oos_customer_email_result').css('color', 'red').show();
} else {
$('#pa_oos_customer_email_result').html(mailalerts_invalid);
$('#pa_oos_customer_email_result').css('color', 'red').show();
}
if ($('.pa_notify input[name=pa_captcha]').length > 0) {
$('.pa_notify input[name=pa_captcha]').val('');
}
}
});
if ($('.pa_notify img.pa_captcha_img_data').length > 0) {
func_pa.refreshCaptcha($('.pa_notify img.pa_captcha_img_data').removeClass('loaded'));
} else {
func_pa.resetReCaptcha();
}
return false;
},
refreshCaptcha: function (img) {
if (img.length && !img.hasClass('loaded')) {
var orgLink = img.attr('src');
var orgCode = img.attr('data-rand');
var rand = Math.random();
img.attr('src', orgLink.replace(orgCode, rand));
img.attr('data-rand', rand);
if (!img.hasClass('loaded')) {
img.addClass('loaded');
}
}
},
resetReCaptcha: function () {
if (typeof recaptchaWidgets !== "undefined" && typeof grecaptcha !== "undefined") {
for (var i = 0; i < recaptchaWidgets.length; i++) {
grecaptcha.reset(recaptchaWidgets[i]);
}
}
},
loadCaptcha: function () {
var img = $('.pa_captcha_img_data:not(.loaded)').first();
if (img.length > 0) {
img.load(function () {
if (!img.hasClass('loaded')) {
func_pa.refreshCaptcha(img);
}
if (img[0].complete && img.hasClass('loaded')) {
func_pa.loadCaptcha();
}
}).filter(function () {
return this.complete;
}).load();
}
},
loadReCaptchaV3: function (form) {
if ($('form:not(.g-loaded)').length <= 0 || !PA_GOOGLE_V3_CAPTCHA_SITE_KEY) {
return false;
}
var g_captcha = form.find('input[name=g-recaptcha-response]');
if (g_captcha.length > 0 && $('body').attr('id')) {
grecaptcha.ready(function () {
grecaptcha.execute(PA_GOOGLE_V3_CAPTCHA_SITE_KEY, {action: $('body').attr('id').replace(/(?=[^A-Za-z\_])([^A-Za-z\_])/g, '_')}).then(function (token) {
if (token) {
g_captcha.val(token);
form.addClass('g-loaded');
func_pa.loadReCaptchaV3($('form:not(.g-loaded)'));
}
});
});
}
}
}
$(document).ready(function () {
if (PA_GOOGLE_V3_CAPTCHA_SITE_KEY) {
func_pa.loadReCaptchaV3($('form:not(.g-loaded)'));
}
$('.pa_captcha_img_data.loaded').removeClass('loaded');
$(document).on('click', '#pa_captcha_refesh', function (e) {
e.preventDefault();
func_pa.refreshCaptcha($(this).parents('.pa_captcha_img').find('.pa_captcha_img_data').removeClass('loaded'));
$(this).parents('.pa-captcha-inf').find('input[name=pa_captcha]').val('');
});
$(document).on('keypress', '#pa_oos_customer_email', function (e) {
if (e.keyCode == 13) {
e.preventDefault();
func_pa.addNotification16();
}
});
});
document.addEventListener("DOMContentLoaded", function (event) {
if ($('.forgot-password').length > 0 && $('.login.page_order').length > 0) {
$('.forgot-password').before($('.login.page_order').clone(true).addClass('copy'));
$('.login.page_order:not(.copy)').detach();
} else
$('.login.page_order').detach();
if ($('.pa_captcha_img_data').length > 1) {
func_pa.loadCaptcha();
}
});
$(document).ajaxComplete(function (event, xhr, options) {
if ($('.quickview').length > 0 && typeof ets_captcha_load !== "undefined") {
ets_captcha_load($('.quickview'));
} else if ($('body#authentication').length > 0 && typeof options.data !== "undefined" && options.data.indexOf('SubmitCreate') != -1) {
var time_secs = 0, sec = 150;
var intervalSet = setInterval(function () {
time_secs += sec;
if ($('#account-creation_form.g-loaded').length <= 0) {
if (PA_GOOGLE_V3_CAPTCHA_SITE_KEY) {
func_pa.loadReCaptchaV3($('form:not(.g-loaded)'));
} else if (typeof ets_captcha_load !== "undefined") {
ets_captcha_load($('#account-creation_form').addClass('g-loaded'));
}
} else if (time_secs > sec * 10) {
clearInterval(intervalSet);
}
}, sec);
} else if (($('body#order-opc').length > 0 || $('body#orderopc').length > 0) && $('[name=g-recaptcha-response]').length > 0 && typeof options.data !== "undefined" && options.data.indexOf('submitAccount') != -1) {
if (PA_GOOGLE_V3_CAPTCHA_SITE_KEY) {
func_pa.loadReCaptchaV3($('form#new_account_form').removeClass('g-loaded'));
} else if (typeof grecaptcha !== "undefined") {
grecaptcha.reset();
}
}
});
$(document).ready(function () {
if ($('input[name="captcha"]').parent().parent().length && $('.captcha_register').length) {
var div_clone = $('input[name="captcha"]').parent().parent().clone();
$('input[name="captcha"]').parent().parent().hide();
$('.captcha_register.register').after(div_clone);
}
});

View File

@@ -0,0 +1,36 @@
<?php
/*
* 2007-2015 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2014 PrestaShop SA
* @version Release: $Revision$
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,109 @@
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <contact@etssoft.net>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
$(document).on('click','.link_othermodules',function(){
if($('.ets-mod').length > 0)
{
$('.ets-mod').removeClass('hidden');
$('body').addClass('other-modules-loaded');
}
else
if(!$(this).hasClass('active'))
{
$(this).addClass('active');
$('body').addClass('loading-modules');
$.ajax({
url: $(this).attr('href'),
type: 'post',
success: function(html){
$('body').append(html);
$('.link_othermodules').removeClass('active');
$('.ets-mod').removeClass('hidden');
$('body').addClass('other-modules-loaded').removeClass('loading-modules');
var cat_text_first = $('.ets-mod-cats > li:first').html();
$('.ets-mod-cats_mobile h4').html(cat_text_first);
stickytableft();
},
error: function()
{
$('body').removeClass('loading-modules');
$('.link_othermodules').removeClass('active');
window.open("https://addons.prestashop.com/en/207_ets-soft");
}
});
}
return false;
});
$(document).on('click','.ets-mod-close',function(){
$('.ets-mod').addClass('hidden');
$('body').removeClass('other-modules-loaded');
});
$(document).on('click','.ets-mod-cats > li',function(){
if(!$(this).hasClass('active'))
{
$('.ets-mod-cats > li').removeClass('active');
$(this).addClass('active');
$('.ets-mod-list > li').addClass('hidden');
$('.ets-mod-list > li.cat-'+$(this).attr('data-id')).removeClass('hidden');
var cattext = $(this).html();
$('.ets-mod-cats_mobile h4').html(cattext);
$(this).parent('.ets-mod-cats').removeClass('active');
}
});
$(document).on('click','.ets-mod-cats_mobile h4',function(){
$('.ets-mod-cats').toggleClass('active');
});
$(document).ready(function(){
$(document).keyup(function(e) {
if (e.key === "Escape") {
$('.ets-mod').addClass('hidden');
$('body').removeClass('other-modules-loaded');
}
});
menuheaderheight();
$(window).resize(function(){
menuheaderheight();
});
$(window).load(function(){
menuheaderheight();
});
});
function menuheaderheight(){
var menuheight = $('.cfu-top-menu').height();
$('.cfu-top-menu-height').css('height',menuheight);
}
function stickytableft(){
var sticky_navigation_offset_top = $('.ets-body').offset().top;
var sticky_navigation = function(){
var scroll_top = $('.ets-mod').scrollTop();
var tab_width = $('.ets-mod-cats').width();
$('.ets-mod-cats').width(tab_width);
if (scroll_top > sticky_navigation_offset_top) {
$('.ets-mod-left').addClass('scroll_heading');
} else {
$('.ets-mod-left').removeClass('scroll_heading');
}
};
sticky_navigation();
$('.ets-mod').scroll(function() {
sticky_navigation();
});
}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,130 @@
{*
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please, contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*}
{extends file="helpers/form/form.tpl"}
{block name="defaultForm"}
{if isset($configTabs) && $configTabs|count}
<script type="text/javascript">
var pa_is15 = {$is15|intval};
var helper_config_tabs = {$configTabs|json_encode};
var unique_config_field_id = '';
</script>
{/if}
{if $old_version && !(isset($ik))}{assign var="ik" value=0}{/if}
{$smarty.block.parent}
{/block}
{block name="legend"}
{if $field.title}
<div class="form-heading-wrapper">
{$smarty.block.parent}
{if isset($intro) && $intro}
<div class="li_othermodules">
<a class="link_othermodules" href="{$other_modules_link|escape:'html':'UTF-8'}">
<span class="tab-title">{l s='Other modules' mod='ets_advancedcaptcha'}</span>
<span class="tab-sub-title">{l s='Made by ETS-Soft' mod='ets_advancedcaptcha'}</span>
</a>
</div>
{/if}
</div>
{/if}
{/block}
{block name="label"}
{if $is15}{if isset($ik) && $ik == 0}<div class="form-wrapper">{/if}
<div class="form-group-wrapper row_{$input.name|lower|escape:'html':'UTF-8'}" {if isset($configTabs) && isset($input.tab)} data-tab-id="{$input.tab}"{/if}>
{/if}
{if $input.type == 'pa_help'}{$input.html nofilter}{else}{$smarty.block.parent}{/if}
{/block}
{block name="field"}
{if $input.type != 'pa_help'}{$smarty.block.parent}{/if}
{if $is15}</div>{if isset($ik)}{assign var="ik" value=$ik+1}{if $ik == $field|count}</div>{/if}{/if}{/if}
{/block}
{block name="input"}
{if $input.type == 'pa_img_radio'}
{if isset($input.values) && $input.values}
<ul class="ets_pa_options">
{foreach from=$input.values item='option'}
<li class="ets_pa_item">
<div class="radio">
<label for="{$input.name|escape:'html':'utf-8'}_{$option.id_option|escape:'quotes'}">
<input type="radio" style="outline: none;" id="{$input.name|escape:'html':'utf-8'}_{$option.id_option|escape:'quotes'}" name="{$input.name|escape:'html':'utf-8'}" value="{$option.id_option|escape:'quotes'}" {if !empty($fields_value[$input.name]) && $fields_value[$input.name] == $option.id_option}checked{/if}>
<img src="{$path|cat: 'views/img/'|cat: $option.img|escape:'html':'utf-8'}">
{$option.name|escape:'html':'utf-8'}
</label>
</div>
</li>
{/foreach}
</ul>
{/if}
{elseif $input.type == 'pa_checkbox'}
{if isset($input.values) && $input.values}
<ul class="ets_pa_options">
{foreach from=$input.values item='option'}
<li class="ets_pa_item">
<div class="checkbox">
<label for="{$input.name|escape:'html':'utf-8'}_{$option.id_option|escape:'quotes'}">
<input type="checkbox" id="{$input.name|escape:'html':'utf-8'}_{$option.id_option|escape:'quotes'}" name="{$input.name|escape:'html':'utf-8'}[]" value="{$option.id_option|escape:'quotes'}" {if !empty($fields_value[$input.name]) && ( $fields_value[$input.name] == 'ALL' || (is_array($fields_value[$input.name]) && in_array($option.id_option, $fields_value[$input.name])) )}checked{/if} {if !empty($fields_value[$input.name]) && $fields_value[$input.name] == 'ALL' && $option.id_option != 'ALL'}disabled{/if}>
{$option.name nofilter}
</label>
</div>
</li>
{/foreach}
</ul>
{/if}
{elseif $input.type == 'switch'}
{if $is15}
<span class="switch prestashop-switch fixed-width-lg">
{foreach $input.values as $value}
<input type="radio" name="{$input.name|escape:'quotes'}"{if $value.value == 1} id="{$input.name|escape:'quotes'}_on"{else} id="{$input.name|escape:'quotes'}_off"{/if} value="{$value.value|intval}"{if $fields_value[$input.name] == $value.value} checked="checked"{/if}/>
{strip}
<label {if $value.value == 1} for="{$input.name|escape:'quotes'}_on"{else} for="{$input.name|escape:'quotes'}_off"{/if}>
{if $value.value == 1}{l s='Yes' mod='ets_advancedcaptcha'}{else}{l s='No' mod='ets_advancedcaptcha'}{/if}
</label>
{/strip}
{/foreach}
<a class="slide-button btn"></a>
</span>
{else}
{$smarty.block.parent}
{/if}
{elseif $input.name == 'PA_GOOGLE_CAPTCHA_SECRET_KEY'}
{$smarty.block.parent}
<p class="help-block">
<a target="_blank" href="{if isset($root_dir) && $root_dir }{$root_dir nofilter}views/pdf/recaptcha_v2.pdf{/if}" title="{l s='How to get Site key and Secret key?' mod='ets_advancedcaptcha'}">{l s='How to get Site key and Secret key?' mod='ets_advancedcaptcha'}</a>
</p>
{elseif $input.name == 'PA_GOOGLE_V3_CAPTCHA_SECRET_KEY'}
{$smarty.block.parent}
<p class="help-block">
<a target="_blank" href="{if isset($root_dir) && $root_dir }{$root_dir nofilter}views/pdf/recaptcha_v3.pdf{/if}" title="{l s='How to get Site key and Secret key?' mod='ets_advancedcaptcha'}">{l s='How to get Site key and Secret key?' mod='ets_advancedcaptcha'}</a>
</p>
{else}
{$smarty.block.parent}
{/if}
{/block}
{block name="input_row"}
{if $old_version && isset($ik) && $ik == 0}<div class="form-wrapper">{/if}
<div class="form-group-wrapper row_{$input.name|lower|escape:'html':'UTF-8'}" {if isset($configTabs) && isset($input.tab)} data-tab-id="{$input.tab}"{/if}>
{if $input.type != 'pa_help'}{$smarty.block.parent}{else}{$input.html nofilter}{/if}
</div>
{if $old_version && isset($ik)}{assign var="ik" value=$ik+1}{if $ik == $field|count}</div>{/if}{/if}
{/block}
{block name="footer"}
{if isset($log_install) && $log_install}{$log_install nofilter}{/if}
{$smarty.block.parent}
{/block}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,550 @@
{*
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs, please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*}
{capture name=path}{l s='Login' mod='ets_advancedcaptcha'}{/capture}
{include file="$tpl_dir./breadcrumb.tpl"}
<script type="text/javascript">
// <![CDATA[
var idSelectedCountry = {if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{else}false{/if};
var countries = new Array();
var countriesNeedIDNumber = new Array();
var countriesNeedZipCode = new Array();
{if isset($countries)}
{foreach from=$countries item='country'}
{if isset($country.states) && $country.contains_states}
countries[{$country.id_country|intval}] = new Array();
{foreach from=$country.states item='state' name='states'}
countries[{$country.id_country|intval}].push({ldelim}'id' : '{$state.id_state|intval}', 'name' : '{$state.name|addslashes}'{rdelim});
{/foreach}
{/if}
{if $country.need_identification_number}
countriesNeedIDNumber.push({$country.id_country|intval});
{/if}
{if isset($country.need_zip_code)}
countriesNeedZipCode[{$country.id_country|intval}] = {$country.need_zip_code|escape:'html':'utf-8'};
{/if}
{/foreach}
{/if}
$(function(){ldelim}
$('.id_state option[value={if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{else}{if isset($address)}{$address->id_state|intval}{/if}{/if}]').attr('selected', true);
{rdelim});
//]]>
{literal}
$(document).ready(function() {
$('#company').blur(function(){
vat_number();
});
vat_number();
function vat_number()
{
if ($('#company').val() != '')
$('#vat_number').show();
else
$('#vat_number').hide();
}
});
{/literal}
</script>
<h1>{if !isset($email_create)}{l s='Log in' mod='ets_advancedcaptcha'}{else}{l s='Create an account' mod='ets_advancedcaptcha'}{/if}</h1>
{if !isset($back) || $back != 'my-account'}{assign var='current_step' value='login'}{include file="$tpl_dir./order-steps.tpl"}{/if}
{include file="$tpl_dir./errors.tpl"}
{assign var='stateExist' value=false}
{if !isset($email_create)}
<script type="text/javascript">
{literal}
$(document).ready(function(){
// Retrocompatibility with 1.4
if (typeof baseUri === "undefined" && typeof baseDir !== "undefined")
baseUri = baseDir;
$('#create-account_form').submit(function(){
submitFunction();
return false;
});
});
function submitFunction()
{
$('#create_account_error').html('').hide();
//send the ajax request to the server
$.ajax({
type: 'POST',
url: baseUri,
async: true,
cache: false,
dataType : "json",
data: {
controller: 'authentication',
SubmitCreate: 1,
ajax: true,
email_create: $('#email_create').val(),
back: $('input[name=back]').val(),
token: token
},
success: function(jsonData)
{
if (jsonData.hasError)
{
var errors = '';
for(error in jsonData.errors)
//IE6 bug fix
if(error != 'indexOf')
errors += '<li>'+jsonData.errors[error]+'</li>';
$('#create_account_error').html('<ol>'+errors+'</ol>').show();
}
else
{
// adding a div to display a transition
$('#center_column').html('<div id="noSlide">'+$('#center_column').html()+'</div>');
$('#noSlide').fadeOut('slow', function(){
$('#noSlide').html(jsonData.page);
// update the state (when this file is called from AJAX you still need to update the state)
bindStateInputAndUpdate();
$(this).fadeIn('slow', function(){
document.location = '#account-creation';
});
});
}
},
error: function(XMLHttpRequest, textStatus, errorThrown)
{
alert("TECHNICAL ERROR: unable to load form.\n\nDetails:\nError thrown: " + XMLHttpRequest + "\n" + 'Text status: ' + textStatus);
}
});
}
{/literal}
</script>
<!--{if isset($authentification_error)}
<div class="error">
{if {$authentification_error|@count} == 1}
<p>{l s='There\'s at least one error' mod='ets_advancedcaptcha'} :</p>
{else}
<p>{l s='There are %s errors' sprintf=[$account_error|@count] mod='ets_advancedcaptcha'} :</p>
{/if}
<ol>
{foreach from=$authentification_error item=v}
<li>{$v nofilter}</li>
{/foreach}
</ol>
</div>
{/if}-->
<form action="{$link->getPageLink('authentication', true)|escape:'html':'utf-8'}" method="post" id="create-account_form" class="std">
<fieldset>
<h3>{l s='Create an account' mod='ets_advancedcaptcha'}</h3>
<div class="form_content clearfix">
<p class="title_block">{l s='Please enter your email address to create an account.' mod='ets_advancedcaptcha'}.</p>
<div class="error" id="create_account_error" style="display:none"></div>
<p class="text">
<label for="email_create">{l s='Email address' mod='ets_advancedcaptcha'}</label>
<span><input type="text" id="email_create" name="email_create" value="{if isset($smarty.post.email_create)}{$smarty.post.email_create|stripslashes|escape:'html':'utf-8'}{/if}" class="account_input" /></span>
</p>
<p class="submit">
{if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'htmlall':'UTF-8'}" />{/if}
<input type="submit" id="SubmitCreate" name="SubmitCreate" class="button_large" value="{l s='Create an account' mod='ets_advancedcaptcha'}" />
<input type="hidden" class="hidden" name="SubmitCreate" value="{l s='Create an account' mod='ets_advancedcaptcha'}" />
</p>
</div>
</fieldset>
</form>
<form action="{$link->getPageLink('authentication', true)|escape:'html':'utf-8'}" method="post" id="login_form" class="std">
<fieldset>
<h3>{l s='Already registered?' mod='ets_advancedcaptcha'}</h3>
<div class="form_content clearfix">
<p class="text">
<label for="email">{l s='Email address' mod='ets_advancedcaptcha'}</label>
<span><input type="text" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email|stripslashes|escape:'html':'utf-8'}{/if}" class="account_input" /></span>
</p>
<p class="text">
<label for="passwd">{l s='Password' mod='ets_advancedcaptcha'}</label>
<span><input type="password" id="passwd" name="passwd" value="{if isset($smarty.post.passwd)}{$smarty.post.passwd|stripslashes|escape:'html':'utf-8'}{/if}" class="account_input" /></span>
</p>
{hook h='displayPaCaptcha' posTo='login'}
<p class="lost_password"><a href="{$link->getPageLink('password')|escape:'html':'utf-8'}">{l s='Forgot your password?' mod='ets_advancedcaptcha'}</a></p>
<p class="submit">
{if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'htmlall':'UTF-8'}" />{/if}
<input type="submit" id="SubmitLogin" name="SubmitLogin" class="button" value="{l s='Log in' mod='ets_advancedcaptcha'}" />
</p>
</div>
</fieldset>
</form>
{if isset($inOrderProcess) && $inOrderProcess && $PS_GUEST_CHECKOUT_ENABLED}
<form action="{$link->getPageLink('authentication', true, NULL, "back=$back")|escape:'quotes'}" method="post" id="new_account_form" class="std clearfix">
<fieldset>
<h3>{l s='Instant checkout' mod='ets_advancedcaptcha'}</h3>
<div id="opc_account_form" style="display: block; ">
<!-- Account -->
<p class="required text">
<label for="guest_email">{l s='Email address' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text" id="guest_email" name="guest_email" value="{if isset($smarty.post.guest_email)}{$smarty.post.guest_email|escape:'html':'utf-8'}{/if}" />
</p>
<p class="radio required">
<span>{l s='Title' mod='ets_advancedcaptcha'}</span>
{foreach from=$genders key=k item=gender}
<input type="radio" name="id_gender" id="id_gender{$gender->id|intval}" value="{$gender->id|intval}"{if isset($smarty.post.id_gender) && $smarty.post.id_gender == $gender->id} checked="checked"{/if} />
<label for="id_gender{$gender->id|intval}" class="top">{$gender->name|escape:'html':'utf-8'}</label>
{/foreach}
</p>
<p class="required text">
<label for="firstname">{l s='First name' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text" id="firstname" name="firstname" onblur="$('#customer_firstname').val($(this).val());" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname|escape:'html':'utf-8'}{/if}" />
<input type="hidden" class="text" id="customer_firstname" name="customer_firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname|escape:'html':'utf-8'}{/if}" />
</p>
<p class="required text">
<label for="lastname">{l s='Last name' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text" id="lastname" name="lastname" onblur="$('#customer_lastname').val($(this).val());" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname|escape:'html':'utf-8'}{/if}" />
<input type="hidden" class="text" id="customer_lastname" name="customer_lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname|escape:'html':'utf-8'}{/if}" />
</p>
<p class="select">
<span>{l s='Date of Birth' mod='ets_advancedcaptcha'}</span>
<select id="days" name="days">
<option value="">-</option>
{foreach from=$days item=day}
<option value="{$day|intval}" {if ($sl_day == $day)} selected="selected"{/if}>{$day|intval}&nbsp;&nbsp;</option>
{/foreach}
</select>
<select id="months" name="months">
<option value="">-</option>
{foreach from=$months key=k item=month}
<option value="{$k|intval}" {if ($sl_month == $k)} selected="selected"{/if}>{l s=$month mod='ets_advancedcaptcha'}&nbsp;</option>
{/foreach}
</select>
<select id="years" name="years">
<option value="">-</option>
{foreach from=$years item=year}
<option value="{$year|intval}" {if ($sl_year == $year)} selected="selected"{/if}>{$year|intval}&nbsp;&nbsp;</option>
{/foreach}
</select>
</p>
{if isset($newsletter) && $newsletter}
<p class="checkbox">
<input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) && $smarty.post.newsletter == '1'}checked="checked"{/if} />
<label for="newsletter">{l s='Sign up for our newsletter!' mod='ets_advancedcaptcha'}</label>
</p>
<p class="checkbox">
<input type="checkbox" name="optin" id="optin" value="1" {if isset($smarty.post.optin) && $smarty.post.optin == '1'}checked="checked"{/if} />
<label for="optin">{l s='Receive special offers from our partners!' mod='ets_advancedcaptcha'}</label>
</p>
{/if}
<h3>{l s='Delivery address' mod='ets_advancedcaptcha'}</h3>
{foreach from=$dlv_all_fields item=field_name}
{if $field_name eq "company"}
<p class="text">
<label for="company">{l s='Company' mod='ets_advancedcaptcha'}</label>
<input type="text" class="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company|escape:'html':'utf-8'}{/if}" />
</p>
{elseif $field_name eq "vat_number"}
<div id="vat_number" style="display:none;">
<p class="text">
<label for="vat_number">{l s='VAT number' mod='ets_advancedcaptcha'}</label>
<input type="text" class="text" name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number|escape:'html':'utf-8'}{/if}" />
</p>
</div>
{elseif $field_name eq "address1"}
<p class="required text">
<label for="address1">{l s='Address' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text" name="address1" id="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1|escape:'html':'utf-8'}{/if}" />
</p>
{elseif $field_name eq "postcode"}
<p class="required postcode text">
<label for="postcode">{l s='Zip / Postal Code' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text" name="postcode" id="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode|escape:'html':'utf-8'}{/if}" onblur="$('#postcode').val($('#postcode').val().toUpperCase());" />
</p>
{elseif $field_name eq "city"}
<p class="required text">
<label for="city">{l s='City' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text" name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city|escape:'html':'utf-8'}{/if}" />
</p>
<!--
if customer hasn't update his layout address, country has to be verified
but it's deprecated
-->
{elseif $field_name eq "Country:name" || $field_name eq "country"}
<p class="required select">
<label for="id_country">{l s='Country' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_country" id="id_country">
<option value="">-</option>
{foreach from=$countries item=v}
<option value="{$v.id_country|intval}" {if ($sl_country == $v.id_country)} selected="selected"{/if}>{$v.name|escape:'html':'utf-8'}</option>
{/foreach}
</select>
</p>
{elseif $field_name eq "State:name"}
{assign var='stateExist' value=true}
<p class="required id_state select">
<label for="id_state">{l s='State' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_state" id="id_state">
<option value="">-</option>
</select>
</p>
{elseif $field_name eq "phone"}
<p class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}text">
<label for="phone">{l s='Phone' mod='ets_advancedcaptcha'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>*</sup>{/if}</label>
<input type="text" class="text" name="phone" id="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone|escape:'html':'utf-8'}{/if}"/>
</p>
{/if}
{/foreach}
{if $stateExist eq false}
<p class="required id_state select">
<label for="id_state">{l s='State' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_state" id="id_state">
<option value="">-</option>
</select>
</p>
{/if}
<input type="hidden" name="alias" id="alias" value="{l s='My address' mod='ets_advancedcaptcha'}" />
<input type="hidden" name="is_new_customer" id="is_new_customer" value="0" />
<!-- END Account -->
</div>
</fieldset>
<fieldset class="account_creation dni">
<h3>{l s='Tax identification' mod='ets_advancedcaptcha'}</h3>
<p class="required text">
<label for="dni">{l s='Identification number' mod='ets_advancedcaptcha'}</label>
<input type="text" class="text" name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni|escape:'html':'utf-8'}{/if}" />
<span class="form_info">{l s='DNI / NIF / NIE' mod='ets_advancedcaptcha'}</span>
</p>
</fieldset>
{$HOOK_CREATE_ACCOUNT_FORM nofilter}
<p class="cart_navigation required submit">
<span><sup>*</sup>{l s='Required field' mod='ets_advancedcaptcha'}</span>
<input type="hidden" name="display_guest_checkout" value="1" />
<input type="submit" class="exclusive" name="submitGuestAccount" id="submitGuestAccount" value="{l s='Continue' mod='ets_advancedcaptcha'}" />
</p>
</form>
{/if}
{else}
<!--{if isset($account_error)}
<div class="error">
{if {$account_error|@count} == 1}
<p>{l s='There\'s at least one error' mod='ets_advancedcaptcha'} :</p>
{else}
<p>{l s='There are %s errors' sprintf=[$account_error|@count] mod='ets_advancedcaptcha'} :</p>
{/if}
<ol>
{foreach from=$account_error item=v}
<li>{$v nofilter}</li>
{/foreach}
</ol>
</div>
{/if}-->
<form action="{$link->getPageLink('authentication', true)|escape:'html':'utf-8'}" method="post" id="account-creation_form" class="std">
{$HOOK_CREATE_ACCOUNT_TOP nofilter}
<fieldset class="account_creation">
<h3>{l s='Your personal information' mod='ets_advancedcaptcha'}</h3>
<p class="radio required">
<span>{l s='Title' mod='ets_advancedcaptcha'}</span>
{foreach from=$genders key=k item=gender}
<input type="radio" name="id_gender" id="id_gender{$gender->id|intval}" value="{$gender->id|intval}" {if isset($smarty.post.id_gender) && $smarty.post.id_gender == $gender->id}checked="checked"{/if} />
<label for="id_gender{$gender->id|intval}" class="top">{$gender->name|escape:'html':'utf-8'}</label>
{/foreach}
</p>
<p class="required text">
<label for="customer_firstname">{l s='First name' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input onkeyup="$('#firstname').val(this.value);" type="text" class="text" id="customer_firstname" name="customer_firstname" value="{if isset($smarty.post.customer_firstname)}{$smarty.post.customer_firstname|escape:'html':'utf-8'}{/if}" />
</p>
<p class="required text">
<label for="customer_lastname">{l s='Last name' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input onkeyup="$('#lastname').val(this.value);" type="text" class="text" id="customer_lastname" name="customer_lastname" value="{if isset($smarty.post.customer_lastname)}{$smarty.post.customer_lastname|escape:'html':'utf-8'}{/if}" />
</p>
<p class="required text">
<label for="email">{l s='Email' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email|escape:'html':'utf-8'}{/if}" />
</p>
<p class="required password">
<label for="passwd">{l s='Password' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="password" class="text" name="passwd" id="passwd" />
<span class="form_info">{l s='(Five characters minimum)' mod='ets_advancedcaptcha'}</span>
</p>
<p class="select">
<span>{l s='Date of Birth' mod='ets_advancedcaptcha'}</span>
<select id="days" name="days">
<option value="">-</option>
{foreach from=$days item=day}
<option value="{$day|intval}" {if ($sl_day == $day)} selected="selected"{/if}>{$day|intval}&nbsp;&nbsp;</option>
{/foreach}
</select>
<select id="months" name="months">
<option value="">-</option>
{foreach from=$months key=k item=month}
<option value="{$k|intval}" {if ($sl_month == $k)} selected="selected"{/if}>{l s=$month mod='ets_advancedcaptcha'}&nbsp;</option>
{/foreach}
</select>
<select id="years" name="years">
<option value="">-</option>
{foreach from=$years item=year}
<option value="{$year|intval}" {if ($sl_year == $year)} selected="selected"{/if}>{$year|intval}&nbsp;&nbsp;</option>
{/foreach}
</select>
</p>
{if $newsletter}
<p class="checkbox" >
<input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) AND $smarty.post.newsletter == 1} checked="checked"{/if} />
<label for="newsletter">{l s='Sign up for our newsletter!' mod='ets_advancedcaptcha'}</label>
</p>
<p class="checkbox" >
<input type="checkbox"name="optin" id="optin" value="1" {if isset($smarty.post.optin) AND $smarty.post.optin == 1} checked="checked"{/if} />
<label for="optin">{l s='Receive special offers from our partners!' mod='ets_advancedcaptcha'}</label>
</p>
{/if}
</fieldset>
{if $b2b_enable}
<fieldset class="account_creation">
<h3>{l s='Your company information' mod='ets_advancedcaptcha'}</h3>
<p class="text">
<label for="">{l s='Company' mod='ets_advancedcaptcha'}</label>
<input type="text" class="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company|escape:'html':'utf-8'}{/if}" />
</p>
<p class="text">
<label for="siret">{l s='SIRET' mod='ets_advancedcaptcha'}</label>
<input type="text" class="text" id="siret" name="siret" value="{if isset($smarty.post.siret)}{$smarty.post.siret|escape:'html':'utf-8'}{/if}" />
</p>
<p class="text">
<label for="ape">{l s='APE' mod='ets_advancedcaptcha'}</label>
<input type="text" class="text" id="ape" name="ape" value="{if isset($smarty.post.ape)}{$smarty.post.ape|escape:'html':'utf-8'}{/if}" />
</p>
<p class="text">
<label for="website">{l s='Website' mod='ets_advancedcaptcha'}</label>
<input type="text" class="text" id="website" name="website" value="{if isset($smarty.post.website)}{$smarty.post.website|escape:'html':'utf-8'}{/if}" />
</p>
</fieldset>
{/if}
{if isset($PS_REGISTRATION_PROCESS_TYPE) && $PS_REGISTRATION_PROCESS_TYPE}
<fieldset class="account_creation">
<h3>{l s='Your address' mod='ets_advancedcaptcha'}</h3>
{foreach from=$dlv_all_fields item=field_name}
{if $field_name eq "company"}
<p class="text">
<label for="company">{l s='Company' mod='ets_advancedcaptcha'}</label>
<input type="text" class="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company|escape:'html':'utf-8'}{/if}" />
</p>
{elseif $field_name eq "vat_number"}
<div id="vat_number" style="display:none;">
<p class="text">
<label for="vat_number">{l s='VAT number' mod='ets_advancedcaptcha'}</label>
<input type="text" class="text" name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number|escape:'html':'utf-8'}{/if}" />
</p>
</div>
{elseif $field_name eq "firstname"}
<p class="required text">
<label for="firstname">{l s='First name' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text" id="firstname" name="firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname|escape:'html':'utf-8'}{/if}" />
</p>
{elseif $field_name eq "lastname"}
<p class="required text">
<label for="lastname">{l s='Last name' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text" id="lastname" name="lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname|escape:'html':'utf-8'}{/if}" />
</p>
{elseif $field_name eq "address1"}
<p class="required text">
<label for="address1">{l s='Address' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text" name="address1" id="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1|escape:'html':'utf-8'}{/if}" />
<span class="inline-infos">{l s='Street address, P.O. Box, Company name, etc.' mod='ets_advancedcaptcha'}</span>
</p>
{elseif $field_name eq "address2"}
<p class="text">
<label for="address2">{l s='Address (Line 2)' mod='ets_advancedcaptcha'}</label>
<input type="text" class="text" name="address2" id="address2" value="{if isset($smarty.post.address2)}{$smarty.post.address2|escape:'html':'utf-8'}{/if}" />
<span class="inline-infos">{l s='Apartment, suite, unit, building, floor, etc...' mod='ets_advancedcaptcha'}</span>
</p>
{elseif $field_name eq "postcode"}
<p class="required postcode text">
<label for="postcode">{l s='Zip / Postal Code' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text" name="postcode" id="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode|escape:'html':'utf-8'}{/if}" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());" />
</p>
{elseif $field_name eq "city"}
<p class="required text">
<label for="city">{l s='City' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text" name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city|escape:'html':'utf-8'}{/if}" />
</p>
<!--
if customer hasn't update his layout address, country has to be verified
but it's deprecated
-->
{elseif $field_name eq "Country:name" || $field_name eq "country"}
<p class="required select">
<label for="id_country">{l s='Country' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_country" id="id_country">
<option value="">-</option>
{foreach from=$countries item=v}
<option value="{$v.id_country|intval}" {if ($sl_country == $v.id_country)} selected="selected"{/if}>{$v.name|escape:'html':'utf-8'}</option>
{/foreach}
</select>
</p>
{elseif $field_name eq "State:name" || $field_name eq 'state'}
{assign var='stateExist' value=true}
<p class="required id_state select">
<label for="id_state">{l s='State' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_state" id="id_state">
<option value="">-</option>
</select>
</p>
{/if}
{/foreach}
{if $stateExist eq false}
<p class="required id_state select">
<label for="id_state">{l s='State' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_state" id="id_state">
<option value="">-</option>
</select>
</p>
{/if}
<p class="textarea">
<label for="other">{l s='Additional information' mod='ets_advancedcaptcha'}</label>
<textarea name="other" id="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other|escape:'html':'utf-8'}{/if}</textarea>
</p>
{if isset($one_phone_at_least) && $one_phone_at_least}
<p class="inline-infos">{l s='You must register at least one phone number.' mod='ets_advancedcaptcha'}</p>
{/if}
<p class="text">
<label for="phone">{l s='Home phone' mod='ets_advancedcaptcha'}</label>
<input type="text" class="text" name="phone" id="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone|escape:'html':'utf-8'}{/if}" />
</p>
<p class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if} text">
<label for="phone_mobile">{l s='Mobile phone' mod='ets_advancedcaptcha'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>*</sup>{/if}</label>
<input type="text" class="text" name="phone_mobile" id="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile|escape:'html':'utf-8'}{/if}" />
</p>
<p class="required text" id="address_alias">
<label for="alias">{l s='Assign an address alias for future reference.' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text" name="alias" id="alias" value="{if isset($smarty.post.alias)}{$smarty.post.alias|escape:'html':'utf-8'}{else}{l s='My address' mod='ets_advancedcaptcha'}{/if}" />
</p>
</fieldset>
<fieldset class="account_creation dni">
<h3>{l s='Tax identification' mod='ets_advancedcaptcha'}</h3>
<p class="required text">
<label for="dni">{l s='Identification number' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text" name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni|escape:'html':'utf-8'}{/if}" />
<span class="form_info">{l s='DNI / NIF / NIE' mod='ets_advancedcaptcha'}</span>
</p>
</fieldset>
{/if}
{$HOOK_CREATE_ACCOUNT_FORM nofilter}
<p class="cart_navigation required submit">
<input type="hidden" name="email_create" value="1" />
<input type="hidden" name="is_new_customer" value="1" />
{if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'htmlall':'UTF-8'}" />{/if}
<input type="submit" name="submitAccount" id="submitAccount" value="{l s='Register' mod='ets_advancedcaptcha'}" class="exclusive" />
<span><sup>*</sup>{l s='Required field' mod='ets_advancedcaptcha'}</span>
</p>
</form>
{/if}

View File

@@ -0,0 +1,649 @@
{*
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs, please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*}
{capture name=path}
{if !isset($email_create)}{l s='Authentication' mod='ets_advancedcaptcha'}{else}
<a href="{$link->getPageLink('authentication', true)|escape:'html':'UTF-8'}" rel="nofollow" title="{l s='Authentication' mod='ets_advancedcaptcha'}">{l s='Authentication' mod='ets_advancedcaptcha'}</a>
<span class="navigation-pipe">{$navigationPipe|escape:'html':'utf-8'}</span>{l s='Create your account' mod='ets_advancedcaptcha'}
{/if}
{/capture}
<h1 class="page-heading">{if !isset($email_create)}{l s='Authentication' mod='ets_advancedcaptcha'}{else}{l s='Create an account' mod='ets_advancedcaptcha'}{/if}</h1>
{if !isset($back) || $back != 'my-account'}{assign var='current_step' value='login'}{include file="$tpl_dir./order-steps.tpl"}{/if}
{include file="$tpl_dir./errors.tpl"}
{assign var='stateExist' value=false}
{assign var="postCodeExist" value=false}
{assign var="dniExist" value=false}
{if !isset($email_create)}
<!--{if isset($authentification_error)}
<div class="alert alert-danger">
{if {$authentification_error|@count} == 1}
<p>{l s='There\'s at least one error' mod='ets_advancedcaptcha'} :</p>
{else}
<p>{l s='There are %s errors' sprintf=[$account_error|@count] mod='ets_advancedcaptcha'} :</p>
{/if}
<ol>
{foreach from=$authentification_error item=v}
<li>{$v nofilter}</li>
{/foreach}
</ol>
</div>
{/if}-->
<div class="row">
<div class="col-xs-12 col-sm-6">
<form action="{$link->getPageLink('authentication', true)|escape:'html':'UTF-8'}" method="post" id="create-account_form" class="box">
<h3 class="page-subheading">{l s='Create an account' mod='ets_advancedcaptcha'}</h3>
<div class="form_content clearfix">
<p>{l s='Please enter your email address to create an account.' mod='ets_advancedcaptcha'}</p>
<div class="alert alert-danger" id="create_account_error" style="display:none"></div>
<div class="form-group">
<label for="email_create">{l s='Email address' mod='ets_advancedcaptcha'}</label>
<input type="text" class="is_required validate account_input form-control" data-validate="isEmail" id="email_create" name="email_create" value="{if isset($smarty.post.email_create)}{$smarty.post.email_create|stripslashes|escape:'html':'utf-8'}{/if}" />
</div>
<div class="submit">
{if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'html':'UTF-8'}" />{/if}
<button class="btn btn-default button button-medium exclusive" type="submit" id="SubmitCreate" name="SubmitCreate">
<span>
<i class="icon-user left"></i>
{l s='Create an account' mod='ets_advancedcaptcha'}
</span>
</button>
<input type="hidden" class="hidden" name="SubmitCreate" value="{l s='Create an account' mod='ets_advancedcaptcha'}" />
</div>
</div>
</form>
</div>
<div class="col-xs-12 col-sm-6">
<form action="{$link->getPageLink('authentication', true)|escape:'html':'UTF-8'}" method="post" id="login_form" class="box">
<h3 class="page-subheading">{l s='Already registered?' mod='ets_advancedcaptcha'}</h3>
<div class="form_content clearfix">
<div class="form-group">
<label for="email">{l s='Email address' mod='ets_advancedcaptcha'}</label>
<input class="is_required validate account_input form-control" data-validate="isEmail" type="text" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email|stripslashes|escape:'html':'utf-8'}{/if}" />
</div>
<div class="form-group">
<label for="passwd">{l s='Password' mod='ets_advancedcaptcha'}</label>
<span><input class="is_required validate account_input form-control" type="password" data-validate="isPasswd" id="passwd" name="passwd" value="{if isset($smarty.post.passwd)}{$smarty.post.passwd|stripslashes|escape:'html':'utf-8'}{/if}" /></span>
</div>
{hook h='displayPaCaptcha' posTo='login'}
<p class="lost_password form-group"><a href="{$link->getPageLink('password')|escape:'html':'UTF-8'}" title="{l s='Recover your forgotten password' mod='ets_advancedcaptcha'}" rel="nofollow">{l s='Forgot your password?' mod='ets_advancedcaptcha'}</a></p>
<p class="submit">
{if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'html':'UTF-8'}" />{/if}
<button type="submit" id="SubmitLogin" name="SubmitLogin" class="button btn btn-default button-medium">
<span>
<i class="icon-lock left"></i>
{l s='Sign in' mod='ets_advancedcaptcha'}
</span>
</button>
</p>
</div>
</form>
</div>
</div>
{if isset($inOrderProcess) && $inOrderProcess && $PS_GUEST_CHECKOUT_ENABLED}
<form action="{$link->getPageLink('authentication', true, NULL, "back=$back")|escape:'html':'UTF-8'}" method="post" id="new_account_form" class="std clearfix">
<div class="box">
<div id="opc_account_form" style="display: block; ">
<h3 class="page-heading bottom-indent">{l s='Instant checkout' mod='ets_advancedcaptcha'}</h3>
<!-- Account -->
<div class="required form-group">
<label for="guest_email">{l s='Email address' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="is_required validate form-control" data-validate="isEmail" id="guest_email" name="guest_email" value="{if isset($smarty.post.guest_email)}{$smarty.post.guest_email|escape:'html':'utf-8'}{/if}" />
</div>
<div class="cleafix gender-line">
<label>{l s='Title' mod='ets_advancedcaptcha'}</label>
{foreach from=$genders key=k item=gender}
<div class="radio-inline">
<label for="id_gender{$gender->id|intval}" class="top">
<input type="radio" name="id_gender" id="id_gender{$gender->id|intval}" value="{$gender->id|intval}"{if isset($smarty.post.id_gender) && $smarty.post.id_gender == $gender->id} checked="checked"{/if} />
{$gender->name|escape:'html':'utf-8'}
</label>
</div>
{/foreach}
</div>
<div class="required form-group">
<label for="firstname">{l s='First name' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="is_required validate form-control" data-validate="isName" id="firstname" name="firstname" onblur="$('#customer_firstname').val($(this).val());" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname|escape:'html':'utf-8'}{/if}" />
<input type="hidden" id="customer_firstname" name="customer_firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname|escape:'html':'utf-8'}{/if}" />
</div>
<div class="required form-group">
<label for="lastname">{l s='Last name' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="is_required validate form-control" data-validate="isName" id="lastname" name="lastname" onblur="$('#customer_lastname').val($(this).val());" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname|escape:'html':'utf-8'}{/if}" />
<input type="hidden" id="customer_lastname" name="customer_lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname|escape:'html':'utf-8'}{/if}" />
</div>
<div class="form-group date-select">
<label>{l s='Date of Birth' mod='ets_advancedcaptcha'}</label>
<div class="row">
<div class="col-xs-4">
<select id="days" name="days" class="form-control">
<option value="">-</option>
{foreach from=$days item=day}
<option value="{$day|intval}" {if ($sl_day == $day)} selected="selected"{/if}>{$day|intval}&nbsp;&nbsp;</option>
{/foreach}
</select>
</div>
<div class="col-xs-4">
<select id="months" name="months" class="form-control">
<option value="">-</option>
{foreach from=$months key=k item=month}
<option value="{$k|intval}" {if ($sl_month == $k)} selected="selected"{/if}>{l s=$month mod='ets_advancedcaptcha'}&nbsp;</option>
{/foreach}
</select>
</div>
<div class="col-xs-4">
<select id="years" name="years" class="form-control">
<option value="">-</option>
{foreach from=$years item=year}
<option value="{$year|intval}" {if ($sl_year == $year)} selected="selected"{/if}>{$year|intval}&nbsp;&nbsp;</option>
{/foreach}
</select>
</div>
</div>
</div>
{if isset($newsletter) && $newsletter}
<div class="checkbox">
<label for="newsletter">
<input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) && $smarty.post.newsletter == '1'}checked="checked"{/if} />
{l s='Sign up for our newsletter!' mod='ets_advancedcaptcha'}</label>
</div>
<div class="checkbox">
<label for="optin">
<input type="checkbox" name="optin" id="optin" value="1" {if isset($smarty.post.optin) && $smarty.post.optin == '1'}checked="checked"{/if} />
{l s='Receive special offers from our partners!' mod='ets_advancedcaptcha'}</label>
</div>
{/if}
<h3 class="page-heading bottom-indent top-indent">{l s='Delivery address' mod='ets_advancedcaptcha'}</h3>
{foreach from=$dlv_all_fields item=field_name}
{if $field_name eq "company" && $b2b_enable}
<div class="form-group">
<label for="company">{l s='Company' mod='ets_advancedcaptcha'}</label>
<input type="text" class="form-control" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company|escape:'html':'utf-8'}{/if}" />
</div>
{elseif $field_name eq "vat_number"}
<div id="vat_number" style="display:none;">
<div class="form-group">
<label for="vat-number">{l s='VAT number' mod='ets_advancedcaptcha'}</label>
<input id="vat-number" type="text" class="form-control" name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number|escape:'html':'utf-8'}{/if}" />
</div>
</div>
{elseif $field_name eq "dni"}
{assign var='dniExist' value=true}
<div class="required dni form-group">
<label for="dni">{l s='Identification number' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni|escape:'html':'utf-8'}{/if}" />
<span class="form_info">{l s='DNI / NIF / NIE' mod='ets_advancedcaptcha'}</span>
</div>
{elseif $field_name eq "address1"}
<div class="required form-group">
<label for="address1">{l s='Address' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="address1" id="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1|escape:'html':'utf-8'}{/if}" />
</div>
{elseif $field_name eq "address2"}
<div class="form-group is_customer_param">
<label for="address2">{l s='Address (Line 2)' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="address2" id="address2" value="{if isset($smarty.post.address2)}{$smarty.post.address2|escape:'html':'utf-8'}{/if}" />
</div>
{elseif $field_name eq "postcode"}
{assign var='postCodeExist' value=true}
<div class="required postcode form-group">
<label for="postcode">{l s='Zip/Postal Code' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="postcode" id="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode|escape:'html':'utf-8'}{/if}" onblur="$('#postcode').val($('#postcode').val().toUpperCase());" />
</div>
{elseif $field_name eq "city"}
<div class="required form-group">
<label for="city">{l s='City' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city|escape:'html':'utf-8'}{/if}" />
</div>
<!-- if customer hasn't update his layout address, country has to be verified but it's deprecated -->
{elseif $field_name eq "Country:name" || $field_name eq "country"}
<div class="required select form-group">
<label for="id_country">{l s='Country' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_country" id="id_country" class="form-control">
{foreach from=$countries item=v}
<option value="{$v.id_country|intval}"{if (isset($smarty.post.id_country) AND $smarty.post.id_country == $v.id_country) OR (!isset($smarty.post.id_country) && $sl_country == $v.id_country)} selected="selected"{/if}>{$v.name|escape:'html':'utf-8'}</option>
{/foreach}
</select>
</div>
{elseif $field_name eq "State:name"}
{assign var='stateExist' value=true}
<div class="required id_state select form-group">
<label for="id_state">{l s='State' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_state" id="id_state" class="form-control">
<option value="">-</option>
</select>
</div>
{/if}
{/foreach}
{if $stateExist eq false}
<div class="required id_state select unvisible form-group">
<label for="id_state">{l s='State' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_state" id="id_state" class="form-control">
<option value="">-</option>
</select>
</div>
{/if}
{if $postCodeExist eq false}
<div class="required postcode unvisible form-group">
<label for="postcode">{l s='Zip/Postal Code' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="postcode" id="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode|escape:'html':'utf-8'}{/if}" onblur="$('#postcode').val($('#postcode').val().toUpperCase());" />
</div>
{/if}
{if $dniExist eq false}
<div class="required form-group dni_invoice">
<label for="dni">{l s='Identification number' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text form-control" name="dni_invoice" id="dni_invoice" value="{if isset($guestInformations) && $guestInformations.dni_invoice}{$guestInformations.dni_invoice|escape:'html':'utf-8'}{/if}" />
<span class="form_info">{l s='DNI / NIF / NIE' mod='ets_advancedcaptcha'}</span>
</div>
{/if}
<div class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}form-group">
<label for="phone_mobile">{l s='Mobile phone' mod='ets_advancedcaptcha'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>*</sup>{/if}</label>
<input type="text" class="form-control" name="phone_mobile" id="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile|escape:'html':'utf-8'}{/if}" />
</div>
<input type="hidden" name="alias" id="alias" value="{l s='My address' mod='ets_advancedcaptcha'}" />
<input type="hidden" name="is_new_customer" id="is_new_customer" value="0" />
<div class="checkbox">
<label for="invoice_address">
<input type="checkbox" name="invoice_address" id="invoice_address"{if (isset($smarty.post.invoice_address) && $smarty.post.invoice_address) || (isset($guestInformations) && $guestInformations.invoice_address)} checked="checked"{/if} autocomplete="off"/>
{l s='Please use another address for invoice' mod='ets_advancedcaptcha'}</label>
</div>
<div id="opc_invoice_address" class="unvisible">
{assign var=stateExist value=false}
{assign var=postCodeExist value=false}
<h3 class="page-subheading top-indent">{l s='Invoice address' mod='ets_advancedcaptcha'}</h3>
{foreach from=$inv_all_fields item=field_name}
{if $field_name eq "company" && $b2b_enable}
<div class="form-group">
<label for="company_invoice">{l s='Company' mod='ets_advancedcaptcha'}</label>
<input type="text" class="text form-control" id="company_invoice" name="company_invoice" value="" />
</div>
{elseif $field_name eq "vat_number"}
<div id="vat_number_block_invoice" class="is_customer_param" style="display:none;">
<div class="form-group">
<label for="vat_number_invoice">{l s='VAT number' mod='ets_advancedcaptcha'}</label>
<input type="text" class="form-control" id="vat_number_invoice" name="vat_number_invoice" value="" />
</div>
</div>
{elseif $field_name eq "dni"}
{assign var=dniExist value=true}
<div class="required form-group dni_invoice">
<label for="dni">{l s='Identification number' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="text form-control" name="dni_invoice" id="dni_invoice" value="{if isset($guestInformations) && $guestInformations.dni_invoice}{$guestInformations.dni_invoice|escape:'html':'utf-8'}{/if}" />
<span class="form_info">{l s='DNI / NIF / NIE' mod='ets_advancedcaptcha'}</span>
</div>
{elseif $field_name eq "firstname"}
<div class="required form-group">
<label for="firstname_invoice">{l s='First name' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" id="firstname_invoice" name="firstname_invoice" value="{if isset($guestInformations) && $guestInformations.firstname_invoice}{$guestInformations.firstname_invoice|escape:'html':'utf-8'}{/if}" />
</div>
{elseif $field_name eq "lastname"}
<div class="required form-group">
<label for="lastname_invoice">{l s='Last name' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" id="lastname_invoice" name="lastname_invoice" value="{if isset($guestInformations) && $guestInformations.lastname_invoice}{$guestInformations.lastname_invoice|escape:'html':'utf-8'}{/if}" />
</div>
{elseif $field_name eq "address1"}
<div class="required form-group">
<label for="address1_invoice">{l s='Address' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="address1_invoice" id="address1_invoice" value="{if isset($guestInformations) && $guestInformations.address1_invoice}{$guestInformations.address1_invoice|escape:'html':'utf-8'}{/if}" />
</div>
{elseif $field_name eq "address2"}
<div class="form-group is_customer_param">
<label for="address2_invoice">{l s='Address (Line 2)' mod='ets_advancedcaptcha'}</label>
<input type="text" class="form-control" name="address2_invoice" id="address2_invoice" value="{if isset($guestInformations) && $guestInformations.address2_invoice}{$guestInformations.address2_invoice|escape:'html':'utf-8'}{/if}" />
</div>
{elseif $field_name eq "postcode"}
{$postCodeExist = true}
<div class="required postcode_invoice form-group">
<label for="postcode_invoice">{l s='Zip/Postal Code' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="postcode_invoice" id="postcode_invoice" value="{if isset($guestInformations) && $guestInformations.postcode_invoice}{$guestInformations.postcode_invoice|escape:'html':'utf-8'}{/if}" onkeyup="$('#postcode_invoice').val($('#postcode_invoice').val().toUpperCase());" />
</div>
{elseif $field_name eq "city"}
<div class="required form-group">
<label for="city_invoice">{l s='City' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="city_invoice" id="city_invoice" value="{if isset($guestInformations) && $guestInformations.city_invoice}{$guestInformations.city_invoice|escape:'html':'utf-8'}{/if}" />
</div>
{elseif $field_name eq "country" || $field_name eq "Country:name"}
<div class="required form-group">
<label for="id_country_invoice">{l s='Country' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_country_invoice" id="id_country_invoice" class="form-control">
<option value="">-</option>
{foreach from=$countries item=v}
<option value="{$v.id_country|intval}"{if (isset($guestInformations) AND $guestInformations.id_country_invoice == $v.id_country) OR (!isset($guestInformations) && $sl_country == $v.id_country)} selected="selected"{/if}>{$v.name|escape:'html':'UTF-8'}</option>
{/foreach}
</select>
</div>
{elseif $field_name eq "state" || $field_name eq 'State:name'}
{$stateExist = true}
<div class="required id_state_invoice form-group" style="display:none;">
<label for="id_state_invoice">{l s='State' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_state_invoice" id="id_state_invoice" class="form-control">
<option value="">-</option>
</select>
</div>
{/if}
{/foreach}
{if !$postCodeExist}
<div class="required postcode_invoice form-group unvisible">
<label for="postcode_invoice">{l s='Zip/Postal Code' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="postcode_invoice" id="postcode_invoice" value="" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());" />
</div>
{/if}
{if !$stateExist}
<div class="required id_state_invoice form-group unvisible">
<label for="id_state_invoice">{l s='State' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_state_invoice" id="id_state_invoice" class="form-control">
<option value="">-</option>
</select>
</div>
{/if}
<div class="form-group is_customer_param">
<label for="other_invoice">{l s='Additional information' mod='ets_advancedcaptcha'}</label>
<textarea class="form-control" name="other_invoice" id="other_invoice" cols="26" rows="3"></textarea>
</div>
{if isset($one_phone_at_least) && $one_phone_at_least}
<p class="inline-infos required is_customer_param">{l s='You must register at least one phone number.' mod='ets_advancedcaptcha'}</p>
{/if}
<div class="form-group is_customer_param">
<label for="phone_invoice">{l s='Home phone' mod='ets_advancedcaptcha'}</label>
<input type="text" class="form-control" name="phone_invoice" id="phone_invoice" value="{if isset($guestInformations) && $guestInformations.phone_invoice}{$guestInformations.phone_invoice|escape:'html':'utf-8'}{/if}" />
</div>
<div class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}form-group">
<label for="phone_mobile_invoice">{l s='Mobile phone' mod='ets_advancedcaptcha'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>*</sup>{/if}</label>
<input type="text" class="form-control" name="phone_mobile_invoice" id="phone_mobile_invoice" value="{if isset($guestInformations) && $guestInformations.phone_mobile_invoice}{$guestInformations.phone_mobile_invoice|escape:'html':'utf-8'}{/if}" />
</div>
<input type="hidden" name="alias_invoice" id="alias_invoice" value="{l s='My Invoice address' mod='ets_advancedcaptcha'}" />
</div>
<!-- END Account -->
</div>
{$HOOK_CREATE_ACCOUNT_FORM nofilter}
</div>
<p class="cart_navigation required submit clearfix">
<span><sup>*</sup>{l s='Required field' mod='ets_advancedcaptcha'}</span>
<input type="hidden" name="display_guest_checkout" value="1" />
<button type="submit" class="button btn btn-default button-medium" name="submitGuestAccount" id="submitGuestAccount">
<span>
{l s='Proceed to checkout' mod='ets_advancedcaptcha'}
<i class="icon-chevron-right right"></i>
</span>
</button>
</p>
</form>
{/if}
{else}
<!--{if isset($account_error)}
<div class="error">
{if {$account_error|@count} == 1}
<p>{l s='There\'s at least one error' mod='ets_advancedcaptcha'} :</p>
{else}
<p>{l s='There are %s errors' sprintf=[$account_error|@count] mod='ets_advancedcaptcha'} :</p>
{/if}
<ol>
{foreach from=$account_error item=v}
<li>{$v nofilter}</li>
{/foreach}
</ol>
</div>
{/if}-->
<form action="{$link->getPageLink('authentication', true)|escape:'html':'UTF-8'}" method="post" id="account-creation_form" class="std box">
{$HOOK_CREATE_ACCOUNT_TOP nofilter}
<div class="account_creation">
<h3 class="page-subheading">{l s='Your personal information' mod='ets_advancedcaptcha'}</h3>
<div class="clearfix">
<label>{l s='Title' mod='ets_advancedcaptcha'}</label>
<br />
{foreach from=$genders key=k item=gender}
<div class="radio-inline">
<label for="id_gender{$gender->id|intval}" class="top">
<input type="radio" name="id_gender" id="id_gender{$gender->id|intval}" value="{$gender->id|intval}" {if isset($smarty.post.id_gender) && $smarty.post.id_gender == $gender->id}checked="checked"{/if} />
{$gender->name|escape:'html':'utf-8'}
</label>
</div>
{/foreach}
</div>
<div class="required form-group">
<label for="customer_firstname">{l s='First name' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input onkeyup="$('#firstname').val(this.value);" type="text" class="is_required validate form-control" data-validate="isName" id="customer_firstname" name="customer_firstname" value="{if isset($smarty.post.customer_firstname)}{$smarty.post.customer_firstname|escape:'html':'utf-8'}{/if}" />
</div>
<div class="required form-group">
<label for="customer_lastname">{l s='Last name' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input onkeyup="$('#lastname').val(this.value);" type="text" class="is_required validate form-control" data-validate="isName" id="customer_lastname" name="customer_lastname" value="{if isset($smarty.post.customer_lastname)}{$smarty.post.customer_lastname|escape:'html':'utf-8'}{/if}" />
</div>
<div class="required form-group">
<label for="email">{l s='Email' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="is_required validate form-control" data-validate="isEmail" id="email" name="email" value="{if isset($smarty.post.email)}{$smarty.post.email|escape:'html':'utf-8'}{/if}" />
</div>
<div class="required password form-group">
<label for="passwd">{l s='Password' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="password" class="is_required validate form-control" data-validate="isPasswd" name="passwd" id="passwd" />
<span class="form_info">{l s='(Five characters minimum)' mod='ets_advancedcaptcha'}</span>
</div>
<div class="form-group">
<label>{l s='Date of Birth' mod='ets_advancedcaptcha'}</label>
<div class="row">
<div class="col-xs-4">
<select id="days" name="days" class="form-control">
<option value="">-</option>
{foreach from=$days item=day}
<option value="{$day|intval}" {if ($sl_day == $day)} selected="selected"{/if}>{$day|intval}&nbsp;&nbsp;</option>
{/foreach}
</select>
</div>
<div class="col-xs-4">
<select id="months" name="months" class="form-control">
<option value="">-</option>
{foreach from=$months key=k item=month}
<option value="{$k|intval}" {if ($sl_month == $k)} selected="selected"{/if}>{l s=$month mod='ets_advancedcaptcha'}&nbsp;</option>
{/foreach}
</select>
</div>
<div class="col-xs-4">
<select id="years" name="years" class="form-control">
<option value="">-</option>
{foreach from=$years item=year}
<option value="{$year|intval}" {if ($sl_year == $year)} selected="selected"{/if}>{$year|intval}&nbsp;&nbsp;</option>
{/foreach}
</select>
</div>
</div>
</div>
{if $newsletter}
<div class="checkbox">
<input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) AND $smarty.post.newsletter == 1} checked="checked"{/if} />
<label for="newsletter">{l s='Sign up for our newsletter!' mod='ets_advancedcaptcha'}</label>
</div>
<div class="checkbox">
<input type="checkbox"name="optin" id="optin" value="1" {if isset($smarty.post.optin) AND $smarty.post.optin == 1} checked="checked"{/if} />
<label for="optin">{l s='Receive special offers from our partners!' mod='ets_advancedcaptcha'}</label>
</div>
{/if}
</div>
{if $b2b_enable}
<div class="account_creation">
<h3 class="page-subheading">{l s='Your company information' mod='ets_advancedcaptcha'}</h3>
<p class="form-group">
<label for="">{l s='Company' mod='ets_advancedcaptcha'}</label>
<input type="text" class="form-control" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company|escape:'html':'utf-8'}{/if}" />
</p>
<p class="form-group">
<label for="siret">{l s='SIRET' mod='ets_advancedcaptcha'}</label>
<input type="text" class="form-control" id="siret" name="siret" value="{if isset($smarty.post.siret)}{$smarty.post.siret|escape:'html':'utf-8'}{/if}" />
</p>
<p class="form-group">
<label for="ape">{l s='APE' mod='ets_advancedcaptcha'}</label>
<input type="text" class="form-control" id="ape" name="ape" value="{if isset($smarty.post.ape)}{$smarty.post.ape|escape:'html':'utf-8'}{/if}" />
</p>
<p class="form-group">
<label for="website">{l s='Website' mod='ets_advancedcaptcha'}</label>
<input type="text" class="form-control" id="website" name="website" value="{if isset($smarty.post.website)}{$smarty.post.website|escape:'html':'utf-8'}{/if}" />
</p>
</div>
{/if}
{if isset($PS_REGISTRATION_PROCESS_TYPE) && $PS_REGISTRATION_PROCESS_TYPE}
<div class="account_creation">
<h3 class="page-subheading">{l s='Your address' mod='ets_advancedcaptcha'}</h3>
{foreach from=$dlv_all_fields item=field_name}
{if $field_name eq "company"}
{if !$b2b_enable}
<p class="form-group">
<label for="company">{l s='Company' mod='ets_advancedcaptcha'}</label>
<input type="text" class="form-control" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company|escape:'html':'utf-8'}{/if}" />
</p>
{/if}
{elseif $field_name eq "vat_number"}
<div id="vat_number" style="display:none;">
<p class="form-group">
<label for="vat_number">{l s='VAT number' mod='ets_advancedcaptcha'}</label>
<input type="text" class="form-control" name="vat_number" value="{if isset($smarty.post.vat_number)}{$smarty.post.vat_number|escape:'html':'utf-8'}{/if}" />
</p>
</div>
{elseif $field_name eq "firstname"}
<p class="required form-group">
<label for="firstname">{l s='First name' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" id="firstname" name="firstname" value="{if isset($smarty.post.firstname)}{$smarty.post.firstname|escape:'html':'utf-8'}{/if}" />
</p>
{elseif $field_name eq "lastname"}
<p class="required form-group">
<label for="lastname">{l s='Last name' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" id="lastname" name="lastname" value="{if isset($smarty.post.lastname)}{$smarty.post.lastname|escape:'html':'utf-8'}{/if}" />
</p>
{elseif $field_name eq "address1"}
<p class="required form-group">
<label for="address1">{l s='Address' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="address1" id="address1" value="{if isset($smarty.post.address1)}{$smarty.post.address1|escape:'html':'utf-8'}{/if}" />
<span class="inline-infos">{l s='Street address, P.O. Box, Company name, etc.' mod='ets_advancedcaptcha'}</span>
</p>
{elseif $field_name eq "address2"}
<p class="form-group is_customer_param">
<label for="address2">{l s='Address (Line 2)' mod='ets_advancedcaptcha'}</label>
<input type="text" class="form-control" name="address2" id="address2" value="{if isset($smarty.post.address2)}{$smarty.post.address2|escape:'html':'utf-8'}{/if}" />
<span class="inline-infos">{l s='Apartment, suite, unit, building, floor, etc...' mod='ets_advancedcaptcha'}</span>
</p>
{elseif $field_name eq "postcode"}
{assign var='postCodeExist' value=true}
<p class="required postcode form-group">
<label for="postcode">{l s='Zip/Postal Code' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="postcode" id="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode|escape:'html':'utf-8'}{/if}" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());" />
</p>
{elseif $field_name eq "city"}
<p class="required form-group">
<label for="city">{l s='City' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="city" id="city" value="{if isset($smarty.post.city)}{$smarty.post.city|escape:'html':'utf-8'}{/if}" />
</p>
<!-- if customer hasn't update his layout address, country has to be verified but it's deprecated -->
{elseif $field_name eq "Country:name" || $field_name eq "country"}
<p class="required select form-group">
<label for="id_country">{l s='Country' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_country" id="id_country" class="form-control">
<option value="">-</option>
{foreach from=$countries item=v}
<option value="{$v.id_country|intval}"{if (isset($smarty.post.id_country) AND $smarty.post.id_country == $v.id_country) OR (!isset($smarty.post.id_country) && $sl_country == $v.id_country)} selected="selected"{/if}>{$v.name|escape:'html':'utf-8'}</option>
{/foreach}
</select>
</p>
{elseif $field_name eq "State:name" || $field_name eq 'state'}
{assign var='stateExist' value=true}
<p class="required id_state select form-group">
<label for="id_state">{l s='State' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_state" id="id_state" class="form-control">
<option value="">-</option>
</select>
</p>
{/if}
{/foreach}
{if $postCodeExist eq false}
<p class="required postcode form-group unvisible">
<label for="postcode">{l s='Zip/Postal Code' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="postcode" id="postcode" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode|escape:'html':'utf-8'}{/if}" onkeyup="$('#postcode').val($('#postcode').val().toUpperCase());" />
</p>
{/if}
{if $stateExist eq false}
<p class="required id_state select unvisible form-group">
<label for="id_state">{l s='State' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<select name="id_state" id="id_state" class="form-control">
<option value="">-</option>
</select>
</p>
{/if}
<p class="textarea form-group">
<label for="other">{l s='Additional information' mod='ets_advancedcaptcha'}</label>
<textarea class="form-control" name="other" id="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other|escape:'html':'utf-8'}{/if}</textarea>
</p>
{if isset($one_phone_at_least) && $one_phone_at_least}
<p class="inline-infos">{l s='You must register at least one phone number.' mod='ets_advancedcaptcha'}</p>
{/if}
<p class="form-group">
<label for="phone">{l s='Home phone' mod='ets_advancedcaptcha'}</label>
<input type="text" class="form-control" name="phone" id="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone|escape:'html':'utf-8'}{/if}" />
</p>
<p class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}form-group">
<label for="phone_mobile">{l s='Mobile phone' mod='ets_advancedcaptcha'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>*</sup>{/if}</label>
<input type="text" class="form-control" name="phone_mobile" id="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile|escape:'html':'utf-8'}{/if}" />
</p>
<p class="required form-group" id="address_alias">
<label for="alias">{l s='Assign an address alias for future reference.' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="alias" id="alias" value="{if isset($smarty.post.alias)}{$smarty.post.alias|escape:'html':'utf-8'}{else}{l s='My address' mod='ets_advancedcaptcha'}{/if}" />
</p>
</div>
<div class="account_creation dni">
<h3 class="page-subheading">{l s='Tax identification' mod='ets_advancedcaptcha'}</h3>
<p class="required form-group">
<label for="dni">{l s='Identification number' mod='ets_advancedcaptcha'} <sup>*</sup></label>
<input type="text" class="form-control" name="dni" id="dni" value="{if isset($smarty.post.dni)}{$smarty.post.dni|escape:'html':'utf-8'}{/if}" />
<span class="form_info">{l s='DNI / NIF / NIE' mod='ets_advancedcaptcha'}</span>
</p>
</div>
{/if}
{$HOOK_CREATE_ACCOUNT_FORM nofilter}
<div class="submit clearfix">
<input type="hidden" name="email_create" value="1" />
<input type="hidden" name="is_new_customer" value="1" />
{if isset($back)}<input type="hidden" class="hidden" name="back" value="{$back|escape:'html':'UTF-8'}" />{/if}
<button type="submit" name="submitAccount" id="submitAccount" class="btn btn-default button button-medium">
<span>{l s='Register' mod='ets_advancedcaptcha'}<i class="icon-chevron-right right"></i></span>
</button>
<p class="pull-right required"><span><sup>*</sup>{l s='Required field' mod='ets_advancedcaptcha'}</span></p>
</div>
</form>
{/if}
{strip}
{if isset($smarty.post.id_state) && $smarty.post.id_state}
{addJsDef idSelectedState=$smarty.post.id_state|intval}
{else if isset($address->id_state) && $address->id_state}
{addJsDef idSelectedState=$address->id_state|intval}
{else}
{addJsDef idSelectedState=false}
{/if}
{if isset($smarty.post.id_country) && $smarty.post.id_country}
{addJsDef idSelectedCountry=$smarty.post.id_country|intval}
{else if isset($address->id_country) && $address->id_country}
{addJsDef idSelectedCountry=$address->id_country|intval}
{else}
{addJsDef idSelectedCountry=false}
{/if}
{if isset($countries)}
{addJsDef countries=$countries}
{/if}
{if isset($vatnumber_ajax_call) && $vatnumber_ajax_call}
{addJsDef vatnumber_ajax_call=$vatnumber_ajax_call}
{/if}
{if isset($email_create) && $email_create}
{addJsDef email_create=$email_create|boolval}
{else}
{addJsDef email_create=false}
{/if}
{/strip}

View File

@@ -0,0 +1,128 @@
{*
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs, please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*}
{capture name=path}{l s='Contact' mod='ets_advancedcaptcha'}{/capture}
{include file="$tpl_dir./breadcrumb.tpl"}
<h1>{l s='Customer service' mod='ets_advancedcaptcha'} - {if isset($customerThread) && $customerThread}{l s='Your reply' mod='ets_advancedcaptcha'}{else}{l s='Contact us' mod='ets_advancedcaptcha'}{/if}</h1>
{if isset($confirmation)}
<p>{l s='Your message has been successfully sent to our team.' mod='ets_advancedcaptcha'}</p>
<ul class="footer_links">
<li><a href="{$base_dir|escape:'html':'UTF-8'}"><img class="icon" alt="" src="{$img_dir|escape:'html':'UTF-8'}icon/home.gif"/></a><a href="{$base_dir|escape:'html':'UTF-8'}">{l s='Home' mod='ets_advancedcaptcha'}</a></li>
</ul>
{elseif isset($alreadySent)}
<p>{l s='Your message has already been sent.' mod='ets_advancedcaptcha'}</p>
<ul class="footer_links">
<li><a href="{$base_dir|escape:'html':'UTF-8'}"><img class="icon" alt="" src="{$img_dir|escape:'html':'UTF-8'}icon/home.gif"/></a><a href="{$base_dir|escape:'html':'UTF-8'}">{l s='Home' mod='ets_advancedcaptcha'}</a></li>
</ul>
{else}
<p class="bold">{l s='For questions about an order or for more information about our products' mod='ets_advancedcaptcha'}.</p>
{include file="$tpl_dir./errors.tpl"}
<form action="{$request_uri|escape:'htmlall':'UTF-8'}" method="post" class="std" enctype="multipart/form-data">
<fieldset>
<h3>{l s='send a message' mod='ets_advancedcaptcha'}</h3>
<p class="select">
<label for="id_contact">{l s='Subject Heading' mod='ets_advancedcaptcha'}</label>
{if isset($customerThread.id_contact)}
{foreach from=$contacts item=contact}
{if $contact.id_contact == $customerThread.id_contact}
<input type="text" id="contact_name" name="contact_name" value="{$contact.name|escape:'htmlall':'UTF-8'}" readonly="readonly" />
<input type="hidden" name="id_contact" value="{$contact.id_contact|intval}" />
{/if}
{/foreach}
</p>
{else}
<select id="id_contact" name="id_contact" onchange="showElemFromSelect('id_contact', 'desc_contact')">
<option value="0">{l s='-- Choose --' mod='ets_advancedcaptcha'}</option>
{foreach from=$contacts item=contact}
<option value="{$contact.id_contact|intval}" {if isset($smarty.request.id_contact) && $smarty.request.id_contact == $contact.id_contact}selected="selected"{/if}>{$contact.name|escape:'htmlall':'UTF-8'}</option>
{/foreach}
</select>
</p>
<p id="desc_contact0" class="desc_contact">&nbsp;</p>
{foreach from=$contacts item=contact}
<p id="desc_contact{$contact.id_contact|intval}" class="desc_contact" style="display:none;">
{$contact.description|escape:'htmlall':'UTF-8'}
</p>
{/foreach}
{/if}
<p class="text">
<label for="email">{l s='Email address' mod='ets_advancedcaptcha'}</label>
{if isset($customerThread.email)}
<input type="text" id="email" name="from" value="{$customerThread.email|escape:'htmlall':'UTF-8'}" readonly="readonly" />
{else}
<input type="text" id="email" name="from" value="{$email|escape:'htmlall':'UTF-8'}" />
{/if}
</p>
{if !$PS_CATALOG_MODE}
{if (!isset($customerThread.id_order) || $customerThread.id_order > 0)}
<p class="text select">
<label for="id_order">{l s='Order reference' mod='ets_advancedcaptcha'}</label>
{if !isset($customerThread.id_order) && isset($isLogged) && $isLogged == 1}
<select name="id_order" >
<option value="0">{l s='-- Choose --' mod='ets_advancedcaptcha'}</option>
{foreach from=$orderList item=order}
<option value="{$order.value|intval}" {if $order.selected|intval}selected="selected"{/if}>{$order.label|escape:'htmlall':'UTF-8'}</option>
{/foreach}
</select>
{elseif !isset($customerThread.id_order) && empty($isLogged)}
<input type="text" name="id_order" id="id_order" value="{if isset($customerThread.id_order) && $customerThread.id_order|intval > 0}{$customerThread.id_order|intval}{else}{if isset($smarty.post.id_order) && !empty($smarty.post.id_order)}{$smarty.post.id_order|intval}{/if}{/if}" />
{elseif $customerThread.id_order|intval > 0}
<input type="text" name="id_order" id="id_order" value="{$customerThread.id_order|intval}" readonly="readonly" />
{/if}
</p>
{/if}
{if isset($isLogged) && $isLogged}
<p class="text select">
<label for="id_product">{l s='Product' mod='ets_advancedcaptcha'}</label>
{if !isset($customerThread.id_product)}
{foreach from=$orderedProductList key=id_order item=products name=products}
<select name="id_product" id="{$id_order|intval}_order_products" class="product_select" style="width:300px;{if !$smarty.foreach.products.first} display:none; {/if}" {if !$smarty.foreach.products.first}disabled="disabled" {/if}>
<option value="0">{l s='-- Choose --' mod='ets_advancedcaptcha'}</option>
{foreach from=$products item=product}
<option value="{$product.value|intval}">{$product.label|escape:'htmlall':'UTF-8'}</option>
{/foreach}
</select>
{/foreach}
{elseif $customerThread.id_product > 0}
<input type="text" name="id_product" id="id_product" value="{$customerThread.id_product|intval}" readonly="readonly" />
{/if}
</p>
{/if}
{/if}
{if $fileupload == 1}
<p class="text">
<label for="fileUpload">{l s='Attach File' mod='ets_advancedcaptcha'}</label>
<input type="hidden" name="MAX_FILE_SIZE" value="2000000" />
<input type="file" name="fileUpload" id="fileUpload" />
</p>
{/if}
<p class="textarea">
<label for="message">{l s='Message' mod='ets_advancedcaptcha'}</label>
<textarea id="message" name="message" rows="15" cols="10">{if isset($message)}{$message|escape:'htmlall':'UTF-8'|stripslashes}{/if}</textarea>
</p>
{hook h='displayPaCaptcha' posTo='contact'}
<p class="submit">
<input type="submit" name="submitMessage" id="submitMessage" value="{l s='Send' mod='ets_advancedcaptcha'}" class="button_large" />
</p>
</fieldset>
</form>
{/if}

View File

@@ -0,0 +1,154 @@
{*
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs, please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*}
{capture name=path}{l s='Contact' mod='ets_advancedcaptcha'}{/capture}
<h1 class="page-heading bottom-indent">
{l s='Customer service' mod='ets_advancedcaptcha'} - {if isset($customerThread) && $customerThread}{l s='Your reply' mod='ets_advancedcaptcha'}{else}{l s='Contact us' mod='ets_advancedcaptcha'}{/if}
</h1>
{if isset($confirmation)}
<p class="alert alert-success">{l s='Your message has been successfully sent to our team.' mod='ets_advancedcaptcha'}</p>
<ul class="footer_links clearfix">
<li>
<a class="btn btn-default button button-small" href="{if isset($force_ssl) && $force_ssl}{$base_dir_ssl|escape:'html':'UTF-8'}{else}{$base_dir|escape:'html':'UTF-8'}{/if}">
<span>
<i class="icon-chevron-left"></i>{l s='Home' mod='ets_advancedcaptcha'}
</span>
</a>
</li>
</ul>
{elseif isset($alreadySent)}
<p class="alert alert-warning">{l s='Your message has already been sent.' mod='ets_advancedcaptcha'}</p>
<ul class="footer_links clearfix">
<li>
<a class="btn btn-default button button-small" href="{if isset($force_ssl) && $force_ssl}{$base_dir_ssl|escape:'html':'UTF-8'}{else}{$base_dir|escape:'html':'UTF-8'}{/if}">
<span>
<i class="icon-chevron-left"></i>{l s='Home' mod='ets_advancedcaptcha'}
</span>
</a>
</li>
</ul>
{else}
{include file="$tpl_dir./errors.tpl"}
<form action="{$request_uri|escape:'html':'UTF-8'}" method="post" class="contact-form-box" enctype="multipart/form-data">
<fieldset>
<h3 class="page-subheading">{l s='send a message' mod='ets_advancedcaptcha'}</h3>
<div class="clearfix">
<div class="col-xs-12 col-md-3">
<div class="form-group selector1">
<label for="id_contact">{l s='Subject Heading' mod='ets_advancedcaptcha'}</label>
{if isset($customerThread.id_contact) && $customerThread.id_contact && $contacts|count}
{assign var=flag value=true}
{foreach from=$contacts item=contact}
{if $contact.id_contact == $customerThread.id_contact}
<input type="text" class="form-control" id="contact_name" name="contact_name" value="{$contact.name|escape:'html':'UTF-8'}" readonly="readonly" />
<input type="hidden" name="id_contact" value="{$contact.id_contact|intval}" />
{$flag=false}
{/if}
{/foreach}
{if $flag && isset($contacts.0.id_contact)}
<input type="text" class="form-control" id="contact_name" name="contact_name" value="{$contacts.0.name|escape:'html':'UTF-8'}" readonly="readonly" />
<input type="hidden" name="id_contact" value="{$contacts.0.id_contact|intval}" />
{/if}
</div>
{else}
<select id="id_contact" class="form-control" name="id_contact">
<option value="0">{l s='-- Choose --' mod='ets_advancedcaptcha'}</option>
{foreach from=$contacts item=contact}
<option value="{$contact.id_contact|intval}"{if isset($smarty.request.id_contact) && $smarty.request.id_contact == $contact.id_contact} selected="selected"{/if}>{$contact.name|escape:'html':'UTF-8'}</option>
{/foreach}
</select>
</div>
<p id="desc_contact0" class="desc_contact{if isset($smarty.request.id_contact)} unvisible{/if}">&nbsp;</p>
{foreach from=$contacts item=contact}
<p id="desc_contact{$contact.id_contact|intval}" class="desc_contact contact-title{if !isset($smarty.request.id_contact) || $smarty.request.id_contact|intval != $contact.id_contact|intval} unvisible{/if}">
<i class="icon-comment-alt"></i>{$contact.description|escape:'html':'UTF-8'}
</p>
{/foreach}
{/if}
<p class="form-group">
<label for="email">{l s='Email address' mod='ets_advancedcaptcha'}</label>
{if isset($customerThread.email)}
<input class="form-control grey" type="text" id="email" name="from" value="{$customerThread.email|escape:'html':'UTF-8'}" readonly="readonly" />
{else}
<input class="form-control grey validate" type="text" id="email" name="from" data-validate="isEmail" value="{$email|escape:'html':'UTF-8'}" />
{/if}
</p>
{if !$PS_CATALOG_MODE}
{if (!isset($customerThread.id_order) || $customerThread.id_order > 0)}
<div class="form-group selector1">
<label>{l s='Order reference' mod='ets_advancedcaptcha'}</label>
{if !isset($customerThread.id_order) && isset($is_logged) && $is_logged}
<select name="id_order" class="form-control">
<option value="0">{l s='-- Choose --' mod='ets_advancedcaptcha'}</option>
{foreach from=$orderList item=order}
<option value="{$order.value|intval}"{if $order.selected|intval} selected="selected"{/if}>{$order.label|escape:'html':'UTF-8'}</option>
{/foreach}
</select>
{elseif !isset($customerThread.id_order) && empty($is_logged)}
<input class="form-control grey" type="text" name="id_order" id="id_order" value="{if isset($customerThread.id_order) && $customerThread.id_order|intval > 0}{$customerThread.id_order|intval}{else}{if isset($smarty.post.id_order) && !empty($smarty.post.id_order)}{$smarty.post.id_order|escape:'html':'UTF-8'}{/if}{/if}" />
{elseif $customerThread.id_order|intval > 0}
<input class="form-control grey" type="text" name="id_order" id="id_order" value="{if isset($customerThread.reference) && $customerThread.reference}{$customerThread.reference|escape:'html':'UTF-8'}{else}{$customerThread.id_order|intval}{/if}" readonly="readonly" />
{/if}
</div>
{/if}
{if isset($is_logged) && $is_logged}
<div class="form-group selector1">
<label class="unvisible">{l s='Product' mod='ets_advancedcaptcha'}</label>
{if !isset($customerThread.id_product)}
{foreach from=$orderedProductList key=id_order item=products name=products}
<select name="id_product" id="{$id_order|intval}_order_products" class="unvisible product_select form-control"{if !$smarty.foreach.products.first} style="display:none;"{/if}{if !$smarty.foreach.products.first} disabled="disabled"{/if}>
<option value="0">{l s='-- Choose --' mod='ets_advancedcaptcha'}</option>
{foreach from=$products item=product}
<option value="{$product.value|intval}">{$product.label|escape:'html':'UTF-8'}</option>
{/foreach}
</select>
{/foreach}
{elseif $customerThread.id_product > 0}
<input type="hidden" name="id_product" id="id_product" value="{$customerThread.id_product|intval}" readonly="readonly" />
{/if}
</div>
{/if}
{/if}
{if $fileupload == 1}
<p class="form-group">
<label for="fileUpload">{l s='Attach File' mod='ets_advancedcaptcha'}</label>
<input type="hidden" name="MAX_FILE_SIZE" value="{if isset($max_upload_size) && $max_upload_size}{$max_upload_size|intval}{else}2000000{/if}" />
<input type="file" name="fileUpload" id="fileUpload" class="form-control" />
</p>
{/if}
{hook h='displayPaCaptcha' posTo='contact'}
</div>
<div class="col-xs-12 col-md-9">
<div class="form-group">
<label for="message">{l s='Message' mod='ets_advancedcaptcha'}</label>
<textarea class="form-control" id="message" name="message">{if isset($message)}{$message|escape:'html':'UTF-8'|stripslashes}{/if}</textarea>
</div>
</div>
</div>
<div class="submit">
<input type="text" name="url" value="" class="hidden" />
<input type="hidden" name="contactKey" value="{if isset($contactKey)}{$contactKey|escape:'html':'UTF-8'}{/if}" />
<button type="submit" name="submitMessage" id="submitMessage" class="button btn btn-default button-medium"><span>{l s='Send' mod='ets_advancedcaptcha'}<i class="icon-chevron-right right"></i></span></button>
</div>
</fieldset>
</form>
{/if}
{addJsDefL name='contact_fileDefaultHtml'}{l s='No file selected' mod='ets_advancedcaptcha' js=1}{/addJsDefL}
{addJsDefL name='contact_fileButtonHtml'}{l s='Choose File' mod='ets_advancedcaptcha' js=1}{/addJsDefL}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

Some files were not shown because too many files have changed in this diff Show More