@@ -1,109 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
class RatingAlert
|
||||
{
|
||||
const TABLE_NAME = 'ts_rating_alert';
|
||||
const MAIL_TEMPLATE = 'rating_email';
|
||||
|
||||
public static function save($id_order)
|
||||
{
|
||||
Db::getInstance()->AutoExecute(_DB_PREFIX_.self::TABLE_NAME, array('id_order' => (int)($id_order)), 'INSERT');
|
||||
}
|
||||
|
||||
private static function _getAlertsInformations($nb_days = 10)
|
||||
{
|
||||
return Db::getInstance()->ExecuteS('
|
||||
SELECT a.id_alert, c.`email`, o.`id_order`, o.`id_lang`
|
||||
FROM `'._DB_PREFIX_.self::TABLE_NAME.'` a
|
||||
LEFT JOIN '._DB_PREFIX_.'orders o ON (a.id_order = o.id_order)
|
||||
LEFT JOIN '._DB_PREFIX_.'customer c ON (c.id_customer = o.id_customer)
|
||||
WHERE DATE_ADD(o.`date_add`, INTERVAL '.(int)($nb_days).' DAY) <= NOW()');
|
||||
}
|
||||
|
||||
public static function removeAlerts($ids)
|
||||
{
|
||||
$to_remove = array();
|
||||
foreach ($ids AS $id)
|
||||
$to_remove[] = (int)($id);
|
||||
|
||||
return Db::getInstance()->Execute('DELETE FROM `'._DB_PREFIX_.self::TABLE_NAME.'` WHERE `id_alert` IN (\''.implode('\',\'', $to_remove).'\')');
|
||||
}
|
||||
|
||||
public static function executeCronTask()
|
||||
{
|
||||
global $cookie;
|
||||
if (!Configuration::get('TS_SEND_SEPERATE_MAIL'))
|
||||
return true;
|
||||
|
||||
$to_remove = array();
|
||||
$alerts_infos = RatingAlert::_getAlertsInformations((int)(Configuration::get('TS_SEND_SEPERATE_MAIL_DELAY')));
|
||||
|
||||
$ts_module = new TrustedShops();
|
||||
|
||||
foreach ($alerts_infos AS $infos)
|
||||
{
|
||||
$cookie->id_lang = $infos['id_lang'];
|
||||
$subject = $ts_module->getL('title_part_1').' '.Configuration::get('PS_SHOP_NAME').$ts_module->getL('title_part_2');
|
||||
$template_vars = array('{ts_id}' => Configuration::get('TS_ID_'.(int)($infos['id_lang'])),
|
||||
'{button_url}' => TrustedShops::getHttpHost(true, true)._MODULE_DIR_.$ts_module->name.'/img',
|
||||
'{rating_url}' => $ts_module->getRatingUrlWithBuyerEmail($infos['id_lang'], $infos['id_order'], $infos['email']));
|
||||
|
||||
$result = Mail::Send((int)($infos['id_lang']), self::MAIL_TEMPLATE, $subject, $template_vars, $infos['email'], NULL, Configuration::get('PS_SHOP_EMAIL'), Configuration::get('PS_SHOP_NAME'), NULL, NULL, dirname(__FILE__).'/mails/');
|
||||
|
||||
if ($result)
|
||||
$to_remove[] = (int)($infos['id_alert']);
|
||||
}
|
||||
|
||||
if (sizeof($to_remove) > 0)
|
||||
self::removeAlerts($to_remove);
|
||||
|
||||
return (sizeof($to_remove) == sizeof($alerts_infos));
|
||||
}
|
||||
|
||||
public static function createTable()
|
||||
{
|
||||
return Db::getInstance()->Execute('
|
||||
CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.self::TABLE_NAME.'` (
|
||||
`id_alert` INT NOT NULL AUTO_INCREMENT,
|
||||
`id_order` INT NOT NULL,
|
||||
PRIMARY KEY (`id_alert`),
|
||||
UNIQUE KEY `id_order` (`id_order`)
|
||||
) ENGINE = '._MYSQL_ENGINE_);
|
||||
}
|
||||
|
||||
public static function dropTable()
|
||||
{
|
||||
return Db::getInstance()->Execute('DROP TABLE IF EXISTS `'._DB_PREFIX_.self::TABLE_NAME.'`');
|
||||
}
|
||||
|
||||
public static function truncateTable()
|
||||
{
|
||||
return Db::getInstance()->Execute('TRUNCATE TABLE `'._DB_PREFIX_.self::TABLE_NAME.'`');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,71 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
class TrustedShopsSoapApi
|
||||
{
|
||||
const TS_SERVER = 'www.trustedshops.de';
|
||||
const WS_USER = 'presta-shopsoftware';
|
||||
const WS_PASSWORD = 'Yx1F5uXR';
|
||||
|
||||
const ACTIVATE = 1;
|
||||
const DESACTIVATE = 0;
|
||||
|
||||
const RT_OK = 'OK';
|
||||
const RT_SOAP_ERROR = -1;
|
||||
const RT_INVALID_TSID = 'INVALID_TSID';
|
||||
const RT_NOT_REGISTERED = 'NOT_REGISTERED_FOR_TRUSTEDRATING';
|
||||
const RT_WRONG_LOGIN = 'WRONG_WSUSERNAME_WSPASSWORD';
|
||||
|
||||
|
||||
public static function validate($partener_package, $trusted_shops_id, $action = self::ACTIVATE)
|
||||
{
|
||||
$ini = ini_set('soap.wsdl_cache_enabled', 1);
|
||||
$result = self::RT_SOAP_ERROR;
|
||||
|
||||
try
|
||||
{
|
||||
$wsdlUrl = 'https://'.self::TS_SERVER.'/ts/services/TsRating?wsdl';
|
||||
$client = new SoapClient($wsdlUrl);
|
||||
|
||||
$result = $client->updateRatingWidgetState($trusted_shops_id, $action, self::WS_USER, self::WS_PASSWORD, $partener_package);
|
||||
}
|
||||
catch(SoapFault $fault)
|
||||
{
|
||||
$errorText = 'SOAP Fault: (faultcode:{$fault->faultcode}, faultstring:{$fault->faultstring})';
|
||||
|
||||
/** Enable this line if you are experiencing issues with your Trusted Shops ID activation.
|
||||
die($errorText);
|
||||
*/
|
||||
}
|
||||
|
||||
if ($result == self::RT_WRONG_LOGIN)
|
||||
die('Wrong login/password');
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,52 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
class WidgetCache
|
||||
{
|
||||
private $_fileName;
|
||||
private $__ts_id;
|
||||
|
||||
public function __construct($_fileName, $_ts_id)
|
||||
{
|
||||
$this->_fileName = $_fileName;
|
||||
$this->_ts_id = $_ts_id;
|
||||
}
|
||||
|
||||
public function isFresh($timeout = 10800)
|
||||
{
|
||||
if (file_exists($this->_fileName))
|
||||
return ((time() - filemtime($this->_fileName)) < $timeout);
|
||||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
public function refresh()
|
||||
{
|
||||
return file_put_contents($this->_fileName, file_get_contents('https://www.trustedshops.com/bewertung/widget/widgets/'.$this->_ts_id.'.gif'));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<module>
|
||||
<name>trustedshops</name>
|
||||
<displayName>Trusted Shops Customer Rating</displayName>
|
||||
<version>1.2</version>
|
||||
<description>Boost consumer confidence and turn more shoppers into buyers.</description>
|
||||
<author></author>
|
||||
<tab>payment_security</tab>
|
||||
<confirmUninstall>Are you sure you want to delete all your settings?</confirmUninstall>
|
||||
<is_configurable>1</is_configurable>
|
||||
<need_instance>1</need_instance>
|
||||
<limited_countries></limited_countries>
|
||||
</module>
|
||||
@@ -1,34 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
include(dirname(__FILE__).'/../../config/config.inc.php');
|
||||
include(dirname(__FILE__).'/../../init.php');
|
||||
include(dirname(__FILE__) .'/trustedshops.php');
|
||||
|
||||
if (isset($_GET['secure_key']) AND Configuration::get('PS_TS_SECURE_KEY') == $_GET['secure_key'])
|
||||
RatingAlert::executeCronTask();
|
||||
|
||||
@@ -1,36 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
include(dirname(__FILE__).'/../../config/config.inc.php');
|
||||
include(dirname(__FILE__).'/../../init.php');
|
||||
include(dirname(__FILE__) .'/trustedshops.php');
|
||||
|
||||
$ts_module = new TrustedShops();
|
||||
TSBuyerProtection::setTranslationObject($ts_module);
|
||||
$bp = new TSBuyerProtection();
|
||||
$bp->setModuleName($ts_module->name);
|
||||
$bp->cronTask();
|
||||
@@ -1,172 +0,0 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_02ecb4a4709d9bcc590f1a25fc82c0e2'] = 'Trusted Shops Käuferschutz (empfohlen)';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_b55aab8932a39ca85bb0a1b6eb83f83f'] = 'Käuferschutz ab';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_b3c25d2f94cf87ece3dbb2907318520c'] = 'Die im Käuferschutz enthaltene Trusted Shops Garantie sichert Ihren Online-Kauf ab. Mit der Übermittlung und';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_536a056b710e94b16169efd17a4a657b'] = 'Speicherung';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_2dc4be4d5564180e6df95d5a5a679195'] = 'meiner E-Mail-Adresse zur Abwicklung des Käuferschutzes durch Trusted Shops bin ich einverstanden.';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_229eb04083e06f419f9ac494329f957d'] = 'für den Käuferschutz.';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_4ccaceceffe4b5e58f6a7a7ed3ced4c4'] = 'Garantiebedingungen';
|
||||
$_MODULE['<{trustedshops}prestashop>order-confirmation-tsbp-classic_7b5406da2d5f15923d6b01d3264c5619'] = 'Trusted Shops Gütesiegel - Bitte hier Gültigkeit prüfen!';
|
||||
$_MODULE['<{trustedshops}prestashop>order-confirmation-tsbp-classic_4052048c767f22e9071c3e6f404d00c6'] = 'Als zusätzlichen Service bieten wir Ihnen den Trusted Shops Käuferschutz an. Wir übernehmen alle Kosten dieser Garantie, Sie müssen sich lediglich anmelden.';
|
||||
$_MODULE['<{trustedshops}prestashop>order-confirmation-tsbp-classic_f975f42362625cf21e592009ff4b3d7b'] = 'Anmeldung zum Trusted Shops Käuferschutz';
|
||||
$_MODULE['<{trustedshops}prestashop>seal_of_approval_ee9ae315b086e1b1a0c8fdc6078f9add'] = 'Trusted Shops Gütesiegel - Bitte hier Gültigkeit prüfen!';
|
||||
$_MODULE['<{trustedshops}prestashop>seal_of_approval_750bea678eeb1d07f21fe86173288e2e'] = 'Testzertifikat für Shopsystempartner DE trägt das Trusted Shops Zertifikat mit Käuferschutz. Mehr...';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_0aa7ce92297d05fc09fb9fdbe5da6be6'] = 'Dieses Modul erfordert die SOAP-PHP-Erweiterung, um ordnungsgemäß zu funktionieren.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_9a983837b32d42343dc0c62d35b1f955'] = 'Trusted Shops Kundenbeurteilung';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_eeae17826fa637ecca0344165514ab4e'] = 'Stärken Sie das Vertrauen der Verbraucher und machen Sie mehr Shopper zu Käufer';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_968e0f78caa7d3245c8f6f858de993d8'] = 'Sie sind sicher, dass Sie alle Ihre Einstellungen löschen möchten?';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_79fc246c2b70963d27ebb0e9ebaab349'] = 'Bitte kontaktieren Sie Trusted Shops unter service@trustedshops.de';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_de14ce5aee772cd0330819c0ecf76adb'] = 'Benutzername oder Kennwort sind ungültig.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_43048f232a4ebab67835c425a1113b29'] = 'Der Kreditrahmen bei Trusted Shops wurde aufgehoben.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_eb601fb44b908fec1ee41383d4d948ac'] = 'Kein Kreditrahmen bei Trusted Shops verfügbar.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_cb71cc86f5c38200b3821adb49966522'] = 'Die Daten konnten nicht gespeichert werden.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_07ff7715e67826fb7d9af1d2d1d30e46'] = 'Ein Fehler ist aufgetreten.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5fb7a36c0bdf3cde4f3e038a0eff2b6f'] = 'Web-Service-Anmeldung oder TS-ID ungültig';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_b515cf9cc8234bf6413ed84f5cde066a'] = 'Das Kreditlimit des Shops wurde von Trusted Shops aufgehoben';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_6453e3467d4c087afbfd33d4013cd3e9'] = 'Bestellnummer bereits vergeben';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_8100f51dcd57174e15ef0c3b3456e3ca'] = 'Produkt ohne Käuferschutz-Unterstützung ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_f9e1392429699e6921d775ca98660faa'] = 'Inaktive Zahlungsmethode';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_1dbec1039be7b747704bde7acddca451'] = 'Nicht unterstützte Zahlungsmethode';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_53cf8eb9e9cb36a367ba553b30cac77a'] = 'Die Währung des Käuferschutz- Produkts stimmt nicht mit der Währung des Warenkorbs überein';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5ad1407fbd2b8c75e47b9c15a976c4d2'] = 'Diese Währung wird in diesem Shop nicht unterstützt';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_74d27ae48e301b6bbf9bba911a3037e3'] = 'Dieser Wechselkurs wird nicht unterstützt';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_02a4ecbbc2d936231663c1b3255ba137'] = 'Diese Zahlungsmethode wird nicht unterstützt';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_f8c4826b4580a3f2e9786ac6bc5c8635'] = 'Kein Kreditlimit für dieses Zertifikat zur Verfügung';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_f1b7a6cab6562707aea970971edba9c4'] = 'Der Liefertermin liegt in der Vergangenheit';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_93dff7e30cdf7dec5572f192c774f5ca'] = 'Die Garantie gilt für einen Kauf, der vor mehr als 3 Tagen gemacht wurde';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_138ed5814f1b04d3c44fe4975acdeefc'] = 'Die Email-Adresse enthält einen Fehler';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5eded1b4097ea8e9bd12bb35fe57b6b1'] = 'Es wurde keine Bestellnummer zugewiesen';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5b8230d466534f0cf347188d78c0b248'] = 'Es wurde keine Kundennummer zugewiesen';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5ace4c2d63acb0eb87071efea55be813'] = 'Das Kreditlimit für dieses Zertifikat wurde überschritten';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_35caaf4f25a287580302c851d88a29dc'] = 'Es wurde keine E-Mail-Adresse zugewiesen';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_0db21cf8f0a16321cda7a2e9e37850c7'] = 'Nicht anwendbares Käuferschutz-Produkt';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_db26e10564e958809d798e8048fcbc0a'] = 'Ungültige Sicherheitstoken';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_36cd72871a0f3dac493a38f5d82f7441'] = 'Allgemeiner Systemfehler, wenden Sie sich bitte an Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_fed85cfada8f3bbc5ad9eb128227210a'] = 'Lastschrift';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_73a61696f100b3858511e212a3feea6b'] = 'Kreditkarte';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_466eadd40b3c10580e3ab4e8061161ce'] = 'Rechnung';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_22d2c7f90dc862df71ac7aff95183fb2'] = 'Nachnahme';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_1ff8e518d6a560568fbf66f01e9eb937'] = 'Vorauskasse';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3e0deb2f1df28a6a13c9c18cc0e1c755'] = 'Scheck';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3deb0a4146e33809942e46416fb60228'] = 'Paybox';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_4761b2212f04e7409afa7f8103d6fc60'] = 'Zahlung bei Abholung';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_917709346cd3cefd00e463f65f1a55d8'] = 'Finanzierung';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9e6689415e7e5aa4d42d1f2abc78726c'] = 'Leasing';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_1c9f173da9bf497cffc19357ab04a8e8'] = 'T-Pay';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_369b94cdb6bac25435d00d04255de1ab'] = 'Click&Buy';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_31911306551723245e7417ae4520fecb'] = 'Giropay';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_6c132b5e262594950586ae13a7d3aa94'] = 'Google Checkout';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_982830b027a279fdc4b4b7993f65498f'] = 'Zahlungskarte des Online Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_7e1795d054242cf7c546c1491a7c467d'] = 'sofortüberweisung.de';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_37554cc43c645833d6713b9cddda909b'] = 'moneybookers.com';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9203aec73d2ea1770f66f065c4069816'] = 'Andere Zahlungsart';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_068ce643ff39bf2189935d14736fd10b'] = 'Gütesiegel und Käuferschutz';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f51dabfce0c8ccc01734ed38d8afe27a'] = 'JSON Funktionen müssen in Ihrer PHP-Version implementiert sein';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_b1801eaadecfddd04529313a1e929262'] = 'Das Zertifikat ist gültig';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_ce323cb3453812434f9abc007ba7a952'] = 'Das Zertifikat ist abgelaufen';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_98121ffd0d2a0b4bed569a726632f402'] = 'Das Zertifikat wurde deaktiviert';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3ec2499357b45a38139485b2b824aa4c'] = 'Der Shop ist derzeit zertifiziert';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_a8fcbddffdaccc6daa529aa9c38d82df'] = 'Kein Zertifikat wurde der Trusted Shops-ID zugewiesen';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_5abbd73fc5189212c57adfb43adac459'] = 'Testzertifikat';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_eaf4354c3a17f478859421ac2e33a975'] = 'Code Nr.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_d9fd9cab8b813e70e20c615abf036307'] = 'Nachricht:';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_109715467b74bd66639faa5673f707c1'] = 'Unbekannter Fehler.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_d4eb1e83b0ea3af3e2b8a6e7b7984d9c'] = 'Das Feld % ist falsch, stellen Sie bitte sicher, dass es richtig ausgefüllt war.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c230eb5eefd15fa219ff97d42e461a7d'] = 'Einige Parameter beim Senden an die \"requestForProtectionV2\"-Methode sind falsch oder fehlen.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_b656f5f53cf7ee9bbfe7452685f71e30'] = 'Trusted Shops API sendet einen Fehler zur Anwendung Nr. zurück';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_77efb7bc0be02351991cba2102bb0656'] = 'Trusted Shops Anwendungsnummer %1$d wurde erfolgreich verarbeitet. Die Garantienummer lautet: %2$d';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_fd511061055fcb2d10d31a51be3539d0'] = 'Anmelde-Link ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_de5536f42490f11e92ad1c20d999fd15'] = 'Hier klicken, um den Anmelde-Link zu erhalten';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_56405fbe18e269145ebe3f7232f11be6'] = 'Anmelde-Link wurde erstellt. Folgen Sie diesem Link, wenn Sie vorher nicht weitergeleitet wurden.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_97e7c9a7d06eac006a28bf05467fcc8b'] = 'Link';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c80549181fa4baa695cd054b6dd21c49'] = 'Produkt wurde nicht gespeichert.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_76044a7414d56c702b0134907e1a3ccd'] = 'Das Zertifikat wurde richtig hinzugefügt.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_7e7177d7660bfff10363700311b0016d'] = 'Sie müssen die Zertifikate nacheinander bearbeiten oder löschen';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_259060bb469ed1256c2e758e32da126f'] = 'Das Zertifikat';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_8512ae7d57b1396273f76fe6ed341a23'] = 'Sprache';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f7ea4ac740662d2427d1ef1f2695206d'] = 'wurde korrekt gelöscht';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3fb2ea84b90d4ea9fab48ea356a2319b'] = 'Zertifikats-Login wurde richtig hinzugefügt.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_e32263743aac776e5e32fc385d8b669a'] = 'Trusted Shops ist das bekannte Internet-Gütesiegel für Online-Shops mit Käuferschutz für Ihre Kunden. Bei einer Zertifizierung wird Ihr Shop umfassenden Tests unterzogen. Diese Prüfung mit mehr als 100 Einzelkriterien orientiert sich an den Forderungen von Verbraucherschützern sowie dem nationalen und europäischen Recht.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_2c786e15a571a442adf85460e6358883'] = 'Mehr Umsatz durch mehr Vertrauen!';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_e06f60bb083e167516a94aafd5a3a2e2'] = 'Das Trusted Shops Gütesiegel ist optimal, um das Vertrauen Ihrer Online-Kunden zu steigern. Vertrauen steigert die Bereitschaft Ihrer Kunden, bei Ihnen einzukaufen.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_8dd66ca6788218bd7d2ba7fe43c34f63'] = 'Weniger Kaufabbrüche';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_26286e2764ccde55c99d1b258315aa1a'] = 'Sie bieten Ihren Online-Kunden ein starkes Argument: Den Trusted Shops Käuferschutz. Durch diese zusätzliche Sicherheit werden weniger Einkäufe abgebrochen.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_710142158c105c01ef807ce959cbc451'] = 'Ertragreiche und nachhaltige Kundenbeziehung';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f7e15d97ad927ef705de61e787883ada'] = 'Das Trusted Shops Gütesiegel mit Käuferschutz ist für viele Online-Shopper ein nachhaltiges Qualitätsmerkmal für sicheres Einkaufen im Internet. Aus Einmalkäufern werden Stammkunden.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_dc62561dd8d390e274487516e869fc93'] = 'Den Anmelde-Link erhalten';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_5c93149208b3885248b960eb22e6ba49'] = 'Diese Variable wurde Ihnen per E-Mail von TrustedShops zugesendet';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_233a96df2f68dbeafaa3126edadc1ce8'] = 'Interne Identifizierung der Shop-Software bei Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_261720a5c993fb1cfad560d874d06254'] = 'Etracker-Kanal';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_02977dc4b8561c8d7312b1931782c36b'] = 'Etracker-Kampagne';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_4994a8ffeba4ac3140beb89e8d41f174'] = 'Sprache';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_2541d938b0a58946090d7abdde0d3890'] = 'senden';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_72ca0dcf49befb037f8d4734ee0a2a1c'] = 'Trusted Shops Zertifikat hinzufügen';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_48e31908bfdcda34b0f01cad9d7077af'] = 'Neues Zertifikat';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_75904cf055527a97739601e0f5ff7e51'] = 'Hinzufügen';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_566853604b7330b3adbb9105cb15e96b'] = 'Trusted Shops Zertifikate verwalten';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_eb0f48a107df1a0f343d4cd513b555e6'] = 'Zertifikat';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_46a2a41cc6e552044816a2d04634545d'] = 'Status';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_a1fa27779242b4902f7ae3bdd5c6d508'] = 'Typ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_6c61ebc45acfe2f244e91ac4cd423e81'] = 'Shop URL';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_7dce122004969d56ae2e0245cb754d35'] = 'bearbeiten';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_97bd7efe2f4d953cc0b77a25ff053d97'] = 'Login oder Kennwort fehlt';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_10b5f8531f2b6a3f6d8abad45024bbea'] = 'nicht nötig';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_5c697646774e5acf5c5864b6819e82b5'] = 'Zertifikat bearbeiten';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f8c823f9ba0a86ceaa8d3ea7e688595d'] = 'Zertifikats-ID';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_92f1b1481fa6ff46c4a3caae78354dab'] = 'Benutzernamen';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_dc647eb65e6711e155375218212b3964'] = 'Kennwort';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_89c26d1f2de72a1e78d0ae7a7b83880c'] = 'Zu bearbeitende Zahlungsart ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_23a58bf9274bedb19375e527a0744fa9'] = 'mit';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_fd5291d7f0624933870702ff183bb14e'] = 'Zahlungsmodul';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_b3b1a406e097bc87c8745db26e11904e'] = 'Aktualisieren';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c9ba5f6e6d58162530424afaa68bf496'] = 'Cronjob-Konfiguration';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9a82b12b4b1fe9b34ce7c2952f0284d2'] = 'Sie müssen eine cron-Aufgabe auf Ihrem Server einrichten, der mit Ihrem EXCELLENT Zertifikat arbeitet.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c17d7635f5ee99ee25f7f2cc9a672c74'] = 'Die Datei, die Sie aufrufen müssen:';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_a3c2818ac0ecfe9beff0973388eedd69'] = 'Trusted Shops empfiehlt, dass die Anfrage alle 10Minuten von einem Cronjob automatisch ausgeführt wird.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_94f97da736a5f5f2fd137fa0fc7c2482'] = 'Die Trusted Shops Käuferschutz benötigt ein Login, umerfolgreich abzulaufen. Bitte kontaktieren Sie den Shop-Administrator.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9d36bad327b052a9bdec7003f95ce4bd'] = 'Es ist ein Problem mit Ihrer Sprache aufgetreten:';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_03e9e3ceaf5769311c57b5903a958e94'] = 'Ein Käufer kann nicht mehrere Käuferschutz-Produkte kaufen.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_be660f2416cf9cb86913ab902886928c'] = 'Sie erhalten eine Mail von Trusted Shops mit Ihrer Garantienummer.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c006c102f7e2ffef1f7c1808d5e0e54a'] = 'Kundenbeurteilung';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_b20a16afda98421bbf7457ccfa50e311'] = 'Dieses Modul benötigt Schreib-und Leserechte auf dem Modul Cache-Verzeichnis.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_0aa7ce92297d05fc09fb9fdbe5da6be6'] = 'Dieses Modul erfordert die SOAP-PHP-Erweiterung, um ordnungsgemäß zu funktionieren.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_1097e2b0ee70e248749f0d0a9292df56'] = 'Ungültige Trusted Shops-ID';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_086dbc83aa6b78fa9a234d264ba5808a'] = 'Ungültige Frist';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_24bbca53f91f119c930d147557a4e997'] = 'Bitte melden Sie sich an';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_6c92285fa6d3e827b198d120ea3ac674'] = 'hier';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9ad6278cff9ee53a9970b3a9ecc00a5c'] = 'oder wenden Sie sich an service@trustedshops.co.uk.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_b4fc8e4eaf37aa936859367ad7c642ca'] = 'Kundenbeurteilung ist noch nicht für diese Trusted Shops-ID aktiviert';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_8db5bd2272b51b3525ad7661c10d8b2b'] = 'Ein Fehler ist aufgetreten';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c888438d14855d7d96a2724ee9c306bd'] = 'Einstellungen aktualisiert';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Aktiv';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_eeb41070f0552af9f1339ed58da237fb'] = 'Inaktiv, bis Sie Ihre Trusted Shops-ID angeben';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9eb274fb901206f4fc8345a787443269'] = 'Achtung, alle vorhandenen Bewertungsnachrichten werden gelöscht';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_2a94082b582d0620bae922fc14c36444'] = 'Grundeinstellungen';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_e66ff458a8281bc8983ef58f991accb0'] = 'Bitte füllen Sie Ihre Trusted Shops-ID aus (eine ID pro Sprache):';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9dc0b7bdd32d5e30f4d71eb5abb6b8d4'] = 'Einstellungen anzeigen';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_b30cb94d482485bf0bf7015520ffb557'] = 'Trickfenster im Shop anzeigen';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_75a1b325a14f20c2cbb97061d1340451'] = 'Bewertungs-Link im Shop-Frontend anzeigen ';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_ab2ededbdea4f61279ec75b5777d39a0'] = 'Bewertungs-Link auf Bestellungsbestätigungsseite anzeigen';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_8c9da127717bedb90821f29c6de12ce7'] = 'Bewertungs-Link in separater E-Mail senden';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_d344c0ebc1a11797405e4115a8260deb'] = 'Senden Sie die E-Mail nach';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_44fdec47036f482b68b748f9d786801b'] = 'Tagen';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9013b630235e2a5c48b7357e23e1bd2f'] = 'WICHTIG:';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_2ed8b925eb242d6a40ff29ec1a5141b3'] = 'Setzen Sie diese URL in die Crontab oder rufen Sie sie täglich manuell auf:';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_f5395c9793af8a11b406ca7c1ac70da9'] = 'Mehr dazu';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9a983837b32d42343dc0c62d35b1f955'] = 'Trusted Shops Kundenbeurteilung';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_5b91fe21d207317c7c9fad225a7ce442'] = 'Für Online-Käufer sind positive und überprüfbare Kundenbewertungen ein wichtiges Indiz für die Vertrauenswürdigkeit eines Online-Shops. Die benötigte Software ist bereits in Prestashop enthalten, damit können Sie auch Kundenbewertungen in Ihrem Online-Shop sammeln. Die Integration ist einfach mit nur wenigen Mausklicks zu bewältigen.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c81bc534bc261e4107a5c30257fb5ba4'] = 'Unterstützung bei der Orientierung für Ihre Kunden';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_ec1bfc4d5646681a86038f770be8fd0b'] = 'Zufriedene Kunden sind Ihre besten Vertriebsmitarbeiter. Lassen Sie Ihre Kunden selbst berichten, wie einfach und sicher die Online-Einkäufe in Ihrem Shop sind.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_866a520be0de10a4fc8958a9e89126c3'] = 'Grundlage für die Shop-Optimierung';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9c6dfeed0caab43f7ff0f6bbd19b27dd'] = 'Ihre Kunden sind Ihnen gerne bei der Optimierung Ihres Shops mit ihrem Feedback behilflich. Schließlich sind Ihre Kunden umso zufriedener, je besser Ihr Online-Shop läuft.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_0fac19c0cc6e205682dd52d61dd5a0a2'] = 'Erhöhen Sie die Erreichbarkeit über Facebook, Twitter und Google';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_afe906fe9448ed1b480b3eec383461de'] = 'Ihre Kunden verbreiten Testberichte und Bewertungen auf Facebook und Twitter direkt unter Freunden und Anhängern. Bewertungen werden automatisch im Google-Index aufgeführt und in Google Shopping angezeigt.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_273769f3a3d91979bfdb5ca4909c517a'] = 'Melden Sie sich bei Trusted Shops Kundenbeurteilung an';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_2ab78702e34e81e82ca61847300b1618'] = 'Sind Sie zufrieden mit';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_a11109fe93f6dc4637e5b039651a4fdb'] = '? Bitte schreiben Sie eine Beurteilung!';
|
||||
@@ -1,85 +0,0 @@
|
||||
{*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
|
||||
<script type="text/javascript">
|
||||
$().ready(function()
|
||||
{
|
||||
var items_length = $('#ts-list-items').find('input').length;
|
||||
//$('#ts-list-items').css('line-height', ((70/items_length) > 12 ? Math.round(70/items_length) : 12 )+'px');
|
||||
|
||||
TS.init();
|
||||
});
|
||||
|
||||
var TS = (function()
|
||||
{
|
||||
function updateTsProduct(id_product, type_action)
|
||||
{
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: baseDir + 'cart.php',
|
||||
async: true,
|
||||
cache: false,
|
||||
dataType : "json",
|
||||
data: type_action+'=1&ajax=true&qty=1&id_product=' + id_product + '&token=' + static_token,
|
||||
success: function(jsonData)
|
||||
{
|
||||
ajaxCart.updateCart(jsonData);
|
||||
$('span.price').not('#cart_block_shipping_cost').not('.products .price').html(jsonData.total);
|
||||
}
|
||||
});
|
||||
}
|
||||
return {
|
||||
init: function ()
|
||||
{
|
||||
$('#ts-list-items input[type=checkbox]').click(function(e)
|
||||
{
|
||||
var $t = $(this);
|
||||
var id_number = $t.attr('id').split('-')[2];
|
||||
|
||||
if ($t.attr('checked'))
|
||||
updateTsProduct(id_number, 'add');
|
||||
else
|
||||
updateTsProduct(id_number, 'delete');
|
||||
});
|
||||
}
|
||||
}
|
||||
})();
|
||||
</script>
|
||||
|
||||
<div style="border:solid 1px #000; width: 537px; border: 1px solid #595A5E; margin-bottom: 10px;">
|
||||
<h3 style="padding:0 0 0 5px;"><b>{l s='Trusted Shops Buyer Protection (recommended)' mod='trustedshops'}</b></h3>
|
||||
<div style="float:left; width:100px;">
|
||||
<img id="logo_trusted" style="margin:2px 0 10px 10px" alt="logo" src="{$module_dir}img/siegel.gif" />
|
||||
</div>
|
||||
<div id="ts-list-items">
|
||||
{foreach from=$buyer_protection_items item=product}
|
||||
<p><input id="ts-product-{$product.id_product}" type="checkbox" value="{$product.id_product}" name="item_product"> {l s='Buyer protection from' mod='trustedshops'} {$product.protected_amount_decimal} ({$product.gross_fee|round:2} {l s='GBP incl. VAT' mod='trustedshops'})</p>
|
||||
{/foreach}
|
||||
<div id="content_checkout" style="margin-left:100px">
|
||||
<p>{l s='The Trusted Shops Buyer Protection secures your online purchase. I agree to my email address being transferred and' mod='trustedshops'} <b><a href="http://www.trustedshops.de/info/datenschutz/">{l s='saved' mod='trustedshops'}</a></b> {l s='for the purposes of Buyer Protection processing by Trusted Shops.' mod='trustedshops'}<b><a href="http://www.trustedshops.de/info/garantiebedingungen/">{l s='Conditions' mod='trustedshops'}</a></b>: {l s='for Buyer Protection.' mod='trustedshops'}</p></div>
|
||||
</div>
|
||||
<div class="clear"/></div>
|
||||
</div>
|
||||
@@ -1,176 +0,0 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_02ecb4a4709d9bcc590f1a25fc82c0e2'] = 'Trusted Shops protección comprador (recomendado)';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_b55aab8932a39ca85bb0a1b6eb83f83f'] = 'Protección comprador hasta';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_a53a5a9f38f31d62a791717b943e02f3'] = 'EUR IVA incluído';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_b3c25d2f94cf87ece3dbb2907318520c'] = 'La protección comprador Trusted Shops hace su compra en línea segura. Acepto que mi email sea trasferido y';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_536a056b710e94b16169efd17a4a657b'] = 'guardado';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_2dc4be4d5564180e6df95d5a5a679195'] = 'para el tratamiento de la protección comprador por Trusted Shops.';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_229eb04083e06f419f9ac494329f957d'] = 'Condiciones';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_4ccaceceffe4b5e58f6a7a7ed3ced4c4'] = 'para la protección del comprador.';
|
||||
$_MODULE['<{trustedshops}prestashop>order-confirmation-tsbp-classic_7b5406da2d5f15923d6b01d3264c5619'] = 'Cuño Trusted Shops- Pulse aquí para comprobar';
|
||||
$_MODULE['<{trustedshops}prestashop>order-confirmation-tsbp-classic_4052048c767f22e9071c3e6f404d00c6'] = 'Como miembro de Trusted Shops, le ofrecemos un servicio complementario excepcional: la garantía de reembolso Trusted Shops. ';
|
||||
$_MODULE['<{trustedshops}prestashop>order-confirmation-tsbp-classic_f975f42362625cf21e592009ff4b3d7b'] = 'Inscríbase para obtener la garantía de reembolso de Trusted Shops. ';
|
||||
$_MODULE['<{trustedshops}prestashop>seal_of_approval_ee9ae315b086e1b1a0c8fdc6078f9add'] = 'Cuño Trusted Shops- Pulse aquí para comprobar';
|
||||
$_MODULE['<{trustedshops}prestashop>seal_of_approval_750bea678eeb1d07f21fe86173288e2e'] = 'es un sitio de venta en línea certificado con la garantía de reembolso de Trusted Shops. ';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_0aa7ce92297d05fc09fb9fdbe5da6be6'] = 'Este módulo requiere la extensión PHP SOAP para funcionar correctamente.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_9a983837b32d42343dc0c62d35b1f955'] = 'Trusted Shops Systema de evaluación cliente';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_eeae17826fa637ecca0344165514ab4e'] = 'Haga que sus clientes confíen en usted y transforme a sus visitantes en compradores.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_968e0f78caa7d3245c8f6f858de993d8'] = '¿Está seguro de que desea suprimir esta configuración?';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_79fc246c2b70963d27ebb0e9ebaab349'] = 'Póngase en contacto con Trusted Shops en la siguiente dirección service@trustedshop.fr';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_de14ce5aee772cd0330819c0ecf76adb'] = 'El nombre de usuario o contrasea no son válidos.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_43048f232a4ebab67835c425a1113b29'] = 'Se ha anulado la línea de crédito acordada por Trusted Shop.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_eb601fb44b908fec1ee41383d4d948ac'] = 'No existe ninguna línea de crédito en Trusted Shops. ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_cb71cc86f5c38200b3821adb49966522'] = 'No se han podido guardar los datos.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_07ff7715e67826fb7d9af1d2d1d30e46'] = 'Se ha producido un error. ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5fb7a36c0bdf3cde4f3e038a0eff2b6f'] = 'Login Web servicio o TS-ID no válido.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_b515cf9cc8234bf6413ed84f5cde066a'] = 'Trusted Shops ha suspendido los límites de crédito de la tienda ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_6453e3467d4c087afbfd33d4013cd3e9'] = 'Número de pedido ya utilizado';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_8100f51dcd57174e15ef0c3b3456e3ca'] = 'No acepta este producto de protección comprador';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_f9e1392429699e6921d775ca98660faa'] = 'Método de pago inactivo';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_1dbec1039be7b747704bde7acddca451'] = 'Método de pago no aceptado';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_53cf8eb9e9cb36a367ba553b30cac77a'] = 'La divisa del producto de protección comprador no corresponde a la divisa del carrito';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5ad1407fbd2b8c75e47b9c15a976c4d2'] = 'Esta tienda no acepta esta divisa';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_74d27ae48e301b6bbf9bba911a3037e3'] = 'No acepta este índice de cambio';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_02a4ecbbc2d936231663c1b3255ba137'] = 'No se acepta este modo de pago';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_f8c4826b4580a3f2e9786ac6bc5c8635'] = 'No hay límite de crédito disponible para esta certificado';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_f1b7a6cab6562707aea970971edba9c4'] = 'Fecha de entrega caducada';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_93dff7e30cdf7dec5572f192c774f5ca'] = 'La garantía se aplica a una compra efectuada 3 días antes';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_138ed5814f1b04d3c44fe4975acdeefc'] = 'La dirección email contiene un error';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5eded1b4097ea8e9bd12bb35fe57b6b1'] = 'No se ha asignado ningún número de pedido';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5b8230d466534f0cf347188d78c0b248'] = 'No se ha asignado ningún número de cliente';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5ace4c2d63acb0eb87071efea55be813'] = 'Se ha sobrepasado el límite de créditos para este certificado';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_35caaf4f25a287580302c851d88a29dc'] = 'No se ha asignado ningún número de dirección email';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_0db21cf8f0a16321cda7a2e9e37850c7'] = 'Producto de protección comprador no aplicable';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_db26e10564e958809d798e8048fcbc0a'] = 'Clave de seguridad no válida';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_36cd72871a0f3dac493a38f5d82f7441'] = 'Error general del sistema, póngase en contacto con Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_fed85cfada8f3bbc5ad9eb128227210a'] = 'Cargo en cuenta';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_73a61696f100b3858511e212a3feea6b'] = 'Tarjeta de crédito';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_466eadd40b3c10580e3ab4e8061161ce'] = 'Factura';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_22d2c7f90dc862df71ac7aff95183fb2'] = 'Envío contra reembolso';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_1ff8e518d6a560568fbf66f01e9eb937'] = 'Pago / Transferencia previa';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3e0deb2f1df28a6a13c9c18cc0e1c755'] = 'Cheque';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3deb0a4146e33809942e46416fb60228'] = 'Paybox';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_4761b2212f04e7409afa7f8103d6fc60'] = 'Pago en el momento de la recogida';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_917709346cd3cefd00e463f65f1a55d8'] = 'Financiación';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9e6689415e7e5aa4d42d1f2abc78726c'] = 'Leasing';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_1c9f173da9bf497cffc19357ab04a8e8'] = 'T-Pay';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_369b94cdb6bac25435d00d04255de1ab'] = 'Click&Buy';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_31911306551723245e7417ae4520fecb'] = 'Giropay';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_6c132b5e262594950586ae13a7d3aa94'] = 'Google Checkout';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_982830b027a279fdc4b4b7993f65498f'] = 'Tarjeta de crédito de la tienda en línea';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_7e1795d054242cf7c546c1491a7c467d'] = 'DIRECTebanking.com';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_37554cc43c645833d6713b9cddda909b'] = 'moneybookers.com';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9203aec73d2ea1770f66f065c4069816'] = 'Otros modos de pago';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_068ce643ff39bf2189935d14736fd10b'] = 'Cuño Trusted Shops y protección comprador';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f51dabfce0c8ccc01734ed38d8afe27a'] = 'Las aplicaciones Json deben ser implementadas en la versión de PHP';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_b1801eaadecfddd04529313a1e929262'] = 'El certificado es válido';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_ce323cb3453812434f9abc007ba7a952'] = 'El certificado ha caducado';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_98121ffd0d2a0b4bed569a726632f402'] = 'El certificado se ha anulado';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3ec2499357b45a38139485b2b824aa4c'] = 'La tienda está en curso de identificación';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_a8fcbddffdaccc6daa529aa9c38d82df'] = 'No se ha distribuido ningún certificado para esta ID Trusted Shops ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_5abbd73fc5189212c57adfb43adac459'] = 'Certificado de test';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_eaf4354c3a17f478859421ac2e33a975'] = 'Código n°';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_d9fd9cab8b813e70e20c615abf036307'] = 'mensaje:';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_109715467b74bd66639faa5673f707c1'] = 'Error desconocido';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_d4eb1e83b0ea3af3e2b8a6e7b7984d9c'] = 'el campo % es erróneo, compruebe que lo ha rellenado correctamente';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c230eb5eefd15fa219ff97d42e461a7d'] = 'Algunos parámetros enviados al método \"requestForProtectionV2\" son falsos o inexistentes.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_b656f5f53cf7ee9bbfe7452685f71e30'] = 'El API de Trusted Shops envía un error que concierne a la aplicación n°';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_77efb7bc0be02351991cba2102bb0656'] = 'El número % 1$d de la aplicación Trusted Shops a funcionado con éxito. El número de garantía es: %2$d';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_fd511061055fcb2d10d31a51be3539d0'] = 'Link de registro';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_de5536f42490f11e92ad1c20d999fd15'] = 'Pulse para recibir el link de registro';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_56405fbe18e269145ebe3f7232f11be6'] = 'Se ha creado el link de registro. Pulse sobre este link si no ha sido redirigido';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_97e7c9a7d06eac006a28bf05467fcc8b'] = 'Link';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c80549181fa4baa695cd054b6dd21c49'] = 'El producto no se ha guardado.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_76044a7414d56c702b0134907e1a3ccd'] = 'Se ha añadido el certificado.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_7e7177d7660bfff10363700311b0016d'] = 'Debe editar o suprimir los certificados uno por uno.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_259060bb469ed1256c2e758e32da126f'] = 'El certificado';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_8512ae7d57b1396273f76fe6ed341a23'] = 'idioma';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f7ea4ac740662d2427d1ef1f2695206d'] = 'ha sido suprimido';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3fb2ea84b90d4ea9fab48ea356a2319b'] = 'Se ha añadido el login del certificado';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_b18f5630d5ffdfcee5ab0a44ee6e1eb6'] = 'Tiene que crear un nombre de usuario y una contraseña antes de efectuar cualquier cambio.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_e32263743aac776e5e32fc385d8b669a'] = 'Trusted Shops es el sello de calidad europea para sitios de venta en línea con garantía de reembolso para sus clientes. En el momento de la certificación, su tienda está sometida a una auditoría que agrupa más de 1000 criterios diferentes que respetan las exigencias de las asociaciones de protección de los consumidores, así como las legislaciones nacionales y europeas. ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_2c786e15a571a442adf85460e6358883'] = '¡Más confianza implica más ventas!';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_e06f60bb083e167516a94aafd5a3a2e2'] = 'El sello de calidad Trusted Shops es ideal para aumentar la confianza de los clientes en su tienda en línea. Cuanto más confíen los clientes en su sitio Wab, más compras realizarán el el mismo.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_8dd66ca6788218bd7d2ba7fe43c34f63'] = 'Disminución de las interrupciones de los pedidos';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_26286e2764ccde55c99d1b258315aa1a'] = 'Puede proponer a sus clientes en línea un argumento importante: la protección comprador Trusted Shops que asegura al cliente en caso de no reembolso o si no reciba la mercancía. Este seguro suplementario permite reducir la interrupción de los pedidos. ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_710142158c105c01ef807ce959cbc451'] = 'Una fidelización clientela fructuosa y durable';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f7e15d97ad927ef705de61e787883ada'] = 'Para aumentar las compras en línea, el sello de calidad Trusted Shops con protección comprador es un criterio de calidad durable para compras en línea seguras. Es una manera de transformar clientes únicos en clientes fieles. ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_7442a1e0ab5e2e26ca9363d226b93d13'] = 'Ambiente tipo';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_8e77e16312de3f95afdf5b92b10232a2'] = 'En este momento está usando el modo:';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_dc62561dd8d390e274487516e869fc93'] = 'Obtenir el link de registro';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_5c93149208b3885248b960eb22e6ba49'] = 'Esta variable ha sido enviada por email por Tructed Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_233a96df2f68dbeafaa3126edadc1ce8'] = 'Identificación interna del software de la tienda en Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_261720a5c993fb1cfad560d874d06254'] = 'Canal del Etracker';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_02977dc4b8561c8d7312b1931782c36b'] = 'Campaña del Etrackter';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_4994a8ffeba4ac3140beb89e8d41f174'] = 'Idioma';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_2541d938b0a58946090d7abdde0d3890'] = 'enviar';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_72ca0dcf49befb037f8d4734ee0a2a1c'] = 'Añadir un certificado Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_48e31908bfdcda34b0f01cad9d7077af'] = 'Nuevo certificado';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_75904cf055527a97739601e0f5ff7e51'] = 'Añadir el';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_566853604b7330b3adbb9105cb15e96b'] = 'Editar los certificados Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_eb0f48a107df1a0f343d4cd513b555e6'] = 'Certificado';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_46a2a41cc6e552044816a2d04634545d'] = 'Estado';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_a1fa27779242b4902f7ae3bdd5c6d508'] = 'Tipo';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_6c61ebc45acfe2f244e91ac4cd423e81'] = 'Url de la tienda';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_7dce122004969d56ae2e0245cb754d35'] = 'Editar';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f2a6c498fb90ee345d997f888fce3b18'] = 'Suprimir';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_97bd7efe2f4d953cc0b77a25ff053d97'] = 'Contraseña o login inexistentes';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_10b5f8531f2b6a3f6d8abad45024bbea'] = 'Innecesario';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_5c697646774e5acf5c5864b6819e82b5'] = 'Editar el certificado';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f8c823f9ba0a86ceaa8d3ea7e688595d'] = 'Id del certificado';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_92f1b1481fa6ff46c4a3caae78354dab'] = 'Nombre de usuario';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_dc647eb65e6711e155375218212b3964'] = 'Contraseña';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_89c26d1f2de72a1e78d0ae7a7b83880c'] = 'Tipo de pago para editar';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_23a58bf9274bedb19375e527a0744fa9'] = 'con';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_fd5291d7f0624933870702ff183bb14e'] = 'módulo de pago';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_b3b1a406e097bc87c8745db26e11904e'] = 'Actualizar';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c9ba5f6e6d58162530424afaa68bf496'] = 'Configuración del cron';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9a82b12b4b1fe9b34ce7c2952f0284d2'] = 'Debe añadir una tarea cron en su servidor, que funcionen para sus certificados EXCELLENT';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c17d7635f5ee99ee25f7f2cc9a672c74'] = 'El archivo que debe llamar:';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_a3c2818ac0ecfe9beff0973388eedd69'] = 'Trusted Shops aconseja que se automatice la búsqueda para una tarea cron con un intervalo de 10 minutos.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_94f97da736a5f5f2fd137fa0fc7c2482'] = 'La protección comprador de Trusted Shops requiere un login para funcionar. ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9d36bad327b052a9bdec7003f95ce4bd'] = 'Se ha producido un error con su idioma:';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_03e9e3ceaf5769311c57b5903a958e94'] = 'Un comprador no puede comprar varios productos de protección comprador';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_be660f2416cf9cb86913ab902886928c'] = 'Va a recibir un email de Trusted Shops con su número de garantía.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c006c102f7e2ffef1f7c1808d5e0e54a'] = 'Trusted Shops Sistema de aealuación cliente';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_b20a16afda98421bbf7457ccfa50e311'] = 'Este módulo necesita los derechos de lectura y de escritura en el repertorio cache del módulo.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_0aa7ce92297d05fc09fb9fdbe5da6be6'] = 'Este módulo necesita la extensión PHP SOAP para funcionar correctamente.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_1097e2b0ee70e248749f0d0a9292df56'] = 'ID Trusted Shops no válido';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_086dbc83aa6b78fa9a234d264ba5808a'] = 'Diferido no válido';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_24bbca53f91f119c930d147557a4e997'] = 'Por favor, régístrese';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_6c92285fa6d3e827b198d120ea3ac674'] = 'aquí';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9ad6278cff9ee53a9970b3a9ecc00a5c'] = 'o contacte con service@trustedshops.com.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_b4fc8e4eaf37aa936859367ad7c642ca'] = 'El sistema de evaluación Trusted Shops aún no se ha activado para este Trusted Shops ID';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_8db5bd2272b51b3525ad7661c10d8b2b'] = 'Se ha producido un error';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c888438d14855d7d96a2724ee9c306bd'] = 'Configuración actualizada';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Activo';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_eeb41070f0552af9f1339ed58da237fb'] = 'Inactivo mientras no especifique su Trusted Shops ID';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9eb274fb901206f4fc8345a787443269'] = 'Atención, se van a suprimir las alertas existentes';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_2a94082b582d0620bae922fc14c36444'] = 'Configuración básica';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_e66ff458a8281bc8983ef58f991accb0'] = 'Por favor, introduzca su Trusted Shops ID (un ID diferente por idioma)';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9dc0b7bdd32d5e30f4d71eb5abb6b8d4'] = 'Parámetros que se muestran';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_b30cb94d482485bf0bf7015520ffb557'] = 'Mostrar widget en la tienda';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_75a1b325a14f20c2cbb97061d1340451'] = 'Link de evaluación en la tienda';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_ab2ededbdea4f61279ec75b5777d39a0'] = 'Link de evaluación en la página de confirmación';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_8c9da127717bedb90821f29c6de12ce7'] = 'Link de evaluación en un email separado';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_d344c0ebc1a11797405e4115a8260deb'] = 'Enviar el email después de';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_44fdec47036f482b68b748f9d786801b'] = 'día(s)';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9013b630235e2a5c48b7357e23e1bd2f'] = 'IMPORTANTE:';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_2ed8b925eb242d6a40ff29ec1a5141b3'] = 'Añada esta URL en una tarea Cron o llámela manualmente cada día';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_f5395c9793af8a11b406ca7c1ac70da9'] = 'Más información';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9a983837b32d42343dc0c62d35b1f955'] = 'Trusted Shops Systema de evaluación cliente';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_5b91fe21d207317c7c9fad225a7ce442'] = 'Para los compradores en línea, las evaluaciones positivas y que los clientes pueden comprobar, son la muestra que un sitio Web es digno de confianza. El software requerido ya existe en PrestaShop, por lo que unos clics son suficientes para ir a buscar las evaluciones de clientes en su sitio Web. ';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c81bc534bc261e4107a5c30257fb5ba4'] = 'Ayuda para orientar a sus clientes';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_ec1bfc4d5646681a86038f770be8fd0b'] = 'Los mejores vendedores son los clientes satisfechos. Haga que sus clientes corran la voz de lo buenos que son los productos de su tienda.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_866a520be0de10a4fc8958a9e89126c3'] = 'Base de optimización del sitio';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9c6dfeed0caab43f7ff0f6bbd19b27dd'] = 'Con sus intervenciones, sus clientes le ayudan a optimizar el proceso de compra en su sitio. Cuanto mejor funcione su tienda, más satisfechos estarán sus clientes.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_0fac19c0cc6e205682dd52d61dd5a0a2'] = 'Difusión en Facebook, Twitter y Google';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_afe906fe9448ed1b480b3eec383461de'] = 'Sus clientes dan opiniones y evaluaciones en Facebook y Twitter directamente a sus amigos y conocidos. Las evaluaciones se integran directamente en el Google-Index y se tienen en cuenta en Google Shopping.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_273769f3a3d91979bfdb5ca4909c517a'] = 'Crear una cuenta Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_2ab78702e34e81e82ca61847300b1618'] = '¿Está satisfecho de su compra en';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_a11109fe93f6dc4637e5b039651a4fdb'] = '? ¡Denos su opinión!';
|
||||
@@ -1,176 +0,0 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_02ecb4a4709d9bcc590f1a25fc82c0e2'] = 'Trusted Shops protection acheteur (recommandée)';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_b55aab8932a39ca85bb0a1b6eb83f83f'] = 'Protection acheteur jusqu\'à';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_a53a5a9f38f31d62a791717b943e02f3'] = 'EUR TVA incluse';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_b3c25d2f94cf87ece3dbb2907318520c'] = 'La protection acheteur Trusted Shops sécurise votre achat en ligne. J’accepte le transfert et la';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_536a056b710e94b16169efd17a4a657b'] = 'sauvegarde';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_2dc4be4d5564180e6df95d5a5a679195'] = 'de mon adresse email pour le traitement de la protection acheteur par Trusted Shops.';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_229eb04083e06f419f9ac494329f957d'] = 'Conditions';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_4ccaceceffe4b5e58f6a7a7ed3ced4c4'] = 'pour la protection acheteur.';
|
||||
$_MODULE['<{trustedshops}prestashop>order-confirmation-tsbp-classic_7b5406da2d5f15923d6b01d3264c5619'] = 'Sceau Trusted Shops - Cliquez pour le verifier.';
|
||||
$_MODULE['<{trustedshops}prestashop>order-confirmation-tsbp-classic_4052048c767f22e9071c3e6f404d00c6'] = 'En tant que membre Trusted Shops, nous vous offrons un service complémentaire exceptionnel: la garantie de remboursement Trusted Shops. Les frais relatifs à cette garantie sont entièrement à notre charge, alors n\'hésitez pas, il vous suffit de vous inscrire.';
|
||||
$_MODULE['<{trustedshops}prestashop>order-confirmation-tsbp-classic_f975f42362625cf21e592009ff4b3d7b'] = 'Enregistrez-vous pour la garantie de remboursement Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>seal_of_approval_ee9ae315b086e1b1a0c8fdc6078f9add'] = 'Sceau Trusted Shops - Cliquez pour le verifier.';
|
||||
$_MODULE['<{trustedshops}prestashop>seal_of_approval_750bea678eeb1d07f21fe86173288e2e'] = 'est un site marchand certifié avec la garantie de remboursement de Trusted Shops. En savoir plus...';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_0aa7ce92297d05fc09fb9fdbe5da6be6'] = 'Ce module requiert l\'extension PHP SOAP pour fonctionner correctement.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_9a983837b32d42343dc0c62d35b1f955'] = 'Trusted Shops Système d’évaluation client';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_eeae17826fa637ecca0344165514ab4e'] = 'Boostez la confiance de vos clients et transformez vos visiteurs en acheteurs.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_968e0f78caa7d3245c8f6f858de993d8'] = 'Etes-vous sûr de vouloir supprimer votre configuration?';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_79fc246c2b70963d27ebb0e9ebaab349'] = 'Veuillez contacter Trusted Shops à l\'adresse service@trustedshops.fr';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_de14ce5aee772cd0330819c0ecf76adb'] = 'Le nom d\'utilisateur ou le mot de passe n\'est pas valable.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_43048f232a4ebab67835c425a1113b29'] = 'La ligne de crédit accordée par Trusted Shops a été annulée.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_eb601fb44b908fec1ee41383d4d948ac'] = 'Aucune ligne de crédit n\'existe chez Trusted Shops.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_cb71cc86f5c38200b3821adb49966522'] = 'Les données n\'ont pas pu être sauvegardées.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_07ff7715e67826fb7d9af1d2d1d30e46'] = 'Une erreur est survenue.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5fb7a36c0bdf3cde4f3e038a0eff2b6f'] = 'Web service login ou TS-ID invalide';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_b515cf9cc8234bf6413ed84f5cde066a'] = 'Les limites de crédits de la boutique on était suspendu par Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_6453e3467d4c087afbfd33d4013cd3e9'] = 'Numéro de commande déjà utilisé';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_8100f51dcd57174e15ef0c3b3456e3ca'] = 'Produit de protection acheteur non supporté';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_f9e1392429699e6921d775ca98660faa'] = 'Méthode de paiement inactive';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_1dbec1039be7b747704bde7acddca451'] = 'Méthode de paiement non supportée';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_53cf8eb9e9cb36a367ba553b30cac77a'] = 'La devise du produit de protection acheteur ne correspond pas à la devise du panier';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5ad1407fbd2b8c75e47b9c15a976c4d2'] = 'La devise n\'est pas supportée par cette boutique';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_74d27ae48e301b6bbf9bba911a3037e3'] = 'Ce taux de change n\'est pas supporté';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_02a4ecbbc2d936231663c1b3255ba137'] = 'Cette méthode de paiement n\'est pas supportée';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_f8c4826b4580a3f2e9786ac6bc5c8635'] = 'Pas de limite de crédit disponible pour ce certificat';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_f1b7a6cab6562707aea970971edba9c4'] = 'La date de livraison est dépassée';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_93dff7e30cdf7dec5572f192c774f5ca'] = 'la garantie est pour un achat effectué 3 jours auparavant';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_138ed5814f1b04d3c44fe4975acdeefc'] = 'L\'adresse e-mail contient une erreur';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5eded1b4097ea8e9bd12bb35fe57b6b1'] = 'Aucun numéro de commande n\'a été assigné';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5b8230d466534f0cf347188d78c0b248'] = 'Aucun numéro de client n\'a été assigné';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5ace4c2d63acb0eb87071efea55be813'] = 'La limite de crédits pour ce certificat a été dépassée';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_35caaf4f25a287580302c851d88a29dc'] = 'Aucune adresse e-mail n\'a été assignée';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_0db21cf8f0a16321cda7a2e9e37850c7'] = 'Produit de protection acheteur non applicable';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_db26e10564e958809d798e8048fcbc0a'] = 'Clé de sécurité invalide';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_36cd72871a0f3dac493a38f5d82f7441'] = 'Erreur générale du système, veuillez contacter Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_fed85cfada8f3bbc5ad9eb128227210a'] = 'Prélèvement bancaire';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_73a61696f100b3858511e212a3feea6b'] = 'Carte de crédit';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_466eadd40b3c10580e3ab4e8061161ce'] = 'Facture';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_22d2c7f90dc862df71ac7aff95183fb2'] = 'Envoi contre remboursement';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_1ff8e518d6a560568fbf66f01e9eb937'] = 'Paiement / Virement préalable';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3e0deb2f1df28a6a13c9c18cc0e1c755'] = 'Chèque bancaire';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3deb0a4146e33809942e46416fb60228'] = 'Paybox';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_4761b2212f04e7409afa7f8103d6fc60'] = 'Paiement à l’enlèvement';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_917709346cd3cefd00e463f65f1a55d8'] = 'Financement';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9e6689415e7e5aa4d42d1f2abc78726c'] = 'Leasing';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_1c9f173da9bf497cffc19357ab04a8e8'] = 'T-Pay';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_369b94cdb6bac25435d00d04255de1ab'] = 'Click&Buy';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_31911306551723245e7417ae4520fecb'] = 'Giropay';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_6c132b5e262594950586ae13a7d3aa94'] = 'Google Checkout';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_982830b027a279fdc4b4b7993f65498f'] = 'Carte de paiement de la boutique en ligne';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_7e1795d054242cf7c546c1491a7c467d'] = 'DIRECTebanking.com';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_37554cc43c645833d6713b9cddda909b'] = 'moneybookers.com';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9203aec73d2ea1770f66f065c4069816'] = 'Autre mode de paiement';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_068ce643ff39bf2189935d14736fd10b'] = 'Sceau Trusted Shops et protection acheteur';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f51dabfce0c8ccc01734ed38d8afe27a'] = 'Les fonctions Json doivent être installées sur votre version de PHP';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_b1801eaadecfddd04529313a1e929262'] = 'Le certificat est valide';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_ce323cb3453812434f9abc007ba7a952'] = 'le certificat à expiré';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_98121ffd0d2a0b4bed569a726632f402'] = 'le certificat à été annulé';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3ec2499357b45a38139485b2b824aa4c'] = 'La boutique est en cours de certification';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_a8fcbddffdaccc6daa529aa9c38d82df'] = 'Aucun certificat n\'a été distribué pour cette Trusted Shops ID';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_5abbd73fc5189212c57adfb43adac459'] = 'Certificat de test';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_eaf4354c3a17f478859421ac2e33a975'] = 'Code n°';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_d9fd9cab8b813e70e20c615abf036307'] = 'message :';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_109715467b74bd66639faa5673f707c1'] = 'Erreur inconnue';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_d4eb1e83b0ea3af3e2b8a6e7b7984d9c'] = 'le champ % est erroné, veuillez vérifier qu\'il a été correctement remplie';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c230eb5eefd15fa219ff97d42e461a7d'] = 'Certains paramètres envoyés à la méthode \"requestForProtectionV2\" sont faux ou manquant';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_b656f5f53cf7ee9bbfe7452685f71e30'] = 'L\'API de Trusted Shops retourne une erreur concernant l\'application n°';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_77efb7bc0be02351991cba2102bb0656'] = 'Le numéro %1$d de l\'application Trusted Shops a fonctionné avec succès. Le numéro de garantie est : %2$d';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_fd511061055fcb2d10d31a51be3539d0'] = 'Lien d\'enregistrement';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_de5536f42490f11e92ad1c20d999fd15'] = 'Cliquez pour recevoir le lien d\'enregistrement';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_56405fbe18e269145ebe3f7232f11be6'] = 'Le lien d\'enregistrement a été crée. Suivez ce lien si vous n\'avez pas été redirigé plus tôt :';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_97e7c9a7d06eac006a28bf05467fcc8b'] = 'Lien';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c80549181fa4baa695cd054b6dd21c49'] = 'Le produit n\'a pas été sauvegardé.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_76044a7414d56c702b0134907e1a3ccd'] = 'Le certificat à bien été ajouté.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_7e7177d7660bfff10363700311b0016d'] = 'Vous devez éditer ou supprimer un certificat un par un';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_259060bb469ed1256c2e758e32da126f'] = 'Le certificat';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_8512ae7d57b1396273f76fe6ed341a23'] = 'langue';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f7ea4ac740662d2427d1ef1f2695206d'] = 'A bien été supprimé';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3fb2ea84b90d4ea9fab48ea356a2319b'] = 'Le login du certificat à bien été ajouté';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_b18f5630d5ffdfcee5ab0a44ee6e1eb6'] = 'Vous devez définir un nom d\'utilisateur et un mot de passe avant toute modification.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_e32263743aac776e5e32fc385d8b669a'] = 'Trusted Shops est le label de qualité européen pour sites marchands avec garantie de remboursement pour vos clients. Lors de la certification, votre boutique est soumise à un audit qui regroupe plus de 100 critères différents respectant les exigences des associations de protection des consommateurs, ainsi que les législations nationales et européennes.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_2c786e15a571a442adf85460e6358883'] = 'Plus de confiance pour plus de ventes!';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_e06f60bb083e167516a94aafd5a3a2e2'] = 'Le label de qualité Trusted Shops est optimal pour accroître la confiance des clients dans votre boutique en ligne. Plus les internautes ont confiance en votre site marchand, plus ils achèteront chez vous.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_8dd66ca6788218bd7d2ba7fe43c34f63'] = 'Diminution des interruptions de commandes';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_26286e2764ccde55c99d1b258315aa1a'] = 'Vous proposez à vos clients en ligne un argument fort : la protection acheteur Trusted Shops qui assure le client contre non-livraison ou non-remboursement. Cette sécurité supplémentaire permet de réduire les interruptions de commandes.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_710142158c105c01ef807ce959cbc451'] = 'Une fidélisation clientèle fructueuse et durable';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f7e15d97ad927ef705de61e787883ada'] = 'Pour de nombreux acheteurs en ligne, le label de qualité Trusted Shops avec protection acheteur est un critère de qualité durable pour des achats en ligne sécurisés . Vous transformez ainsi des clients uniques en clients loyaux.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_7442a1e0ab5e2e26ca9363d226b93d13'] = 'Type d\'environnement';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_8e77e16312de3f95afdf5b92b10232a2'] = 'Vous utilisez actuellement le mode:';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_dc62561dd8d390e274487516e869fc93'] = 'Obtenir le lien d\'enregistrement';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_5c93149208b3885248b960eb22e6ba49'] = 'Cette variable a été envoyée via mail par Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_233a96df2f68dbeafaa3126edadc1ce8'] = 'Identification interne de logiciel de la boutique chez Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_261720a5c993fb1cfad560d874d06254'] = 'Canal du Etracker';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_02977dc4b8561c8d7312b1931782c36b'] = 'Campagne du Etracker';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_4994a8ffeba4ac3140beb89e8d41f174'] = 'Langue';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_2541d938b0a58946090d7abdde0d3890'] = 'envoyer';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_72ca0dcf49befb037f8d4734ee0a2a1c'] = 'Ajouter un certificat Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_48e31908bfdcda34b0f01cad9d7077af'] = 'Nouveau certificat';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_75904cf055527a97739601e0f5ff7e51'] = 'Ajouter le';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_566853604b7330b3adbb9105cb15e96b'] = 'Éditer les certificats Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_eb0f48a107df1a0f343d4cd513b555e6'] = 'Certificat';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_46a2a41cc6e552044816a2d04634545d'] = 'État';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_a1fa27779242b4902f7ae3bdd5c6d508'] = 'Type';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_6c61ebc45acfe2f244e91ac4cd423e81'] = 'Url de la boutique';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_7dce122004969d56ae2e0245cb754d35'] = 'Éditer';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_97bd7efe2f4d953cc0b77a25ff053d97'] = 'Mot de passe ou login manquant';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_10b5f8531f2b6a3f6d8abad45024bbea'] = 'Inutile';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_5c697646774e5acf5c5864b6819e82b5'] = 'Éditer le certificat';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f8c823f9ba0a86ceaa8d3ea7e688595d'] = 'Id du certificat';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_92f1b1481fa6ff46c4a3caae78354dab'] = 'Nom d\'utilisateur';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_dc647eb65e6711e155375218212b3964'] = 'mot de passe';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_89c26d1f2de72a1e78d0ae7a7b83880c'] = 'Type de paiement à éditer';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_23a58bf9274bedb19375e527a0744fa9'] = 'avec';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_fd5291d7f0624933870702ff183bb14e'] = 'module de paiement';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_b3b1a406e097bc87c8745db26e11904e'] = 'Le mettre à jour';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c9ba5f6e6d58162530424afaa68bf496'] = 'Configuration de la tâche cron';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9a82b12b4b1fe9b34ce7c2952f0284d2'] = 'Vous devez ajouter une tâche cron sur votre serveur, fonctionnant pour vos certificats EXCELLENT';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c17d7635f5ee99ee25f7f2cc9a672c74'] = 'Le fichier que vous devez appelé :';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_a3c2818ac0ecfe9beff0973388eedd69'] = 'Trusted Shops recommande que la requête doit être automatisé par une tâche cron avec un intervalle de 10 minutes.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_94f97da736a5f5f2fd137fa0fc7c2482'] = 'La protection acheteur de Trusted Shops à besoin d\'un login pour fonctionner. Veuillez contacter l\'administrateur de la boutique.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9d36bad327b052a9bdec7003f95ce4bd'] = 'Une erreur est apparue avec votre langue :';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_03e9e3ceaf5769311c57b5903a958e94'] = 'Un acheteur ne peut pas acheter plusieurs produits de protection d\'acheteur';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_be660f2416cf9cb86913ab902886928c'] = 'Vous allez recevoir un mail de la part de Trusted Shops à propos de votre numéro de garantie.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c006c102f7e2ffef1f7c1808d5e0e54a'] = 'Trusted Shops Système d’évaluation client';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_b20a16afda98421bbf7457ccfa50e311'] = 'Ce module nécessite les droits de lecture et d\'écriture sur le répertoire cache du module.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_0aa7ce92297d05fc09fb9fdbe5da6be6'] = 'Ce module requiert l\'extension PHP SOAP pour fonctionner correctement.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_1097e2b0ee70e248749f0d0a9292df56'] = 'Trusted Shops ID non valide';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_086dbc83aa6b78fa9a234d264ba5808a'] = 'Différé invalide';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_24bbca53f91f119c930d147557a4e997'] = 'Veuillez vous enregistrer';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_6c92285fa6d3e827b198d120ea3ac674'] = 'ici';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9ad6278cff9ee53a9970b3a9ecc00a5c'] = 'ou contacter service@trustedshops.com.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_b4fc8e4eaf37aa936859367ad7c642ca'] = '\'Le système d’évaluation Trusted Shops n’a pas encore été activé pour ce Trusted Shops ID.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_8db5bd2272b51b3525ad7661c10d8b2b'] = 'Une erreur est survenue';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c888438d14855d7d96a2724ee9c306bd'] = 'Configuration mise à jour';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Actif';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_eeb41070f0552af9f1339ed58da237fb'] = 'Inactif tant que vous n\'avez pas spécifiez votre Trusted Shops ID';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9eb274fb901206f4fc8345a787443269'] = 'Attention, les alertes existantes vont être supprimées';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_2a94082b582d0620bae922fc14c36444'] = 'Configuration';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_e66ff458a8281bc8983ef58f991accb0'] = 'Merci de renseigner votre Trusted Shops ID (un ID différent par langue) :';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9dc0b7bdd32d5e30f4d71eb5abb6b8d4'] = 'Paramètres d\'affichage';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_b30cb94d482485bf0bf7015520ffb557'] = 'Affichage widget sur la boutique';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_75a1b325a14f20c2cbb97061d1340451'] = 'Lien d\'évaluation sur la boutique';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_ab2ededbdea4f61279ec75b5777d39a0'] = 'Lien d\'évaluation sur la page de confirmation';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_8c9da127717bedb90821f29c6de12ce7'] = 'Lien d\'évaluation dans un email séparé';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_d344c0ebc1a11797405e4115a8260deb'] = 'Envoyer l\'email après';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_44fdec47036f482b68b748f9d786801b'] = 'jour(s)';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9013b630235e2a5c48b7357e23e1bd2f'] = 'IMPORTANT :';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_2ed8b925eb242d6a40ff29ec1a5141b3'] = 'Ajoutez cette URL dans une tâche cron ou appelez la manuellement chaque jour :';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c9cc8cce247e49bae79f15173ce97354'] = 'Sauvegarder';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_f5395c9793af8a11b406ca7c1ac70da9'] = 'En savoir plus';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9a983837b32d42343dc0c62d35b1f955'] = 'Trusted Shops Système d’évaluation client';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_5b91fe21d207317c7c9fad225a7ce442'] = 'Pour les acheteurs en ligne, les évaluations positives et vérifiables des clients sont le signe évident qu’un site marchand est digne de confiance. Le logiciel requis existe déjà dans Prestashop, ce qui fait que quelques clics vous suffisent pour aller chercher également des évaluations de clients sur votre site.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c81bc534bc261e4107a5c30257fb5ba4'] = 'Aide à l’orientation pour vos clients';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_ec1bfc4d5646681a86038f770be8fd0b'] = 'Les meilleurs vendeurs, ce sont les clients satisfaits. Faites dire pour vous par vos clients combien les achats sur votre site marchand sont sûrs et confortables.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_866a520be0de10a4fc8958a9e89126c3'] = 'Base d’optimisation du site';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9c6dfeed0caab43f7ff0f6bbd19b27dd'] = 'Par leurs interventions, vos clients vous aident à optimiser les processus de votre site. Car mieux un site marchand fonctionne, plus vos clients sont satisfaits.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_0fac19c0cc6e205682dd52d61dd5a0a2'] = 'Diffusion sur Facebook, Twitter et Google';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_afe906fe9448ed1b480b3eec383461de'] = 'Vos clients diffusent avis et évaluations sur Facebook et Twitter directement à leurs amis et connaissances. Les évaluations sont intégrées automatiquement dans le Google-Index et prises en compte dans Google Shopping.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_273769f3a3d91979bfdb5ca4909c517a'] = 'Créer un compte Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_2ab78702e34e81e82ca61847300b1618'] = 'Etes-vous satisfait de votre achat chez';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_a11109fe93f6dc4637e5b039651a4fdb'] = '? Donnez nous votre avis!';
|
||||
|
Before Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 9.0 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 28 KiB |
@@ -1,168 +0,0 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_02ecb4a4709d9bcc590f1a25fc82c0e2'] = 'Protezione acquirente Trusted Shops (consigliato)';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_b55aab8932a39ca85bb0a1b6eb83f83f'] = 'Protezione acquirente da';
|
||||
$_MODULE['<{trustedshops}prestashop>display_products_a53a5a9f38f31d62a791717b943e02f3'] = 'EUR incl. IVA';
|
||||
$_MODULE['<{trustedshops}prestashop>order-confirmation-tsbp-classic_7b5406da2d5f15923d6b01d3264c5619'] = 'Sigillo di Approvazione Trusted Shops - Clicca per verificare.';
|
||||
$_MODULE['<{trustedshops}prestashop>order-confirmation-tsbp-classic_4052048c767f22e9071c3e6f404d00c6'] = 'Ti offriamo la Protezione acquirente di Trusted Shop come servizio aggiuntivo. Copriamo tutti i costi per questa garanzia. Tutto quello che devi fare è registrarti!';
|
||||
$_MODULE['<{trustedshops}prestashop>order-confirmation-tsbp-classic_f975f42362625cf21e592009ff4b3d7b'] = 'Registrati per la Protezione acquirente Trusted shops';
|
||||
$_MODULE['<{trustedshops}prestashop>seal_of_approval_ee9ae315b086e1b1a0c8fdc6078f9add'] = 'Sigillo di Approvazione Trusted Shops - Clicca per verificare.';
|
||||
$_MODULE['<{trustedshops}prestashop>seal_of_approval_750bea678eeb1d07f21fe86173288e2e'] = 'è un negozio on-line certificato con Protezione acquirente Trusted Shops. Maggiori informazioni ...';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_0aa7ce92297d05fc09fb9fdbe5da6be6'] = 'Questo modulo richiede l\'estensione SOAP di PHP per funzionare correttamente.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_9a983837b32d42343dc0c62d35b1f955'] = 'Trusted Shops Valutazione del cliente';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_eeae17826fa637ecca0344165514ab4e'] = 'Accrescere la fiducia dei consumatori e girare più acquirenti in clienti';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshops_968e0f78caa7d3245c8f6f858de993d8'] = 'Sei sicuro di voler eliminare tutte le impostazioni?';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_79fc246c2b70963d27ebb0e9ebaab349'] = 'Si prega di contattare Trusted Shops a service@trustedshops.co.uk.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_de14ce5aee772cd0330819c0ecf76adb'] = 'Nome utente o password non valida.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_43048f232a4ebab67835c425a1113b29'] = 'Hai raggiunto il limite di credito.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_eb601fb44b908fec1ee41383d4d948ac'] = 'Nessun credito a disposizione di Trusted Shops.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_cb71cc86f5c38200b3821adb49966522'] = 'I dati non possono essere salvati.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_07ff7715e67826fb7d9af1d2d1d30e46'] = 'Si è verificato un errore.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5fb7a36c0bdf3cde4f3e038a0eff2b6f'] = 'Login servizio web o TS-ID non valido';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_b515cf9cc8234bf6413ed84f5cde066a'] = 'Il limite di credito del negozio è stato sospeso da Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_6453e3467d4c087afbfd33d4013cd3e9'] = 'Numero d\'ordine già utilizzato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_8100f51dcd57174e15ef0c3b3456e3ca'] = 'Prodotto Protezione acquirente non supportato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_f9e1392429699e6921d775ca98660faa'] = 'Metodo di pagamento inattivo';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_1dbec1039be7b747704bde7acddca451'] = 'metodo di pagamento non supportato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_53cf8eb9e9cb36a367ba553b30cac77a'] = 'La valuta del prodotto Protezione acquirenti non corrisponde con la valuta del carrello';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5ad1407fbd2b8c75e47b9c15a976c4d2'] = 'Questa valuta non è supportata in questo negozio';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_74d27ae48e301b6bbf9bba911a3037e3'] = 'Questo tasso di cambio non è supportato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_02a4ecbbc2d936231663c1b3255ba137'] = 'Questo metodo di pagamento non è supportato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_f8c4826b4580a3f2e9786ac6bc5c8635'] = 'Nessun limite di credito disponibile per questo certificato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_f1b7a6cab6562707aea970971edba9c4'] = 'La data di consegna è nel passato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_93dff7e30cdf7dec5572f192c774f5ca'] = 'La garanzia è di un acquisto che è stato fatto oltre 3 giorni fa';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_138ed5814f1b04d3c44fe4975acdeefc'] = 'L\'indirizzo e-mail contiene un errore';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5eded1b4097ea8e9bd12bb35fe57b6b1'] = 'Nessun numero d\'ordine assegnato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5b8230d466534f0cf347188d78c0b248'] = 'Nessun numero cliente assegnato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_5ace4c2d63acb0eb87071efea55be813'] = 'Il limite di credito per questo certificato è stato superato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_35caaf4f25a287580302c851d88a29dc'] = 'Nessun indirizzo e-mail assegnato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_0db21cf8f0a16321cda7a2e9e37850c7'] = 'Prodotto Protezione acquirente non applicabile ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_db26e10564e958809d798e8048fcbc0a'] = 'Token di protezione non valido';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbpexception_36cd72871a0f3dac493a38f5d82f7441'] = 'errore di sistema generale, si prega di contattare Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_fed85cfada8f3bbc5ad9eb128227210a'] = 'Addebito diretto';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_73a61696f100b3858511e212a3feea6b'] = 'Carta di credito';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_466eadd40b3c10580e3ab4e8061161ce'] = 'Fattura';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_22d2c7f90dc862df71ac7aff95183fb2'] = 'In contanti alla consegna';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_1ff8e518d6a560568fbf66f01e9eb937'] = 'Pagamento anticipato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3e0deb2f1df28a6a13c9c18cc0e1c755'] = 'Assegno';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3deb0a4146e33809942e46416fb60228'] = 'Paybox';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_4761b2212f04e7409afa7f8103d6fc60'] = 'Contanti al ritiro';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_917709346cd3cefd00e463f65f1a55d8'] = 'Finanziamento';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9e6689415e7e5aa4d42d1f2abc78726c'] = 'Leasing';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_1c9f173da9bf497cffc19357ab04a8e8'] = 'T-Pay';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_369b94cdb6bac25435d00d04255de1ab'] = 'Click & Buy';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_31911306551723245e7417ae4520fecb'] = 'Giropay';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_6c132b5e262594950586ae13a7d3aa94'] = 'Google Checkout';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_982830b027a279fdc4b4b7993f65498f'] = 'Carta di pagamento negozio online';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_7e1795d054242cf7c546c1491a7c467d'] = 'DIRECTebanking.com';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_37554cc43c645833d6713b9cddda909b'] = 'moneybookers.com';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9203aec73d2ea1770f66f065c4069816'] = 'Altri metodi di pagamento';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_068ce643ff39bf2189935d14736fd10b'] = 'Sigillo di Approvazione e protezione acquirente';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f51dabfce0c8ccc01734ed38d8afe27a'] = 'Le funzioni Json devono essere attuate nella tua versione di PHP';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_b1801eaadecfddd04529313a1e929262'] = 'Il certificato è valido';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_ce323cb3453812434f9abc007ba7a952'] = 'Il certificato è scaduto';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_98121ffd0d2a0b4bed569a726632f402'] = 'Il certificato è stato disabilitato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3ec2499357b45a38139485b2b824aa4c'] = 'Il negozio è attualmente in fase di certificazione';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_a8fcbddffdaccc6daa529aa9c38d82df'] = 'Nessun certificato è stato assegnato all\'iD Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_5abbd73fc5189212c57adfb43adac459'] = 'Certificato di prova';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_eaf4354c3a17f478859421ac2e33a975'] = 'Codice n.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_d9fd9cab8b813e70e20c615abf036307'] = 'messaggio:';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_109715467b74bd66639faa5673f707c1'] = 'Errore sconosciuto.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_d4eb1e83b0ea3af3e2b8a6e7b7984d9c'] = 'Il campo%s è sbagliato, assicurati che sia stato correttamente compilato.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c230eb5eefd15fa219ff97d42e461a7d'] = 'Alcuni parametri per l\'invio al metodo \"requestForProtectionV2\" sono sbagliati o mancanti.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_b656f5f53cf7ee9bbfe7452685f71e30'] = 'Trusted Shops API segnala un errore riguardante l\'applicazione n.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_77efb7bc0be02351991cba2102bb0656'] = 'Il numero di richiesta %1$d di Trusted Shops è stato elaborato con successo. Il numero di garanzia è il seguente:% 2$d';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_fd511061055fcb2d10d31a51be3539d0'] = 'Link di registrazione';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_de5536f42490f11e92ad1c20d999fd15'] = 'Fare clic per ottenere il link di registrazione';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_56405fbe18e269145ebe3f7232f11be6'] = 'link di registrazione è stato creato. Segui questo link se non sei stato reindirizzato prima:';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_97e7c9a7d06eac006a28bf05467fcc8b'] = 'Link';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c80549181fa4baa695cd054b6dd21c49'] = 'Il prodotto non è stato salvato.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_76044a7414d56c702b0134907e1a3ccd'] = 'Il certificato è stato aggiunto.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_7e7177d7660bfff10363700311b0016d'] = 'È necessario modificare o eliminare un certificato uno per uno';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_259060bb469ed1256c2e758e32da126f'] = 'Il certificato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_8512ae7d57b1396273f76fe6ed341a23'] = 'lingua';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f7ea4ac740662d2427d1ef1f2695206d'] = 'è stato eliminato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_3fb2ea84b90d4ea9fab48ea356a2319b'] = 'Certificato di accesso è stato ben aggiunto.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_e32263743aac776e5e32fc385d8b669a'] = 'Trusted Shops è il famoso noto Sigillo di Approvazione per i negozi online che offre anche ai clienti una protezione dell\'acquirente. Nel corso del controllo, il tuo negozio online è sottoposto a test ampi ed approfonditi. Questo controllo, che consta di oltre 100 criteri individuali, si basa sui requisiti di tutela dei consumatori, sulle leggi nazionali ed europee.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_2c786e15a571a442adf85460e6358883'] = 'Più fiducia porta a più vendite!';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_e06f60bb083e167516a94aafd5a3a2e2'] = 'Il sigillo di approvazione Trusted Shops è il modo ottimale per aumentare la fiducia dei tuoi clienti online. Trust aumenta la propensione dei clienti a comprare da te.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_8dd66ca6788218bd7d2ba7fe43c34f63'] = 'Meno abbandoni di acquisti';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_26286e2764ccde55c99d1b258315aa1a'] = 'Dai ai tuoi clienti online una ragione per acquistare, proponendo la Protezione acquirenti di Trusted Shops. Questa protezione aggiuntiva comporta un minore abbandono dei carrelli';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_710142158c105c01ef807ce959cbc451'] = 'Rapporto con il cliente redditizio e a lungo termine';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f7e15d97ad927ef705de61e787883ada'] = 'Per molti acquirenti online, il Sigillo di ApprovazioneTrusted Shops con la Protezione acquirenti è un segno efficace di qualità per uno shopping sicuro su Internet. Gli acquirenti saltuari diventano clienti abituali.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_dc62561dd8d390e274487516e869fc93'] = 'Prendi il link di registrazione';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_5c93149208b3885248b960eb22e6ba49'] = 'Questa variabile è stata inviato via e-mail da TrustedShops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_233a96df2f68dbeafaa3126edadc1ce8'] = 'identificazione interna del software del negozio a Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_261720a5c993fb1cfad560d874d06254'] = 'Canale Etracker ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_02977dc4b8561c8d7312b1931782c36b'] = 'Campagna Etracker ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_4994a8ffeba4ac3140beb89e8d41f174'] = 'Lingua';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_2541d938b0a58946090d7abdde0d3890'] = 'invia';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_72ca0dcf49befb037f8d4734ee0a2a1c'] = 'Aggiungi certificato Trusted Shops ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_48e31908bfdcda34b0f01cad9d7077af'] = 'Nuovo certificato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_75904cf055527a97739601e0f5ff7e51'] = 'Aggiungilo';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_566853604b7330b3adbb9105cb15e96b'] = 'Gestisci certificati Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_eb0f48a107df1a0f343d4cd513b555e6'] = 'Certificato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_46a2a41cc6e552044816a2d04634545d'] = 'Stato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_a1fa27779242b4902f7ae3bdd5c6d508'] = 'Tipo';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_6c61ebc45acfe2f244e91ac4cd423e81'] = 'Url negozio';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_7dce122004969d56ae2e0245cb754d35'] = 'Modifica';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f2a6c498fb90ee345d997f888fce3b18'] = 'Elimina';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_97bd7efe2f4d953cc0b77a25ff053d97'] = 'Login o password mancanti';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_10b5f8531f2b6a3f6d8abad45024bbea'] = 'Non c\'è bisogno';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_5c697646774e5acf5c5864b6819e82b5'] = 'Modifica del certificato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_f8c823f9ba0a86ceaa8d3ea7e688595d'] = 'Id certificato';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_92f1b1481fa6ff46c4a3caae78354dab'] = 'Nome Utente';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_dc647eb65e6711e155375218212b3964'] = 'Password';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_89c26d1f2de72a1e78d0ae7a7b83880c'] = 'tipo di pagamento da modificare';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_23a58bf9274bedb19375e527a0744fa9'] = 'con';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_fd5291d7f0624933870702ff183bb14e'] = 'modulo di pagamento';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_b3b1a406e097bc87c8745db26e11904e'] = 'Aggiornalo';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c9ba5f6e6d58162530424afaa68bf496'] = 'Configurazione Cronjob ';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9a82b12b4b1fe9b34ce7c2952f0284d2'] = 'È necessario impostare un cron Task sul server, lavorando con il certificato EXCELLENT.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_c17d7635f5ee99ee25f7f2cc9a672c74'] = 'Il file che devi nominare:';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_a3c2818ac0ecfe9beff0973388eedd69'] = 'Trusted Shops raccomanda che la richiesta sia automatizzata da un cronjob con un intervallo di 10 minuti.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_94f97da736a5f5f2fd137fa0fc7c2482'] = 'La Protezione acquirenti Trusted Shop ha bisogno di un accesso per funzionare. Si prega di contattare l\'amministratore del negozio.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_9d36bad327b052a9bdec7003f95ce4bd'] = 'Problema con la tua lingua:';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_03e9e3ceaf5769311c57b5903a958e94'] = 'L\'acquirente non può acquistare più prodotti Protezione acquirente.';
|
||||
$_MODULE['<{trustedshops}prestashop>tsbuyerprotection_be660f2416cf9cb86913ab902886928c'] = 'Riceverai una mail con Trusted Shops sul tuo numero di garanzia.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c006c102f7e2ffef1f7c1808d5e0e54a'] = 'Valutazione del cliente';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_b20a16afda98421bbf7457ccfa50e311'] = 'Questo modulo richiede permessi di scrittura e lettura sulla directory della cache dei moduli.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_0aa7ce92297d05fc09fb9fdbe5da6be6'] = 'Questo modulo richiede l\'estensione SOAP di PHP per funzionare correttamente.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_1097e2b0ee70e248749f0d0a9292df56'] = 'ID Trusted Shops non valido';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_086dbc83aa6b78fa9a234d264ba5808a'] = 'Tempo non valido';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_24bbca53f91f119c930d147557a4e997'] = 'Si prega di registrarsi';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_6c92285fa6d3e827b198d120ea3ac674'] = 'qui';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9ad6278cff9ee53a9970b3a9ecc00a5c'] = 'o contattare service@trustedshops.co.uk.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_b4fc8e4eaf37aa936859367ad7c642ca'] = 'La valutazione del cliente non è stata ancora attivata per questo ID di Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_8db5bd2272b51b3525ad7661c10d8b2b'] = 'Si è verificato un errore';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c888438d14855d7d96a2724ee9c306bd'] = 'Impostazioni aggiornate';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Attivo';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_eeb41070f0552af9f1339ed58da237fb'] = 'Inattivo a meno che tu non abbia specificato il tuo ID Trusted Shops';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9eb274fb901206f4fc8345a787443269'] = 'Attenzione, tutti gli avvisi di valutazione esistenti saranno eliminati';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_2a94082b582d0620bae922fc14c36444'] = 'Impostazioni di base';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_e66ff458a8281bc8983ef58f991accb0'] = 'Ti preghiamo di compilare il tuo ID Trusted Shops (un ID diverso per lingua):';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9dc0b7bdd32d5e30f4d71eb5abb6b8d4'] = 'Mostra impostazioni ';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_b30cb94d482485bf0bf7015520ffb557'] = 'Mostra widget nel negozio';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_75a1b325a14f20c2cbb97061d1340451'] = 'Mostra link valutazione nel negozio';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_ab2ededbdea4f61279ec75b5777d39a0'] = 'Mostra link valutazione sulla pagina di conferma dell\'ordine';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_8c9da127717bedb90821f29c6de12ce7'] = 'Invia link valutazione in una e-mail separata';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_d344c0ebc1a11797405e4115a8260deb'] = 'Inviare e-mail dopo ';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_44fdec47036f482b68b748f9d786801b'] = 'giorni';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9013b630235e2a5c48b7357e23e1bd2f'] = 'IMPORTANTE:';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_2ed8b925eb242d6a40ff29ec1a5141b3'] = 'Metti questo URL nel crontab o chiamalo ogni giorno:';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_f5395c9793af8a11b406ca7c1ac70da9'] = 'Per saperne di più';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9a983837b32d42343dc0c62d35b1f955'] = 'Valutazione del cliente Trusted Shops ';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_5b91fe21d207317c7c9fad225a7ce442'] = 'Per gli acquirenti on-line, giudizi positivi e verificabili dei clienti sono un importante segnale di fiducia in un negozio online. Il software necessario è già compreso in Prestashop, in modo da poter iniziare a raccogliere le recensioni dei clienti nel tuo negozio on-line. L\'integrazione è facile con pochi clic.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_c81bc534bc261e4107a5c30257fb5ba4'] = 'Supporto di orientamento per i tuoi clienti';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_ec1bfc4d5646681a86038f770be8fd0b'] = 'I clienti soddisfatti sono i tuoi rappresentanti migliori. Lascia che i tuoi clienti parlino da soli di quanto sia sicuro e facile acquistare dal tuo negozio online.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_866a520be0de10a4fc8958a9e89126c3'] = 'Base per l\'ottimizzazione negozio';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_9c6dfeed0caab43f7ff0f6bbd19b27dd'] = 'I tuoi clienti sono felici di aiutarti a ottimizzare il negozio con i loro feedback. Dopotutto, meglio funziona il tuo negozio online, e più soddisfatti saranno i tuoi clienti.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_0fac19c0cc6e205682dd52d61dd5a0a2'] = 'Aumenta la portata tramite Facebook, Twitter e Google';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_afe906fe9448ed1b480b3eec383461de'] = 'I tuoi clienti diffondono opinioni e valutazioni su Facebook e Twitter direttamente ad amici e seguaci. Le valutazioni sono automaticamente elencate nel Google Index e vengono visualizzati in Google Shopping.';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_273769f3a3d91979bfdb5ca4909c517a'] = 'Registrati per la valutazione del cliente Trusted shops';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_2ab78702e34e81e82ca61847300b1618'] = 'Sei soddisfatto di';
|
||||
$_MODULE['<{trustedshops}prestashop>trustedshopsrating_a11109fe93f6dc4637e5b039651a4fdb'] = '? Scrivi una recensione!';
|
||||
@@ -1,151 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
abstract class AbsTrustedShops
|
||||
{
|
||||
/**
|
||||
* Saved errors messages.
|
||||
* @var array
|
||||
*/
|
||||
public $errors = array();
|
||||
|
||||
/**
|
||||
* Saved warning messages.
|
||||
* @var array
|
||||
*/
|
||||
public $warnings = array();
|
||||
|
||||
/**
|
||||
* Saved confirmations messages.
|
||||
* @var array
|
||||
*/
|
||||
public $confirmations = array();
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected static $module_name;
|
||||
|
||||
public $limited_countries = array();
|
||||
public static $smarty;
|
||||
public $tab_name;
|
||||
public $id_tab;
|
||||
|
||||
/**
|
||||
* Set the object which use the translation method for the specific module.
|
||||
* @var Module
|
||||
*/
|
||||
protected static $translation_object;
|
||||
|
||||
abstract public function install();
|
||||
abstract public function uninstall();
|
||||
abstract public function getContent();
|
||||
public static function setTranslationObject(Module $object)
|
||||
{
|
||||
self::$translation_object = $object;
|
||||
}
|
||||
protected function _makeFormAction($uri, $id_tab)
|
||||
{
|
||||
$uri_component = parse_url($uri);
|
||||
$arr_query = explode('&', $uri_component['query']);
|
||||
$arr_query_new = array();
|
||||
foreach($arr_query as $key=>$value)
|
||||
{
|
||||
$arr = explode('=', $value);
|
||||
$arr_query_new[$arr[0]] = $arr[1];
|
||||
}
|
||||
$arr_query_new['id_tab'] = $id_tab;
|
||||
return str_replace($uri_component['query'], '', $uri).http_build_query($arr_query_new);
|
||||
}
|
||||
/**
|
||||
* Set a static name for the module.
|
||||
*
|
||||
* @param string $name
|
||||
*/
|
||||
public function setModuleName($name)
|
||||
{
|
||||
self::$module_name = $name;
|
||||
}
|
||||
|
||||
public function setSmarty($smarty)
|
||||
{
|
||||
self::$smarty = $smarty;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get translation for a given module text
|
||||
*
|
||||
* @param string $string String to translate
|
||||
* @return string Translation
|
||||
*/
|
||||
public function l($string, $specific = false)
|
||||
{
|
||||
if ($specific === false)
|
||||
{
|
||||
$reflection_class = new ReflectionClass(get_class($this));
|
||||
$specific = basename($reflection_class->getFileName(), '.php');
|
||||
}
|
||||
if (self::$translation_object instanceof Module)
|
||||
{
|
||||
return self::$translation_object->l($string, $specific);
|
||||
}
|
||||
}
|
||||
public function display($file, $template, $cacheId = NULL, $compileId = NULL)
|
||||
{
|
||||
global $smarty;
|
||||
|
||||
if (Configuration::get('PS_FORCE_SMARTY_2')) /* Keep a backward compatibility for Smarty v2 */
|
||||
{
|
||||
$previousTemplate = $smarty->currentTemplate;
|
||||
$smarty->currentTemplate = substr(basename($template), 0, -4);
|
||||
}
|
||||
$smarty->assign('module_dir', __PS_BASE_URI__.'modules/'.basename($file, '.php').'/');
|
||||
if (($overloaded = self::_isTemplateOverloadedStatic(basename($file, '.php'), $template)) === NULL)
|
||||
$result = Tools::displayError('No template found');
|
||||
else
|
||||
{
|
||||
$smarty->assign('module_template_dir', ($overloaded ? _THEME_DIR_ : __PS_BASE_URI__).'modules/'.basename($file, '.php').'/');
|
||||
$result = $smarty->fetch(($overloaded ? _PS_THEME_DIR_.'modules/'.basename($file, '.php') : _PS_MODULE_DIR_.basename($file, '.php')).'/'.$template, $cacheId, $compileId);
|
||||
}
|
||||
if (Configuration::get('PS_FORCE_SMARTY_2')) /* Keep a backward compatibility for Smarty v2 */
|
||||
$smarty->currentTemplate = $previousTemplate;
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Template management (display, overload, cache)
|
||||
* @see Module::_isTemplateOverloadedStatic()
|
||||
*/
|
||||
protected static function _isTemplateOverloadedStatic($moduleName, $template)
|
||||
{
|
||||
if (Tools::file_exists_cache(_PS_THEME_DIR_.'modules/'.$moduleName.'/'.$template))
|
||||
return true;
|
||||
elseif (Tools::file_exists_cache(_PS_MODULE_DIR_.$moduleName.'/'.$template))
|
||||
return false;
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
@@ -1,109 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
class RatingAlert
|
||||
{
|
||||
const TABLE_NAME = 'ts_rating_alert';
|
||||
const MAIL_TEMPLATE = 'rating_email';
|
||||
|
||||
public static function save($id_order)
|
||||
{
|
||||
Db::getInstance()->AutoExecute(_DB_PREFIX_.self::TABLE_NAME, array('id_order' => (int)($id_order)), 'INSERT');
|
||||
}
|
||||
|
||||
private static function _getAlertsInformations($nb_days = 10)
|
||||
{
|
||||
return Db::getInstance()->ExecuteS('
|
||||
SELECT a.id_alert, c.`email`, o.`id_order`, o.`id_lang`
|
||||
FROM `'._DB_PREFIX_.self::TABLE_NAME.'` a
|
||||
LEFT JOIN '._DB_PREFIX_.'orders o ON (a.id_order = o.id_order)
|
||||
LEFT JOIN '._DB_PREFIX_.'customer c ON (c.id_customer = o.id_customer)
|
||||
WHERE DATE_ADD(o.`date_add`, INTERVAL '.(int)($nb_days).' DAY) <= NOW()');
|
||||
}
|
||||
|
||||
public static function removeAlerts($ids)
|
||||
{
|
||||
$to_remove = array();
|
||||
foreach ($ids AS $id)
|
||||
$to_remove[] = (int)($id);
|
||||
|
||||
return Db::getInstance()->Execute('DELETE FROM `'._DB_PREFIX_.self::TABLE_NAME.'` WHERE `id_alert` IN (\''.implode('\',\'', $to_remove).'\')');
|
||||
}
|
||||
|
||||
public static function executeCronTask()
|
||||
{
|
||||
global $cookie;
|
||||
if (!Configuration::get('TS_SEND_SEPERATE_MAIL'))
|
||||
return true;
|
||||
|
||||
$to_remove = array();
|
||||
$alerts_infos = RatingAlert::_getAlertsInformations((int)(Configuration::get('TS_SEND_SEPERATE_MAIL_DELAY')));
|
||||
|
||||
$ts_module = new TrustedShops();
|
||||
|
||||
foreach ($alerts_infos AS $infos)
|
||||
{
|
||||
$cookie->id_lang = $infos['id_lang'];
|
||||
$subject = $ts_module->getL('title_part_1').' '.Configuration::get('PS_SHOP_NAME').$ts_module->getL('title_part_2');
|
||||
$template_vars = array('{ts_id}' => Configuration::get('TS_ID_'.(int)($infos['id_lang'])),
|
||||
'{button_url}' => TrustedShops::getHttpHost(true, true)._MODULE_DIR_.$ts_module->name.'/img',
|
||||
'{rating_url}' => $ts_module->getRatingUrlWithBuyerEmail($infos['id_lang'], $infos['id_order'], $infos['email']));
|
||||
|
||||
$result = Mail::Send((int)($infos['id_lang']), self::MAIL_TEMPLATE, $subject, $template_vars, $infos['email'], NULL, Configuration::get('PS_SHOP_EMAIL'), Configuration::get('PS_SHOP_NAME'), NULL, NULL, dirname(__FILE__).'/mails/');
|
||||
|
||||
if ($result)
|
||||
$to_remove[] = (int)($infos['id_alert']);
|
||||
}
|
||||
|
||||
if (sizeof($to_remove) > 0)
|
||||
self::removeAlerts($to_remove);
|
||||
|
||||
return (sizeof($to_remove) == sizeof($alerts_infos));
|
||||
}
|
||||
|
||||
public static function createTable()
|
||||
{
|
||||
return Db::getInstance()->Execute('
|
||||
CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.self::TABLE_NAME.'` (
|
||||
`id_alert` INT NOT NULL AUTO_INCREMENT,
|
||||
`id_order` INT NOT NULL,
|
||||
PRIMARY KEY (`id_alert`),
|
||||
UNIQUE KEY `id_order` (`id_order`)
|
||||
) ENGINE = '._MYSQL_ENGINE_);
|
||||
}
|
||||
|
||||
public static function dropTable()
|
||||
{
|
||||
return Db::getInstance()->Execute('DROP TABLE IF EXISTS `'._DB_PREFIX_.self::TABLE_NAME.'`');
|
||||
}
|
||||
|
||||
public static function truncateTable()
|
||||
{
|
||||
return Db::getInstance()->Execute('TRUNCATE TABLE `'._DB_PREFIX_.self::TABLE_NAME.'`');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,106 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
class TSBPException extends Exception
|
||||
{
|
||||
const ADMINISTRATION = 1;
|
||||
const FRONT_END = 2;
|
||||
/**
|
||||
* Set the object which use the translation method for the specific module.
|
||||
* @var AbsTrustedShops
|
||||
*/
|
||||
private static $translation_object;
|
||||
private static $translate_key;
|
||||
|
||||
public function __construct($code, $type = TSBPException::ADMINISTRATION)
|
||||
{
|
||||
if(!(self::$translation_object instanceof AbsTrustedShops) OR self::$translation_object === NULL)
|
||||
{
|
||||
die('In '.__METHOD__.', you must defined an object for get messages translations. An herited object from AbsTrustedShops.');
|
||||
}
|
||||
if (TSBPException::$translate_key === NULL)
|
||||
TSBPException::$translate_key = basename(__FILE__, '.php');
|
||||
|
||||
if($type === TSBPException::ADMINISTRATION)
|
||||
$message = $this->_getAdministrationMessage((int)$code);
|
||||
else
|
||||
$message = $this->_getFrontEndMessage($code);
|
||||
parent::__construct($message, $code);
|
||||
}
|
||||
private function _getAdministrationMessage($code)
|
||||
{
|
||||
// @todo : don't forget to change email in translation
|
||||
$mail = self::$translation_object->l('Please contact Trusted Shops at service@trustedshops.co.uk.', TSBPException::$translate_key);
|
||||
$errors = array(
|
||||
-10001 => self::$translation_object->l('Username or password invalid.', TSBPException::$translate_key),
|
||||
-10002 => self::$translation_object->l('You have reached your credit limit.', TSBPException::$translate_key),
|
||||
-10011 => self::$translation_object->l('No credit available from Trusted Shops.', TSBPException::$translate_key),
|
||||
-11111 => self::$translation_object->l('The data could not be saved.', TSBPException::$translate_key),
|
||||
);
|
||||
$return_message = '';
|
||||
if(array_key_exists($code, $errors))
|
||||
$return_message = $errors[$code].$mail;
|
||||
else
|
||||
$return_message = self::$translation_object->l('An error occured.').$mail;
|
||||
|
||||
return $return_message;
|
||||
}
|
||||
private function _getFrontEndMessage($code)
|
||||
{
|
||||
$return_message = '';
|
||||
switch ($code)
|
||||
{
|
||||
case -10001 : case 'NO_VALID_SHOP' : $return_message .= self::$translation_object->l('Web service login or TS-ID invalid', TSBPException::$translate_key);break;
|
||||
case -10002 : case 'LIMIT_CANCELLED' : $return_message .= self::$translation_object->l('The shop\'s credit limit has been suspended by Trusted Shops', TSBPException::$translate_key); break;
|
||||
case -10003 : case 'DUPLICATE_ORDER_NUMBER' : $return_message .= self::$translation_object->l('Order number already used', TSBPException::$translate_key); break;
|
||||
case -10004 : case 'UNSUPPORTED_TS_PRODUCT' : $return_message .= self::$translation_object->l('Unsupported Buyer Protection product', TSBPException::$translate_key); break;
|
||||
case -10005 : case 'INACTIVE_PAYMENT_TYPE' : $return_message .= self::$translation_object->l('Inactive payment method', TSBPException::$translate_key); break;
|
||||
case -10006 : case 'UNSUPPORTED_PAYMENT_TYPE' : $return_message .= self::$translation_object->l('Unsupported payment method', TSBPException::$translate_key); break;
|
||||
case -10007 : case 'CURRENCY_MISMATCH' : $return_message .= self::$translation_object->l('The currency of the Buyer Protection product does not match with the currency of the shopping basket', TSBPException::$translate_key); break;
|
||||
case -10008 : case 'UNSUPPORTED_CURRENCY' : $return_message .= self::$translation_object->l('This currency is not supported in this shop', TSBPException::$translate_key); break;
|
||||
case -10009 : case 'UNSUPPORTED_EXCHANGE_RATE' : $return_message .= self::$translation_object->l('This exchange rate is not supported', TSBPException::$translate_key); break;
|
||||
case -10010 : case 'NOT_PERSISTENT_PAYMENT_TYPE' : $return_message .= self::$translation_object->l('This payment method is not supported', TSBPException::$translate_key); break;
|
||||
case -10011 : case 'NO_LIMIT' : $return_message .= self::$translation_object->l('No credit limit available for this certificate', TSBPException::$translate_key); break;
|
||||
case -10012 : case 'PAST_DELIVERY_DATE' : $return_message .= self::$translation_object->l('The delivery date is in the past', TSBPException::$translate_key); break;
|
||||
case -10013 : case 'TOO_OLD_ORDER' : $return_message .= self::$translation_object->l('The guarantee is for a purchase that was made over 3 days ago', TSBPException::$translate_key); break;
|
||||
case -10014 : case 'EMAIL_MALFORMED' : $return_message .= self::$translation_object->l('The email address contains an error', TSBPException::$translate_key); break;
|
||||
case -10015 : case 'ORDER_ID_EMPTY' : $return_message .= self::$translation_object->l('No order number was assigned', TSBPException::$translate_key); break;
|
||||
case -10016 : case 'CUSTOMER_ID_EMPTY' : $return_message .= self::$translation_object->l('No customer number was assigned', TSBPException::$translate_key); break;
|
||||
case -10017 : case 'LIMIT_OVERFLOW' : $return_message .= self::$translation_object->l('The credit limit for this certificate has been exceeded', TSBPException::$translate_key); break;
|
||||
case -10018 : case 'EMAIL_EMPTY' : $return_message .= self::$translation_object->l('No email address was assigned', TSBPException::$translate_key); break;
|
||||
case -10019 : case 'WRONG_TS_PRODUCT' : $return_message .= self::$translation_object->l('Non-applicable Buyer Protection product', TSBPException::$translate_key); break;
|
||||
case -11001 : case 'INVALID_SECURITY_TOKEN' : $return_message .= self::$translation_object->l('Invalid security token', TSBPException::$translate_key); break;
|
||||
case -11111 : case 'SYSTEM_EXCEPTION' : $return_message .= self::$translation_object->l('General system error, please contact Trusted Shops', TSBPException::$translate_key); break;
|
||||
default : $return_message .= self::$translation_object->l('An error occured.', TSBPException::$translate_key); break;
|
||||
}
|
||||
return $return_message;
|
||||
}
|
||||
public static function setTranslationObject(AbsTrustedShops $object)
|
||||
{
|
||||
self::$translation_object = $object;
|
||||
}
|
||||
}
|
||||
@@ -1,492 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
include(_PS_MODULE_DIR_.'/trustedshops/lib/TrustedShopsSoapApi.php');
|
||||
include(_PS_MODULE_DIR_.'/trustedshops/lib/WidgetCache.php');
|
||||
include(_PS_MODULE_DIR_.'/trustedshops/lib/RatingAlert.php');
|
||||
|
||||
class TrustedShopsRating extends AbsTrustedShops
|
||||
{
|
||||
const APPLY_URL = 'https://www.trustedshops.com/buyerrating/signup.html';
|
||||
const PARTNER_PACKAGE = 'presta';
|
||||
const SHOP_SW = 'PrestaShop';
|
||||
|
||||
private $allowed_languages = array();
|
||||
private $available_languages = array('en', 'fr', 'de');
|
||||
|
||||
|
||||
private $rating_url_base = array('en' => 'https://www.trustedshops.com/buyerrating/rate_',
|
||||
'de' => 'https://www.trustedshops.com/bewertung/bewerten_',
|
||||
'fr' => 'https://www.trustedshops.com/evaluation/evaluer_');
|
||||
|
||||
private $apply_url_base = array('en' => 'https://www.trustedshops.com/buyerrating/signup.html',
|
||||
'de' => 'https://www.trustedshops.com/bewertung/anmeldung.html',
|
||||
'fr' => 'https://www.trustedshops.com/evaluation/inscription.html');
|
||||
|
||||
private $apply_url_tracker = array('en' => '&et_cid=53&et_lid=3361',
|
||||
'de' => '',
|
||||
'fr' => '&et_cid=53&et_lid=3362');
|
||||
public function __construct()
|
||||
{
|
||||
$this->tab_name = $this->l('Customer Rating');
|
||||
|
||||
// @todo : That gonna be change - Be worry it's false, countries have not the same ISO code as Languages, waiting Truste Shop's answer
|
||||
$this->limited_countries = $this->available_languages;
|
||||
}
|
||||
|
||||
public function install()
|
||||
{
|
||||
foreach ($this->available_languages AS $language)
|
||||
{
|
||||
Configuration::updateValue('TS_TAB0_ID_'.(int)(Language::getIdByIso($language)), '');
|
||||
Configuration::updateValue('TS_TAB0_ID_ACTIVE_'.(int)(Language::getIdByIso($language)), '');
|
||||
}
|
||||
|
||||
Configuration::updateValue('TS_TAB0_DISPLAY_IN_SHOP', '');
|
||||
Configuration::updateValue('TS_TAB0_DISPLAY_RATING_FRONT_END', '');
|
||||
Configuration::updateValue('TS_TAB0_DISPLAY_RATING_OC', '');
|
||||
Configuration::updateValue('TS_TAB0_SEND_RATING', '');
|
||||
Configuration::updateValue('TS_TAB0_SEND_SEPERATE_MAIL', '');
|
||||
Configuration::updateValue('TS_TAB0_SEND_SEPERATE_MAIL_DELAY', '');
|
||||
|
||||
return (RatingAlert::createTable() AND Configuration::updateValue('PS_TS_TAB0_SECURE_KEY', strtoupper(Tools::passwdGen(16))));
|
||||
}
|
||||
|
||||
|
||||
public function uninstall()
|
||||
{
|
||||
foreach ($this->available_languages AS $language)
|
||||
{
|
||||
Configuration::deleteByName('TS_TAB0_ID_'.(int)(Language::getIdByIso($language)));
|
||||
Configuration::deleteByName('TS_TAB0_ID_ACTIVE_'.(int)(Language::getIdByIso($language)));
|
||||
}
|
||||
|
||||
Configuration::deleteByName('TS_TAB0_DISPLAY_IN_SHOP');
|
||||
Configuration::deleteByName('TS_TAB0_DISPLAY_RATING_FRONT_END');
|
||||
Configuration::deleteByName('TS_TAB0_DISPLAY_RATING_OC');
|
||||
Configuration::deleteByName('TS_TAB0_SEND_RATING');
|
||||
Configuration::deleteByName('TS_TAB0_SEND_SEPERATE_MAIL');
|
||||
Configuration::deleteByName('TS_TAB0_SEND_SEPERATE_MAIL_DELAY');
|
||||
Configuration::deleteByName('PS_TS_TAB0_SECURE_KEY');
|
||||
|
||||
return (RatingAlert::dropTable());
|
||||
}
|
||||
|
||||
private function _initAllowedLanguages()
|
||||
{
|
||||
$languages = Language::getLanguages();
|
||||
foreach ($languages AS $key => $language)
|
||||
{
|
||||
if (in_array($language['iso_code'], $this->available_languages))
|
||||
$this->allowed_languages[] = $languages[$key];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static public function getHttpHost($http = false, $entities = false)
|
||||
{
|
||||
if (method_exists('Tools', 'getHttpHost'))
|
||||
return call_user_func(array('Tools', 'getHttpHost'), array($http, $entities));
|
||||
|
||||
$host = (isset($_SERVER['HTTP_X_FORWARDED_HOST']) ? $_SERVER['HTTP_X_FORWARDED_HOST'] : $_SERVER['HTTP_HOST']);
|
||||
if ($entities)
|
||||
$host = htmlspecialchars($host, ENT_COMPAT, 'UTF-8');
|
||||
if ($http)
|
||||
$host = (Configuration::get('PS_SSL_ENABLED') ? 'https://' : 'http://').$host;
|
||||
|
||||
return $host;
|
||||
}
|
||||
|
||||
private function _isTsIdActive($id_lang, $ts_id = NULL)
|
||||
{
|
||||
if (is_null($ts_id))
|
||||
$ts_id = Configuration::get('TS_TAB0_ID_'.(int)($id_lang));
|
||||
|
||||
return (!empty($ts_id) AND ($ts_id == Configuration::get('TS_TAB0_ID_ACTIVE_'.$id_lang)));
|
||||
}
|
||||
|
||||
// Return true if at least one TS_ID is active
|
||||
private function _isConfigurable()
|
||||
{
|
||||
foreach ($this->allowed_languages AS $language)
|
||||
if ($this->_isTsIdActive($language['id_lang']))
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
private function _getLastOrderId($id_customer)
|
||||
{
|
||||
return (int)(Db::getInstance()->getValue('
|
||||
SELECT `id_order`
|
||||
FROM `'._DB_PREFIX_.'orders`
|
||||
WHERE `id_customer` = '.(int)($id_customer).'
|
||||
ORDER BY `date_add` DESC'));
|
||||
}
|
||||
|
||||
private function _getAllowedIsobyId($id_lang)
|
||||
{
|
||||
$lang = Language::getIsoById($id_lang);
|
||||
$lang = in_array($lang, $this->available_languages) ? $lang : 'en';
|
||||
|
||||
return $lang;
|
||||
}
|
||||
|
||||
public function getContent()
|
||||
{
|
||||
$this->_initAllowedLanguages();
|
||||
$out = '';
|
||||
if (is_writable(_PS_MODULE_DIR_.'/trustedshops/cache') === FALSE)
|
||||
$this->errors[] = $this->l('This module requires write and read permissions on the module cache directory.');
|
||||
|
||||
if (Tools::isSubmit('submitTrustedShops'))
|
||||
{
|
||||
$this->_validateForm();
|
||||
|
||||
if (empty($this->errors))
|
||||
$this->_postProcess();
|
||||
}
|
||||
|
||||
$out .= $this->displayInformationsPage();
|
||||
$out .= $this->displayForm();
|
||||
|
||||
return $out;
|
||||
}
|
||||
|
||||
private function _validateForm()
|
||||
{
|
||||
if (!extension_loaded('soap'))
|
||||
{
|
||||
$this->errors[] = $this->l('This module requires the SOAP PHP extension to function properly.');
|
||||
return false;
|
||||
}
|
||||
|
||||
$flag_return = true;
|
||||
foreach ($this->allowed_languages AS $language)
|
||||
{
|
||||
$ts_id = Tools::getValue('trusted_shops_id_'.(int)($language['id_lang']));
|
||||
if (!empty($ts_id))
|
||||
{
|
||||
if (!preg_match('/^[[:alnum:]]{33}$/', $ts_id))
|
||||
{
|
||||
$this->errors[] = $this->l('Invalid Trusted Shops ID').' ['.$language['iso_code'].']';
|
||||
$flag_return = false;
|
||||
}
|
||||
elseif (!$this->_isTsIdActive((int)($language['id_lang']), $ts_id))
|
||||
{
|
||||
$error = $this->_validateTrustedShopId($ts_id, (int)($language['id_lang']));
|
||||
if ($error != '') $this->errors[] = $error;
|
||||
$flag_return = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (Tools::getValue('send_seperate_mail') AND !Validate::isUnsignedInt(Tools::getValue('send_seperate_mail_delay')))
|
||||
{
|
||||
$this->errors[] = $this->l('Invalid delay');
|
||||
$flag_return = false;
|
||||
}
|
||||
|
||||
return $flag_return;
|
||||
}
|
||||
|
||||
private function _validateTrustedShopId($ts_id, $iso_lang)
|
||||
{
|
||||
$error = '';
|
||||
$result = TrustedShopsSoapApi::validate(self::PARTNER_PACKAGE, $ts_id);
|
||||
|
||||
if ($result != TrustedShopsSoapApi::RT_OK)
|
||||
{
|
||||
switch($result)
|
||||
{
|
||||
case TrustedShopsSoapApi::RT_INVALID_TSID:
|
||||
$error = $this->l('Invalid Trusted Shops ID').' ['.Language::getIsoById($iso_lang).']. '.$this->l('Please register').' <a href="'.$this->getApplyUrl().'">' .$this->l('here').'</a> '. $this->l('or contact service@trustedshops.co.uk.');
|
||||
break;
|
||||
case TrustedShopsSoapApi::RT_NOT_REGISTERED:
|
||||
$error = $this->l('Customer Rating has not yet been activated for this Trusted Shops ID').' ['.Language::getIsoById($iso_lang).']. '.$this->l('Please register').' <a href="'.$this->getApplyUrl().'">' .$this->l('here').'</a> '. $this->l('or contact service@trustedshops.co.uk.');
|
||||
break;
|
||||
default:
|
||||
$error = $this->l('An error has occurred');
|
||||
}
|
||||
}
|
||||
|
||||
return empty($error) ? '' : $error;
|
||||
}
|
||||
|
||||
|
||||
private function _postProcess()
|
||||
{
|
||||
Configuration::updateValue('TS_TAB0_DISPLAY_IN_SHOP', (int)(Tools::getValue('display_in_shop')));
|
||||
Configuration::updateValue('TS_TAB0_DISPLAY_RATING_FRONT_END', (int)(Tools::getValue('display_rating_front_end')));
|
||||
Configuration::updateValue('TS_TAB0_DISPLAY_RATING_OC', (int)(Tools::getValue('display_rating_order_confirmation')));
|
||||
Configuration::updateValue('TS_TAB0_SEND_RATING', (int)(Tools::getValue('send_rating')));
|
||||
Configuration::updateValue('TS_TAB0_SEND_SEPERATE_MAIL', (int)(Tools::getValue('send_seperate_mail')));
|
||||
|
||||
foreach ($this->allowed_languages AS $language)
|
||||
{
|
||||
$ts_id = Tools::getValue('trusted_shops_id_'.(int)($language['id_lang']));
|
||||
Configuration::updateValue('TS_TAB0_ID_'.(int)($language['id_lang']), $ts_id);
|
||||
if (!empty($ts_id))
|
||||
Configuration::updateValue('TS_TAB0_ID_ACTIVE_'.(int)($language['id_lang']), $ts_id);
|
||||
}
|
||||
|
||||
if (Configuration::get('TS_TAB0_SEND_SEPERATE_MAIL'))
|
||||
Configuration::updateValue('TS_TAB0_SEND_SEPERATE_MAIL_DELAY', (int)(Tools::getValue('send_seperate_mail_delay')));
|
||||
else
|
||||
RatingAlert::truncateTable();
|
||||
|
||||
$params = '';
|
||||
$delim = '?';
|
||||
$dataSync = '';
|
||||
$key = 1;
|
||||
foreach($this->allowed_languages AS $language)
|
||||
{
|
||||
if ($this->_isTsIdActive($language['id_lang']))
|
||||
{
|
||||
$params .= $delim.'lang'.$key.'='.$language['iso_code'].'&ts_id'.$key.'='.Configuration::get('TS_TAB0_ID_ACTIVE_'.$language['id_lang']);
|
||||
$key++;
|
||||
$delim = '&';
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($params))
|
||||
$dataSync = '<img src="http://www.prestashop.com/modules/'.self::$module_name.'.png'.$params.'" style="float:right" />';
|
||||
|
||||
$this->confirmations[] = $this->l('Settings updated').$dataSync;
|
||||
return true;
|
||||
}
|
||||
|
||||
public function displayForm()
|
||||
{
|
||||
// I18N TS_ID
|
||||
$i18n_ts_id_fields = '';
|
||||
foreach ($this->allowed_languages AS $key => $language)
|
||||
{
|
||||
$i18n_ts_id_fields .= '
|
||||
<div id="trusted_shops_id_'.(int)($language['id_lang']).'">
|
||||
<p style="line-height: 25px;">
|
||||
<img src="'._PS_IMG_.'/l/'.(int)($language['id_lang']).'.jpg" style="vertical-align: middle;" alt="" />'.strtoupper($language['iso_code']).'
|
||||
<input type="text" name="trusted_shops_id_'.(int)($language['id_lang']).'" id="trusted_shops_id_'.(int)($language['id_lang']).'" style="width: 270px;" value="'.Configuration::get('TS_TAB0_ID_'.(int)($language['id_lang'])).'" /> <span style="font-size: 10px;">'.($this->_isTsIdActive($language['id_lang']) ? $this->l('Active') : $this->l('Inactive unless you haven\'t specified your Trusted Shops ID')).'</span>
|
||||
</p>
|
||||
</div>';
|
||||
}
|
||||
|
||||
// JAVASCRIPT
|
||||
$javascript = '<script language="javascript">';
|
||||
|
||||
if (!Configuration::get('TS_TAB0_SEND_SEPERATE_MAIL'))
|
||||
$javascript .= '$("document").ready( function() { $("#send_seperate_mail_infos").hide(); });';
|
||||
|
||||
$javascript .= 'function toggleSendMailInfos()
|
||||
{
|
||||
$("#send_seperate_mail_infos").toggle();
|
||||
|
||||
if (!$("input[name=send_seperate_mail]").attr("checked"))
|
||||
alert("'.$this->l('Warning, all the existing rating alerts will be deleted').'");
|
||||
}
|
||||
</script>';
|
||||
|
||||
$content = $javascript .
|
||||
'<form action="'.$this->_makeFormAction($_SERVER['REQUEST_URI'], $this->id_tab).'" method="post">
|
||||
<fieldset>
|
||||
<legend><img src="../img/admin/cog.gif" alt="" />'.$this->l('Basic Settings').'</legend>
|
||||
<p>'.$this->l('Please fill your Trusted Shops ID (one different ID per language):').'</p>
|
||||
<div>
|
||||
'.$i18n_ts_id_fields.'
|
||||
</div>
|
||||
</fieldset>';
|
||||
|
||||
if ($this->_isConfigurable())
|
||||
$content .= '<br />
|
||||
<fieldset>
|
||||
<legend><img src="../img/admin/appearance.gif" alt="" />'.$this->l('Display settings').'</legend>
|
||||
<label>'.$this->l('Display widget in shop').'</label>
|
||||
<div class="margin-form">
|
||||
<input type="checkbox" name="display_in_shop" value="1" '.(Configuration::get('TS_TAB0_DISPLAY_IN_SHOP') ? 'checked' : '').'/>
|
||||
</div>
|
||||
<br />
|
||||
<label>'.$this->l('Display rating link in shop front-end').'</label>
|
||||
<div class="margin-form">
|
||||
<input type="checkbox" name="display_rating_front_end" value="1" '.(Configuration::get('TS_TAB0_DISPLAY_RATING_FRONT_END') ? 'checked' : '').'/>
|
||||
</div>
|
||||
<br />
|
||||
<label>'.$this->l('Display rating link on order confirmation page').'</label>
|
||||
<div class="margin-form">
|
||||
<input type="checkbox" name="display_rating_order_confirmation" value="1" '.(Configuration::get('TS_TAB0_DISPLAY_RATING_OC') ? 'checked' : '').'/>
|
||||
</div>
|
||||
<br />
|
||||
<label>'.$this->l('Send rating link in seperate email').'</label>
|
||||
<div class="margin-form">
|
||||
<input onclick="toggleSendMailInfos()" type="checkbox" name="send_seperate_mail" value="1" '.(Configuration::get('TS_TAB0_SEND_SEPERATE_MAIL') ? 'checked' : '').'/> <br />
|
||||
<div id="send_seperate_mail_infos">'.
|
||||
$this->l('Send the email after').'<input size="2" type="text" name="send_seperate_mail_delay" value="'.(int)(Configuration::get('TS_TAB0_SEND_SEPERATE_MAIL_DELAY')).'" />'.$this->l('days').'.<br />
|
||||
<span style="color: #CC0000; font-weight: bold;">'.$this->l('IMPORTANT:').'</span> '.$this->l('Put this URL in crontab or call it manually daily:').'<br />'
|
||||
.self::getHttpHost(true, true)._MODULE_DIR_.self::$module_name.'/cron.php?secure_key='.Configuration::get('PS_TAB0_TS_SECURE_KEY').
|
||||
'</div>
|
||||
</div>
|
||||
</fieldset>';
|
||||
|
||||
$content .= '<br /><center><input type="submit" class="button" name="submitTrustedShops" value="'.$this->l('Save').'" /></center>
|
||||
</form>';
|
||||
|
||||
return $content;
|
||||
}
|
||||
|
||||
public function displayInformationsPage()
|
||||
{
|
||||
global $cookie;
|
||||
|
||||
return '<fieldset>
|
||||
<legend><img src="'.__PS_BASE_URI__.'modules/'.self::$module_name.'/logo.gif" alt="" />'.$this->l('Learn More').'</legend>
|
||||
|
||||
<img src="'._MODULE_DIR_.self::$module_name.'/img/ts_rating_'.$this->_getAllowedIsobyId($cookie->id_lang).'.jpg" />
|
||||
|
||||
<h3>'.$this->l('Trusted Shops Customer Rating').'</h3>
|
||||
<p>'.$this->l('For online buyers, positive and verifiable customer ratings are an important indication of an online shop\'s trustworthiness. The required software is already included in Prestashop, so you can start collecting customer ratings in your online shop too. Integration is easy with just a few clicks.').'</p>
|
||||
|
||||
<h4>'.$this->l('Orientation support for your customers').'</h4>
|
||||
<p>'.$this->l('Satisfied customers are your best sales people. Let your customers speak for themselves as to how safe and easy it is to buy from your online shop.').'</p>
|
||||
|
||||
<h4>'.$this->l('Basis for shop optimisation').'</h4>
|
||||
<p>'.$this->l('Your customers are happy to help you optimise your shop with their feedback. After all, the better your online shop works, the more satisfied your customers will be.').'</p>
|
||||
|
||||
<h4>'.$this->l('Increase reach via Facebook, Twitter and Google').'</h4>
|
||||
<p>'.$this->l('Your customers spread reviews and rating on Facebook and Twitter directly to friends and followers. Ratings are automatically listed in the Google-Index and are displayed in Google Shopping.').'</p>
|
||||
<br />
|
||||
<a style="text-decoration: underline; font-weight: bold; color: #0000CC;" target="_blank" href="'.$this->getApplyUrl().'">'.$this->l('Register for Trusted Shops Customer Rating').'</a>
|
||||
</fieldset>
|
||||
<br />';
|
||||
}
|
||||
|
||||
public function getApplyUrl()
|
||||
{
|
||||
global $cookie;
|
||||
|
||||
$lang = $this->_getAllowedIsobyId($cookie->id_lang);
|
||||
|
||||
return $this->apply_url_base[$lang].'?partnerPackage='.self::PARTNER_PACKAGE.'&shopsw='.self::SHOP_SW.'&website='.
|
||||
urlencode(_PS_BASE_URL_.__PS_BASE_URI__).'&firstName='.urlencode($cookie->firstname).'&lastName='.
|
||||
urlencode($cookie->lastname).'&email='.urlencode(Configuration::get('PS_TAB0_SHOP_EMAIL')).'&language='.strtoupper(Language::getIsoById((int)($cookie->id_lang))).
|
||||
'&ratingProduct=RATING_PRO'.$this->apply_url_tracker[$lang];
|
||||
}
|
||||
|
||||
public function getRatingUrl($id_order = '')
|
||||
{
|
||||
global $cookie;
|
||||
|
||||
$buyer_email = '';
|
||||
|
||||
if ($cookie->isLogged())
|
||||
{
|
||||
if (empty($id_order) && !empty($cookie->id_customer))
|
||||
$id_order = $this->_getLastOrderId($cookie->id_customer);
|
||||
|
||||
$buyer_email = $cookie->email;
|
||||
}
|
||||
|
||||
return $this->getRatingUrlWithBuyerEmail((int)($cookie->id_lang), $id_order, $buyer_email);
|
||||
}
|
||||
|
||||
public function getRatingUrlWithBuyerEmail($id_lang, $id_order = '', $buyer_email = '')
|
||||
{
|
||||
$language = Language::getIsoById((int)($id_lang));
|
||||
$base_url = $this->rating_url_base[$language].Configuration::get('TS_TAB0_ID_'.(int)($id_lang)).'.html';
|
||||
|
||||
if (!empty($buyer_email))
|
||||
$base_url .= '&buyerEmail='.urlencode(base64_encode($buyer_email)).($id_order ? '&orderID='.urlencode(base64_encode((int)($id_order))) : '');
|
||||
|
||||
return $base_url;
|
||||
}
|
||||
|
||||
public function hookLeftColumn($params)
|
||||
{
|
||||
if (!$this->_isTsIdActive((int)($params['cookie']->id_lang))) return false;
|
||||
|
||||
self::$smarty->assign('display_widget', Configuration::get('TS_TAB0_DISPLAY_IN_SHOP'));
|
||||
if (Configuration::get('TS_TAB0_DISPLAY_IN_SHOP'))
|
||||
{
|
||||
$filename = $this->getWidgetFilename((int)($params['cookie']->id_lang));
|
||||
$cache = new WidgetCache(_PS_MODULE_DIR_.$filename, Configuration::get('TS_TAB0_ID_'.(int)($params['cookie']->id_lang)));
|
||||
|
||||
if (!$cache->isFresh())
|
||||
$cache->refresh();
|
||||
|
||||
self::$smarty->assign(array('ts_id' => Configuration::get('TS_TAB0_ID_'.(int)($params['cookie']->id_lang)), 'filename' => _MODULE_DIR_.$filename));
|
||||
}
|
||||
|
||||
self::$smarty->assign('display_rating_link', (int)(Configuration::get('TS_TAB0_DISPLAY_RATING_FRONT_END')));
|
||||
if (Configuration::get('TS_TAB0_DISPLAY_RATING_FRONT_END'))
|
||||
self::$smarty->assign(array('rating_url' => $this->getRatingUrl(), 'language' => Language::getIsoById((int)($params['cookie']->id_lang))));
|
||||
|
||||
return $this->display(self::$module_name, 'widget.tpl');
|
||||
}
|
||||
|
||||
public function hookRightColumn($params)
|
||||
{
|
||||
return $this->hookLeftColumn($params);
|
||||
}
|
||||
|
||||
public function getWidgetFilename()
|
||||
{
|
||||
global $cookie;
|
||||
|
||||
return self::$module_name.'/cache/'.Configuration::get('TS_TAB0_ID_'.(int)($cookie->id_lang)).'.gif';
|
||||
}
|
||||
|
||||
public function hookOrderConfirmation($params)
|
||||
{
|
||||
if (!Configuration::get('TS_TAB0_DISPLAY_RATING_OC'))
|
||||
|
||||
if (!$this->_isTsIdActive((int)($params['cookie']->id_lang)))
|
||||
return false;
|
||||
|
||||
self::$smarty->assign(array('rating_url' => $this->getRatingUrl((int)($params['objOrder']->id)), 'language' => Language::getIsoById((int)($params['cookie']->id_lang))));
|
||||
|
||||
return $this->display(self::$module_name, 'order-confirmation.tpl');
|
||||
}
|
||||
|
||||
|
||||
public function hookNewOrder($params)
|
||||
{
|
||||
if (!Configuration::get('TS_TAB0_SEND_SEPERATE_MAIL') OR !$this->_isTsIdActive((int)($params['order']->id_lang)))
|
||||
return false;
|
||||
|
||||
RatingAlert::save((int)($params['order']->id));
|
||||
}
|
||||
|
||||
public function getL($key)
|
||||
{
|
||||
$translations = array(
|
||||
'title_part_1' => $this->l('Are you satisfied with'),
|
||||
'title_part_2' => $this->l('? Please write a review!')
|
||||
);
|
||||
|
||||
return $translations[$key];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,71 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
class TrustedShopsSoapApi
|
||||
{
|
||||
const TS_SERVER = 'www.trustedshops.de';
|
||||
const WS_USER = 'presta-shopsoftware';
|
||||
const WS_PASSWORD = 'Yx1F5uXR';
|
||||
|
||||
const ACTIVATE = 1;
|
||||
const DESACTIVATE = 0;
|
||||
|
||||
const RT_OK = 'OK';
|
||||
const RT_SOAP_ERROR = -1;
|
||||
const RT_INVALID_TSID = 'INVALID_TSID';
|
||||
const RT_NOT_REGISTERED = 'NOT_REGISTERED_FOR_TRUSTEDRATING';
|
||||
const RT_WRONG_LOGIN = 'WRONG_WSUSERNAME_WSPASSWORD';
|
||||
|
||||
|
||||
public static function validate($partener_package, $trusted_shops_id, $action = self::ACTIVATE)
|
||||
{
|
||||
$ini = ini_set('soap.wsdl_cache_enabled', 1);
|
||||
$result = self::RT_SOAP_ERROR;
|
||||
|
||||
try
|
||||
{
|
||||
$wsdlUrl = 'https://'.self::TS_SERVER.'/ts/services/TsRating?wsdl';
|
||||
$client = new SoapClient($wsdlUrl);
|
||||
|
||||
$result = $client->updateRatingWidgetState($trusted_shops_id, $action, self::WS_USER, self::WS_PASSWORD, $partener_package);
|
||||
}
|
||||
catch(SoapFault $fault)
|
||||
{
|
||||
$errorText = 'SOAP Fault: (faultcode:{$fault->faultcode}, faultstring:{$fault->faultstring})';
|
||||
|
||||
/** Enable this line if you are experiencing issues with your Trusted Shops ID activation.
|
||||
die($errorText);
|
||||
*/
|
||||
}
|
||||
|
||||
if ($result == self::RT_WRONG_LOGIN)
|
||||
die('Wrong login/password');
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,52 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
class WidgetCache
|
||||
{
|
||||
private $_fileName;
|
||||
private $__ts_id;
|
||||
|
||||
public function __construct($_fileName, $_ts_id)
|
||||
{
|
||||
$this->_fileName = $_fileName;
|
||||
$this->_ts_id = $_ts_id;
|
||||
}
|
||||
|
||||
public function isFresh($timeout = 10800)
|
||||
{
|
||||
if (file_exists($this->_fileName))
|
||||
return ((mktime() - filemtime($this->_fileName)) < $timeout);
|
||||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
public function refresh()
|
||||
{
|
||||
return file_put_contents($this->_fileName, file_get_contents('https://www.trustedshops.com/bewertung/widget/widgets/'.$this->_ts_id.'.gif'));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,103 +0,0 @@
|
||||
var TSPayment = (function()
|
||||
{
|
||||
return {
|
||||
payment_type : {},
|
||||
payment_module : {},
|
||||
alert_message : '',
|
||||
module_box : {
|
||||
html : '<b class="payment-module-label"></b>',
|
||||
class : '.payment-module-label',
|
||||
id :'label-module-',
|
||||
css : {
|
||||
display : 'none',
|
||||
padding :'2px 5px 2px 5px',
|
||||
margin : '0 5px 0 5px',
|
||||
cursor : 'pointer',
|
||||
backgroundColor : '#e2e2e2',
|
||||
color : '#666666'
|
||||
}
|
||||
},
|
||||
alertMessage : function() {
|
||||
if (TSPayment.alert_message != '') {
|
||||
alert(TSPayment.alert_message);
|
||||
}
|
||||
},
|
||||
deleteModuleFromList : function(id_module) {
|
||||
$('select[name=payment_module]').find('option[value='+id_module+']').remove();
|
||||
},
|
||||
setLabelModuleName : function(id_module) {
|
||||
if ($('#'+TSPayment.module_box.id+id_module).length) {
|
||||
$('#'+TSPayment.module_box.id+id_module).text(TSPayment.payment_module[id_module].name)
|
||||
}
|
||||
},
|
||||
init : function() {
|
||||
clickAddFunction();
|
||||
clickRemoveFunction();
|
||||
hoverEffect();
|
||||
}
|
||||
};
|
||||
function hoverEffect()
|
||||
{
|
||||
$(TSPayment.module_box.class).live('mouseover', function(){
|
||||
$(this).css({backgroundColor:'#CF0000', opacity:0.6});
|
||||
});
|
||||
$(TSPayment.module_box.class).live('mouseout', function(){
|
||||
$(this).css({backgroundColor:TSPayment.module_box.css.backgroundColor, opacity:1});
|
||||
|
||||
});
|
||||
}
|
||||
function addModule (payment_type, id_module)
|
||||
{
|
||||
$('#input-hidden-val').append('<input class="choosen_payment_type" style="display:none;" type="hidden" value="'+id_module+'" name="choosen_payment_type['+payment_type+'][]">');
|
||||
if(!$('#block-payment-'+payment_type).length)
|
||||
{
|
||||
$("#payment_type_list").append('<label style="clear:both;"class="payment-type-label" >'+TSPayment.payment_type[payment_type]+'</label>');
|
||||
$("#payment_type_list").append('<div class="margin-form" id="block-payment-'+payment_type+'" ></div>');
|
||||
}
|
||||
$('#block-payment-'+payment_type).append($(TSPayment.module_box.html).attr("id", TSPayment.module_box.id+id_module).css(TSPayment.module_box.css).fadeIn());
|
||||
TSPayment.setLabelModuleName(id_module);
|
||||
TSPayment.deleteModuleFromList(id_module);
|
||||
}
|
||||
function clickAddFunction()
|
||||
{
|
||||
$('input[name=add_payment_module]').click(function()
|
||||
{
|
||||
var boolean = true;
|
||||
var payment_type = $('select[name=payment_type]').val();
|
||||
var payment_module = $('select[name=payment_module]').val();
|
||||
$('.choosen_payment_type').each(function() {
|
||||
var reg = new RegExp(payment_type, 'i');
|
||||
if ($(this).val() == payment_module)
|
||||
boolean = false;
|
||||
});
|
||||
if (boolean) {
|
||||
addModule(payment_type, payment_module);
|
||||
TSPayment.alert_message = '';
|
||||
}
|
||||
else
|
||||
TSPayment.alert_message = 'A payment module can be choosen for only one payment type';
|
||||
|
||||
TSPayment.alertMessage();
|
||||
});
|
||||
}
|
||||
function clickRemoveFunction()
|
||||
{
|
||||
$('.payment-module-label').live('click', function()
|
||||
{
|
||||
var id_module = $(this).attr('id').split('-')[2];
|
||||
var input_to_delete = $('#input-hidden-val').find('input[value='+id_module+']');
|
||||
input_to_delete.remove();
|
||||
$('select[name=payment_module]').append('<option value="'+id_module+'" >'+TSPayment.payment_module[id_module].name+'</option>');
|
||||
$(this).fadeOut('fast', function()
|
||||
{
|
||||
var bloc_parent = $(this).parent();
|
||||
if (bloc_parent.find('b').length == 1)
|
||||
{
|
||||
bloc_parent.prev('label').remove();
|
||||
bloc_parent.remove();
|
||||
}
|
||||
$(this).remove();
|
||||
});
|
||||
});
|
||||
}
|
||||
})();
|
||||
|
Before Width: | Height: | Size: 1013 B |
@@ -1,26 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Waren Sie mit Ihrem Kauf bei {shop_name} zufrieden? Bitte bewerten Sie uns!</title>
|
||||
</head>
|
||||
<body>
|
||||
<table style="font-family: Verdana,sans-serif; font-size: 11px; color: #374953; width: 550px;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="left"><a title="{shop_name}" href="{shop_url}"><img style="border: none;" src="{shop_logo}" alt="{shop_name}" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left">Danke, dass Sie bei {shop_name} eingekauft haben. Waren Sie mit Ihrem Einkauf und unserem Service zufrieden? Hier können Sie {shop_name} bewerten, wir freuen uns auf Ihr Feedback.
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="font-size: 10px; border-top: 1px solid #D9DADE;" align="center"><a style="color: #db3484; font-weight: bold; text-decoration: none;" href="{shop_url}">{shop_name}</a> powered with <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop™</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
Danke, dass Sie bei {shop_name} eingekauft haben. Waren Sie mit Ihrem Einkauf und unserem Service zufrieden? Hier können Sie {shop_name} bewerten, wir freuen uns auf Ihr
|
||||
Feedback: {rating_url}
|
||||
|
||||
{shop_url} powered by PrestaShop™
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Are you satisfied with {shop_name}? Please write a review!</title>
|
||||
</head>
|
||||
<body>
|
||||
<table style="font-family:Verdana,sans-serif; font-size:11px; color:#374953; width: 550px;">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<a href="{shop_url}" title="{shop_name}"><img alt="{shop_name}" src="{shop_logo}" style="border:none;" ></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left">
|
||||
Thanks for having purchased at {shop_name}. Were you satisfied with our service? Please write a review and rate us.
|
||||
<br /><br />
|
||||
<center><a href="{rating_url}"><img border="0" src="{button_url}/apply_en.gif" alt="Write a review" /></a></center>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
|
||||
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,3 +0,0 @@
|
||||
Write a review and rate us at {rating_url}
|
||||
|
||||
{shop_url} powered by PrestaShop™
|
||||
@@ -1,26 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Are you satisfied with {shop_name}? Please write a review!</title>
|
||||
</head>
|
||||
<body>
|
||||
<table style="font-family: Verdana,sans-serif; font-size: 11px; color: #374953; width: 550px;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="left"><a title="{shop_name}" href="{shop_url}"><img style="border: none;" src="{shop_logo}" alt="{shop_name}" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left">Thanks for having purchased at {shop_name}. Were you satisfied with our service? Please write a review and rate us. <br /><br /><a href="{rating_url}"><img src="{button_url}/apply_en.gif" border="0" alt="Write a review" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="font-size: 10px; border-top: 1px solid #D9DADE;" align="center"><a style="color: #db3484; font-weight: bold; text-decoration: none;" href="{shop_url}">{shop_name}</a> powered with <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop™</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,3 +0,0 @@
|
||||
Write a review and rate us at {rating_url}
|
||||
|
||||
{shop_url} powered by PrestaShop™
|
||||
@@ -1,29 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Etes-vous satisfait de votre achat chez {shop_name}? Donnez nous votre avis!</title>
|
||||
</head>
|
||||
<body>
|
||||
<table style="font-family:Verdana,sans-serif; font-size:11px; color:#374953; width: 550px;">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<a href="{shop_url}" title="{shop_name}"><img alt="{shop_name}" src="{shop_logo}" style="border:none;" ></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left">
|
||||
Merci pour votre achat chez {shop_name}. Etes vous satisfait du service chez {shop_name}? Vous pouvez donner votre avis et nous évaluer.
|
||||
<br /><br />
|
||||
<center><a href="{rating_url}"><img border="0" src="{button_url}/apply_fr.gif" alt="Evaluez nous" /></a></center>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td> </td></tr>
|
||||
<tr>
|
||||
<td align="center" style="font-size:10px; border-top: 1px solid #D9DADE;">
|
||||
<a href="{shop_url}" style="color:#DB3484; font-weight:bold; text-decoration:none;">{shop_name}</a> powered with <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,3 +0,0 @@
|
||||
Merci pour votre achat chez {shop_name}. Etes vous satisfait du service chez {shop_name}? Vous pouvez donner votre avis et nous évaluer sur {rating_url}
|
||||
|
||||
{shop_url} réalisé par PrestaShop™
|
||||
@@ -1,25 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Sei soddisfatto di {shop_name}? Scrivi una recensione!</title>
|
||||
</head>
|
||||
<body>
|
||||
<table style="font-family: Verdana,sans-serif; font-size: 11px; color: #374953; width: 550px;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="left"><a title="{shop_name}" href="{shop_url}"><img style="border: none;" src="{shop_logo}" alt="{shop_name}" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left">Grazie di aver acquistato su {shop_name}. Sei soddisfatto/a dei nostri servizi? Scrivi una recensione e dacci un voto. <br /><br /> <a href="{rating_url}"><img src="{button_url}/apply_en.gif" border="0" alt="Write a review" /></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="font-size: 10px; border-top: 1px solid #D9DADE;" align="center"><a style="color: #db3484; font-weight: bold; text-decoration: none;" href="{shop_url}">{shop_name}</a> powered with <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop™</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,3 +0,0 @@
|
||||
Scrivi una recensione e dacci un voto su {rating_url}
|
||||
|
||||
{shop_url} powered by PrestaShop™
|
||||
@@ -1,63 +0,0 @@
|
||||
{*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
<style>
|
||||
{literal}
|
||||
input.myButtonTricksTS
|
||||
{
|
||||
font-size:9px !important;
|
||||
font-weight:bolder;
|
||||
cursor:pointer;
|
||||
padding:3px;
|
||||
}
|
||||
{/literal}
|
||||
</style>
|
||||
<div class="trustedshops-form" style="text-align:center;border:1px solid #ccc;padding:10px;">
|
||||
<div style="float:left;width:72px;">
|
||||
<form name="formSiegel" method="post" action="https://www.trustedshops.com/shop/certificate.php" target="_blank">
|
||||
<input type="image" style="border:0;margin:10px 0 0 0;" border="0" src="{$module_dir}img/siegel.gif" title="{l s='Trusted Shops Seal of Approval - Click to verify.' mod='trustedshops'}">
|
||||
<input name="shop_id" type="hidden" value="{$buyer_protection.shop_id}">
|
||||
</form>
|
||||
</div>
|
||||
<form id="formTShops" name="formTShops" method="post" action="https://www.trustedshops.com/shop/protection.php" target="_blank">
|
||||
<div style="float:left;text-align:left;padding:30px 0 0 10px;width:80%;">
|
||||
<input name="_charset_" type="hidden" value="{$buyer_protection.charset}">
|
||||
<input name="shop_id" type="hidden" value="{$buyer_protection.shop_id}">
|
||||
<input name="email" type="hidden" value="{$buyer_protection.buyer_email}">
|
||||
<input name="amount" type="hidden" value="{$buyer_protection.amount}">
|
||||
<input name="curr" type="hidden" value="{$buyer_protection.currency}">
|
||||
<input name="paymentType" type="hidden" value="{$buyer_protection.payment_type}">
|
||||
<input name="kdnr" type="hidden" value="{$buyer_protection.customer_id}">
|
||||
<input name="ordernr" type="hidden" value="{$buyer_protection.order_id}">
|
||||
{l s='We offer you the Trusted Shops Buyer Protection as an additional service. We cover all costs for this guarantee. All you have to do is register!' mod='trustedshops'}
|
||||
<br><br>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div style="text-align:right;width:100%;">
|
||||
<input class="myButtonTricksTS" type="submit" id="btnProtect" style="display:inline-block;" name="btnProtect" value="{l s='Register for Trusted Shops Buyer Protection' mod='trustedshops'}"/>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
@@ -1,27 +0,0 @@
|
||||
{*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
|
||||
<a target="_blank" href="{$rating_url}" title="Rate this shop"><img alt="Rate this shop" border="0" style="text-align:center;" src="{$module_dir}/img/apply_{$language}.gif" /></a>
|
||||
@@ -1,43 +0,0 @@
|
||||
{*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
|
||||
<div id="tsBox" style="font-size: 80%; width:179px; padding:5px; border: 1px solid #C0C0C0; margin:5px 0 5px 0;" >
|
||||
<form name="formSiegel" method="post"
|
||||
action="https://www.trustedshops.com/shop/certificate.php"
|
||||
target="_blank">
|
||||
<input name="shop_id" type="hidden" value="{$trusted_shops_id}">
|
||||
<div style="background-color: #FFFFFF; font-family: Verdana, Arial, Helvetica, sans-serif; vertical-align: middle; width: 100%; margin: 0px; padding: 0px;" id="tsInnerBox">
|
||||
<div style="text-align: center; width: 100%; float: left; border: 0px solid; margin:2px; padding: 0px;" id="tsSeal">
|
||||
<input type="image" style="border: 0px none; margin:0;" src="{$module_dir}/img/seal.png" title="{l s='Trusted Shops seal of approval - click to verify' mod='trustedshops'}">
|
||||
</div>
|
||||
<div style="text-align: center; line-height: 125%; width: 100%; float: left; border: 0px solid; margin:0; padding: 0px;" id="tsText">
|
||||
<a style="font-weight: normal; text-decoration: none; color: #000000;" title="" href="{$trusted_shops_url}" target="_blank">{$onlineshop_name} {l s='is a certified online shop with Trusted Shops Buyer Protection. More...' mod='trustedshops'}</a>
|
||||
</div>
|
||||
<div style="clear: both;"></div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
@@ -1,234 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
require (_PS_MODULE_DIR_.'/trustedshops/lib/AbsTrustedShops.php');
|
||||
require (_PS_MODULE_DIR_.'/trustedshops/lib/TrustedShopsRating.php');
|
||||
require (_PS_MODULE_DIR_.'/trustedshops/lib/TSBuyerProtection.php');
|
||||
|
||||
class TrustedShops extends Module
|
||||
{
|
||||
/**
|
||||
* Saved each Object needed list of AbsTrustedShops extended objects
|
||||
* @var array
|
||||
*/
|
||||
private static $objects_list = array();
|
||||
private $errors = array();
|
||||
private $warnings = array();
|
||||
public $limited_countries = array();
|
||||
private $confirmations = array();
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
global $smarty;
|
||||
$this->name = 'trustedshops';
|
||||
$this->tab = 'payment_security';
|
||||
$this->version = 1.2;
|
||||
|
||||
parent::__construct();
|
||||
|
||||
if (empty(self::$objects_list))
|
||||
{
|
||||
TSBuyerProtection::setTranslationObject($this);
|
||||
$obj_ts_rating = new TrustedShopsRating();
|
||||
$obj_ts_buyerprotection = new TSBuyerProtection();
|
||||
$obj_ts_buyerprotection->_setEnvApi('production');
|
||||
self::$objects_list = array($obj_ts_rating, $obj_ts_buyerprotection);
|
||||
self::$objects_list[0]->setModuleName($this->name);
|
||||
self::$objects_list[0]->setSmarty($smarty);
|
||||
}
|
||||
|
||||
if (!extension_loaded('soap'))
|
||||
$this->warnings[] = $this->l('This module requires the SOAP PHP extension to function properly.');
|
||||
|
||||
foreach (self::$objects_list as $object)
|
||||
{
|
||||
$this->limited_countries = array_merge($this->limited_countries, $object->limited_countries);
|
||||
if(!empty($object->warnings))
|
||||
$this->warnings = array_merge($this->warnings, $object->warnings);
|
||||
}
|
||||
|
||||
if (!empty($this->warnings))
|
||||
$this->warning = implode(',<br />', $this->warnings).'.';
|
||||
|
||||
$this->displayName = $this->l('Trusted Shops Customer Rating');
|
||||
$this->description = $this->l('Boost consumer confidence and turn more shoppers into buyers.');
|
||||
$this->confirmUninstall = $this->l('Are you sure you want to delete all your settings?');
|
||||
}
|
||||
|
||||
public function install()
|
||||
{
|
||||
$return = true;
|
||||
foreach (self::$objects_list as $object)
|
||||
{
|
||||
$return = $object->install();
|
||||
if (!$return)
|
||||
break;
|
||||
}
|
||||
$return = ($return) ? (parent::install() AND $this->registerHook('orderConfirmation') AND $this->registerHook('newOrder') AND $this->registerHook('rightColumn') AND $this->registerHook('paymentTop') AND $this->registerHook('orderConfirmation')) : $return;
|
||||
$id_hook = Hook::get('payment');
|
||||
$this->updatePosition($id_hook, 0, 1);
|
||||
return $return;
|
||||
}
|
||||
|
||||
public function uninstall()
|
||||
{
|
||||
$return = true;
|
||||
foreach (self::$objects_list as $object)
|
||||
{
|
||||
$return = $object->uninstall();
|
||||
if (!$return)
|
||||
break;
|
||||
}
|
||||
$return = ($return) ? parent::uninstall() : $return;
|
||||
return $return;
|
||||
}
|
||||
|
||||
public function getContent()
|
||||
{
|
||||
$out = '<h2>'.$this->displayName.'</h2>';
|
||||
$tabs = array();
|
||||
|
||||
foreach (self::$objects_list as $key=>$object)
|
||||
{
|
||||
$object->id_tab = $key;
|
||||
$tabs['title'][] = $object->tab_name;
|
||||
$tabs['content'][] = $object->getContent();
|
||||
}
|
||||
// Display Title Tabs
|
||||
$out .= '<ul id="menuTabs">';
|
||||
foreach($tabs['title'] as $key=>$title)
|
||||
$out .= '<li id="menuTab'.$key.'" class="menuTabButton'.( (int)$key === (int)Tools::getValue('id_tab') ? ' selected' : '' ).'">'.($key+1).'. '.$title.'</li>';
|
||||
$out .= '</ul>';
|
||||
|
||||
// Display content Tabs
|
||||
$out .= '<div id="tabList">';
|
||||
foreach($tabs['content'] as $key=>$content)
|
||||
$out .= '<div id="menuTab'.$key.'Sheet" class="tabItem'.( (int)$key === (int)Tools::getValue('id_tab') ? ' selected' : '' ).'">'.$content.'</div>';
|
||||
$out .= '<br clear="left" />'.$this->displayCSSJSTab();
|
||||
|
||||
// Check If each object (display as Tab) contains errors message of
|
||||
$this->checkObjectsErrorsOrConfirmations();
|
||||
return ( !empty($this->errors) ? $this->displayErrors() : $this->displayConfirmations() ).$out;
|
||||
}
|
||||
|
||||
private function displayCSSJSTab()
|
||||
{
|
||||
$id_tab = isset($_GET['id_tab']) ? (int)$_GET['id_tab'] : 0;
|
||||
return '
|
||||
<style>
|
||||
#menuTabs { float: left; padding: 0; text-align: left; margin:0}
|
||||
#menuTabs li { text-align: left; float: left; display: inline; padding: 5px 10px 5px 5px; background: #EFEFEF; font-weight: bold; cursor: pointer; border-left: 1px solid #EFEFEF; border-right: 1px solid #EFEFEF; border-top: 1px solid #EFEFEF; }
|
||||
#menuTabs li.menuTabButton.selected { background: #FFF6D3; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; }
|
||||
#tabList { clear: left;}
|
||||
.tabItem { display: none; }
|
||||
.tabItem.selected { display: block; background: #fcfcfc; border: 1px solid #CCCCCC; padding: 10px; padding-top: 20px;}
|
||||
</style>
|
||||
<script>
|
||||
$().ready(function()
|
||||
{
|
||||
$("#menuTab'.$id_tab.'Sheet").addClass("selected");
|
||||
$("#menuTab'.$id_tab.'").addClass("selected");
|
||||
});
|
||||
$(".menuTabButton").click(function ()
|
||||
{
|
||||
$(".menuTabButton.selected").removeClass("selected");
|
||||
$(this).addClass("selected");
|
||||
$(".tabItem.selected").removeClass("selected");
|
||||
$("#" + this.id + "Sheet").addClass("selected");
|
||||
});
|
||||
</script>
|
||||
';
|
||||
}
|
||||
|
||||
/**
|
||||
* Check If each object (display as Tab) contains errors message of
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
private function checkObjectsErrorsOrConfirmations()
|
||||
{
|
||||
foreach (self::$objects_list as $object)
|
||||
{
|
||||
if(!empty($object->errors))
|
||||
$this->errors = array_merge($this->errors, $object->errors);
|
||||
if(!empty($object->confirmations))
|
||||
$this->confirmations = array_merge($this->confirmations, $object->confirmations);
|
||||
}
|
||||
}
|
||||
private function displayConfirmations()
|
||||
{
|
||||
$html = '';
|
||||
if(!empty($this->confirmations))
|
||||
foreach ($this->confirmations as $confirmations)
|
||||
$html .= $this->displayConfirmation($confirmations);
|
||||
return $html;
|
||||
}
|
||||
private function displayErrors()
|
||||
{
|
||||
$html = '';
|
||||
if(!empty($this->errors))
|
||||
foreach ($this->errors as $error)
|
||||
$html .= $this->displayError($error);
|
||||
return $html;
|
||||
}
|
||||
|
||||
public function hookOrderConfirmation($params)
|
||||
{
|
||||
return $this->dynamicHook($params, __FUNCTION__);
|
||||
}
|
||||
|
||||
public function hookNewOrder($params)
|
||||
{
|
||||
return $this->dynamicHook($params, __FUNCTION__);
|
||||
}
|
||||
|
||||
public function hookRightColumn($params)
|
||||
{
|
||||
return $this->dynamicHook($params, __FUNCTION__);
|
||||
}
|
||||
|
||||
public function hookLeftColumn($params)
|
||||
{
|
||||
return $this->hookRightColumn($params);
|
||||
}
|
||||
|
||||
public function hookPaymentTop($params)
|
||||
{
|
||||
return $this->dynamicHook($params, __FUNCTION__);
|
||||
}
|
||||
|
||||
private function dynamicHook($params, $hook_name)
|
||||
{
|
||||
if(!$this->active)
|
||||
return '';
|
||||
$return = '';
|
||||
foreach (self::$objects_list as $object)
|
||||
if (method_exists($object, $hook_name))
|
||||
$return .= $object->{$hook_name}($params);
|
||||
return $return;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,38 +0,0 @@
|
||||
{*
|
||||
* 2007-2011 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Academic Free License (AFL 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/afl-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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 1.4 $
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
|
||||
{if $display_widget}
|
||||
<div style="text-align: center">
|
||||
<a target="_blank" href="https://www.trustedshops.com/buyerrating/info_{$ts_id}.html" title="See customer ratings of {$shop_name}"><img alt="Customer ratings of {$shop_name}" border="0" src="{$filename}"/></a>
|
||||
</div>
|
||||
<br />
|
||||
{/if}
|
||||
{if $display_rating_link}
|
||||
<div style="text-align: center">
|
||||
<a target="_blank" href="{$rating_url}" title="Rate this shop"><img alt="Rate this shop" border="0" src="{$module_dir}/img/apply_{$language}.gif" /></a>
|
||||
</div>
|
||||
<br />
|
||||
{/if}
|
||||