This commit is contained in:
rGaillard
2011-07-06 10:10:43 +00:00
parent 31d94236ac
commit d1a13007b9
4695 changed files with 0 additions and 339293 deletions
-37
View File
@@ -1,37 +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_once(dirname(__FILE__).'/../../config/config.inc.php');
require_once(dirname(__FILE__).'/../../init.php');
include(dirname(__FILE__).'/../../header.php');
$smarty->assign('iso_code', Tools::strtolower(Language::getIsoById($cookie->id_lang ? (int)($cookie->id_lang) : 1)));
echo Module::display(dirname(__FILE__).'/paypal', 'about.tpl');
include(dirname(__FILE__).'/../../footer.php');
-42
View File
@@ -1,42 +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
*}
<h1>{l s='What Is PayPal?' mod='paypal'}</h1>
<div class="paypalapi_about">
<p>{l s='PayPal, the trusted leader in online payments, enables buyers and businesses to send and receive money online. PayPal has over 100 million member accounts in 190 countries and regions. It\'s accepted by merchants everywhere, both on and off eBay.' mod='paypal'}
<p><b>{l s='Is it safe to use?' mod='paypal'}</b></p>
<p>{l s='PayPal helps protect your credit card information with industry-leading security and fraud prevention systems. When you use PayPal, your financial information is never shared with the merchant.' mod='paypal'}</p>
<p><b>{l s='Why use PayPal?' mod='paypal'}</b></p>
<p>
<ul>
<li>{l s='Make purchases or send money with PayPal - it\'s free' mod='paypal'}</li>
<li>{l s='Shop and pay conveniently by saving your information with PayPal' mod='paypal'}</li>
<li>{l s='PayPal is accepted by millions of businesses worldwide and is the preferred payment method on eBay' mod='paypal'}</li>
</ul>
</p>
<p><a href="https://www.paypal.com/{$iso_code}/cgi-bin/webscr?cmd=_registration-run&pal=TWJHHUL9AEP9C">{l s='Start using PayPal today!' mod='paypal'}</a></p>
</div>
-93
View File
@@ -1,93 +0,0 @@
<?php
class PayPalConnect extends Paypal
{
private $_logs = array();
public function makeConnection($host, $script, $body, $simple_mode = false)
{
$this->_logs[] = $this->l('Making new connection to').' \''.$host.$script.'\'';
if (function_exists('curl_exec'))
$return = $this->_connectByCURL($host.$script, $body);
if (isset($return) AND $return)
return $return;
$tmp = $this->_connectByFSOCK($host, $script, $body);
if (!$simple_mode || !preg_match('/[A-Z]+=/', $tmp, $result))
return $tmp;
$pos = strpos($tmp, $result[0]);
$body = substr($tmp, $pos);
return $body;
}
public function getLogs()
{
return $this->_logs;
}
/************************************************************/
/********************** CONNECT METHODS **********************/
/************************************************************/
private function _connectByCURL($url, $body)
{
$ch = @curl_init();
if (!$ch)
$this->_logs[] = $this->l('Connect failed with CURL method');
else
{
$this->_logs[] = $this->l('Connect with CURL method successful');
$this->_logs[] = '<b>'.$this->l('Sending this params:').'</b>';
$this->_logs[] = $body;
@curl_setopt($ch, CURLOPT_URL, 'https://'.$url);
@curl_setopt($ch, CURLOPT_POST, true);
@curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
@curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
@curl_setopt($ch, CURLOPT_HEADER, false);
@curl_setopt($ch, CURLOPT_TIMEOUT, 30);
@curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
@curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
@curl_setopt($ch, CURLOPT_VERBOSE, true);
$result = @curl_exec($ch);
if (!$result)
$this->_logs[] = $this->l('Send with CURL method failed ! Error:').' '.curl_error($ch);
else
$this->_logs[] = $this->l('Send with CURL method successful');
@curl_close($ch);
}
return (isset($result) ? $result : false);
}
private function _connectByFSOCK($host, $script, $body)
{
$fp = @fsockopen('ssl://'.$host, 443, $errno, $errstr, 4);
if (!$fp)
$this->_logs[] = $this->l('Connect failed with fsockopen method');
else
{
$header = $this->_makeHeader($host, $script, strlen($body));
$this->_logs[] = $this->l('Connect with fsockopen method successful');
$this->_logs[] = $this->l('Sending this params:').' '.$header.$body;
@fputs($fp, $header.$body);
$tmp = '';
while (!feof($fp))
$tmp .= trim(fgets($fp, 1024));
fclose($fp);
$result = $tmp;
if (!$result)
$this->_logs[] = $this->l('Send with fsockopen method failed !');
else
$this->_logs[] = $this->l('Send with fsockopen method successful');
}
return (isset($result) ? $result : false);
}
private function _makeHeader($host, $script, $lenght)
{
$header = 'POST '.strval($script).' HTTP/1.0'."\r\n" .
'Host: '.strval($host)."\r\n".
'Content-Type: application/x-www-form-urlencoded'."\r\n".
'Content-Length: '.(int)($lenght)."\r\n".
'Connection: close'."\r\n\r\n";
return $header;
}
}
-63
View File
@@ -1,63 +0,0 @@
<?php
define('PAYPAL_API_VERSION', '60.0');
class PaypalLib extends Paypal
{
private $_logs = array();
public function getLogs()
{
return $this->_logs;
}
public function makeCall($host, $script, $methodName, $string)
{
// Making request string
$request = 'METHOD='.urlencode($methodName).'&VERSION='.urlencode(PAYPAL_API_VERSION);
$request .= '&PWD='.urlencode(Configuration::get('PAYPAL_API_PASSWORD')).'&USER='.urlencode(Configuration::get('PAYPAL_API_USER'));
$request .= '&SIGNATURE='.urlencode(Configuration::get('PAYPAL_API_SIGNATURE')).$string;
// Making connection
include_once(_PS_MODULE_DIR_.'paypal/api/paypalconnect.php');
$ppConnect = new PaypalConnect();
$result = $ppConnect->makeConnection($host, $script, $request, true);
$this->_logs = $ppConnect->getLogs();
// Formating response value
$response = explode('&', $result);
foreach ($response as $k => $res)
{
$tmp = explode('=', $res);
if (!isset($tmp[1]))
$response[$tmp[0]] = urldecode($tmp[0]);
else
{
$response[$tmp[0]] = urldecode($tmp[1]);
unset($response[$k]);
}
}
if (!Configuration::get('PAYPAL_MODE_DEBUG'))
$this->_logs = array();
$toExclude = array('TOKEN', 'SUCCESSPAGEREDIRECTREQUESTED', 'VERSION', 'BUILD', 'ACK', 'CORRELATIONID');
$this->_logs[] = '<b>'.$this->l('PayPal response:').'</b>';
foreach ($response as $k => $res)
{
if (!Configuration::get('PAYPAL_MODE_DEBUG') AND in_array($k, $toExclude))
continue;
$this->_logs[] = $k.' -> '.$res;
}
return $response;
}
public function makeSimpleCall($host, $script, $request)
{
// Making connection
include_once(_PS_MODULE_DIR_.'paypal/api/paypalconnect.php');
$ppConnect = new PaypalConnect();
$result = $ppConnect->makeConnection($host, $script, $request);
$this->_logs = $ppConnect->getLogs();
return $result;
}
}
-29
View File
@@ -1,29 +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 class="advertising_block">
<p><a href="{$base_dir_ssl}modules/paypal/about.php" rel="nofollow"><img src="{$logo}" alt="PayPal" title="{l s='Pay with PayPal' mod='paypal'}" /></a></p>
</div>
-12
View File
@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<module>
<name>paypal</name>
<displayName>PayPal</displayName>
<version>2.4</version>
<description>Accepts payments by credit cards (CB, Visa, MasterCard, Amex, Aurore, Cofinoga, 4 stars) with PayPal.</description>
<author></author>
<tab>payments_gateways</tab>
<confirmUninstall>Are you sure you want to delete your details?</confirmUninstall>
<is_configurable>1</is_configurable>
<need_instance>1</need_instance>
</module>
-61
View File
@@ -1,61 +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
*}
{capture name=path}<a href="{$link->getPageLink('order', true)}">{l s='Your shopping cart' mod='paypal'}</a><span class="navigation-pipe">{$navigationPipe}</span>{l s='PayPal' mod='paypal'}{/capture}
{include file="$tpl_dir./breadcrumb.tpl"}
<h2>{l s='Order summary' mod='paypal'}</h2>
{assign var='current_step' value='payment'}
{include file="$tpl_dir./order-steps.tpl"}
<h3>{l s='PayPal payment' mod='paypal'}</h3>
<form action="{$this_path_ssl}{$mode}submit.php" method="post">
{if isset($ppToken)}<input type="hidden" name="token" value="{$ppToken|escape:'htmlall'|stripslashes}" />{/if}
{if isset($payerID)}<input type="hidden" name="payerID" value="{$payerID|escape:'htmlall'|stripslashes}" />{/if}
<p>
<img src="{$logo}" alt="{l s='PayPal' mod='paypal'}" style="margin-bottom: 5px" />
<br />{l s='You have chosen to pay with PayPal.' mod='paypal'}
<br/><br />
{l s='Here is a short summary of your order:' mod='paypal'}
</p>
<p style="margin-top:20px;">
- {l s='The total amount of your order is' mod='paypal'}
<span id="amount_{$currency->id}" class="price">{convertPriceWithCurrency price=$total currency=$currency}</span> {if $use_taxes == 1}{l s='(tax incl.)' mod='paypal'}{/if}
</p>
<p>
- {l s='We accept the following currency to be sent by PayPal:' mod='paypal'}&nbsp;<b>{$currency->name}</b>
<input type="hidden" name="currency_payement" value="{$currency->id}" />
</p>
<p>
<b>{l s='Please confirm your order by clicking \'I confirm my order\'' mod='paypal'}.</b>
</p>
<p class="cart_navigation">
<a href="{$link->getPageLink('order', true)}?step=3" class="button_large">{l s='Other payment methods' mod='paypal'}</a>
<input type="submit" name="submitPayment" value="{l s='I confirm my order' mod='paypal'}" class="exclusive_large" />
</p>
</form>
-32
View File
@@ -1,32 +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
*}
<p>{l s='Your order on' mod='paypal'} <span class="bold">{$shop_name}</span> {l s='is complete.' mod='paypal'}
<br /><br />
{l s='You have chosen the PayPal method.' mod='paypal'}
<br /><br /><span class="bold">{l s='Your order will be sent very soon.' mod='paypal'}</span>
<br /><br />{l s='For any questions or for further information, please contact our' mod='paypal'} <a href="{$link->getPageLink('contact-form', true)}">{l s='customer support' mod='paypal'}</a>.
</p>
-225
View File
@@ -1,225 +0,0 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{paypal}prestashop>about_e816e21c1c8e0eba0620fa3df6bd6795'] = 'Was ist PayPal?';
$_MODULE['<{paypal}prestashop>about_16ea57badae98f402bb8f2b2f49d4e77'] = 'PayPal ist ein bewährter Marktführer bei Online-Shop-Zahlungen, der es Käufern und Unternehmen ermöglicht, Geld online zu senden und zu empfangen. PayPal hat über 100 Millionen Mitgliedskonten in 190 Ländern und Regionen. Es wird von Händlern allerorten, sowohl auf als auch außerhalb von eBay, akzeptiert.';
$_MODULE['<{paypal}prestashop>about_d20adade7baa1b60b713521031ea676c'] = 'Ist es sicher?';
$_MODULE['<{paypal}prestashop>about_64f7b897c6d56fc62428f692ee5737cd'] = 'PayPal schützt Ihre Kreditkarteninformationen mit branchenweit führenden Sicherheits-und Betrugsbekämpfungssystemen. Wenn Sie PayPal verwenden, werden Ihre finanziellen Informationen dem Händler niemals sichtbar gemacht.';
$_MODULE['<{paypal}prestashop>about_5ef30813484389e4200640c2f006004d'] = 'Warum PayPal?';
$_MODULE['<{paypal}prestashop>about_86550d4ea832930db4366f03b90bdfb8'] = 'Gebührenfrei einkaufen oder Geld senden mit PayPal';
$_MODULE['<{paypal}prestashop>about_7dc9e529337e5a55a12bf362b8e68cac'] = 'Bequem einkaufen und zahlen durch gespeicherte Daten bei PayPal';
$_MODULE['<{paypal}prestashop>about_32098ae6a7ecd96805df9e48fb6cc739'] = 'PayPal wird von Millionen von Händlern weltweit akzeptiert und ist die bevorzugte Zahlungsmethode bei eBay';
$_MODULE['<{paypal}prestashop>about_7934d7d1280bfbb8778743e39292af30'] = 'Nutzen Sie PayPal noch heute!';
$_MODULE['<{paypal}prestashop>column_dac2693baa5c5c9a5318609ed81c4f2a'] = 'Mit PayPal bezahlen ';
$_MODULE['<{paypal}prestashop>confirm_a40cab5994f36d4c48103a22ca082e8f'] = 'Ihr Warenkorb';
$_MODULE['<{paypal}prestashop>confirm_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal';
$_MODULE['<{paypal}prestashop>confirm_f1d3b424cd68795ecaa552883759aceb'] = 'Zusammenfassung der Bestellung ';
$_MODULE['<{paypal}prestashop>confirm_dd23adc5fb6bda9c384397b31e57fc53'] = 'PayPal-Zahlung';
$_MODULE['<{paypal}prestashop>confirm_62d74398cb6ebaa69ab7339052ca5c92'] = 'Sie haben PayPal für Ihre Zahlung gewählt.';
$_MODULE['<{paypal}prestashop>confirm_c884ed19483d45970c5bf23a681e2dd2'] = 'Hier eine kurze Zusammenfassung Ihrer Bestellung:';
$_MODULE['<{paypal}prestashop>confirm_e2867a925cba382f1436d1834bb52a1c'] = 'Der Gesamtbetrag Ihrer Bestellung beträgt';
$_MODULE['<{paypal}prestashop>confirm_1f87346a16cf80c372065de3c54c86d9'] = '(Inkl. Mwst.)';
$_MODULE['<{paypal}prestashop>confirm_8ed356c32b198c9cb2abab7c3d262b93'] = 'Wir akzeptieren die folgenden Währungen über PayPal:';
$_MODULE['<{paypal}prestashop>confirm_0881a11f7af33bc1b43e437391129d66'] = 'Bitte bestätigen Sie Ihre Bestellung durch Klicken auf \"Ich bestätige meine Bestellung\"';
$_MODULE['<{paypal}prestashop>confirm_569fd05bdafa1712c4f6be5b153b8418'] = 'Andere Zahlungsmethoden';
$_MODULE['<{paypal}prestashop>confirm_46b9e3665f187c739c55983f757ccda0'] = 'Ich bestätige meine Bestellung';
$_MODULE['<{paypal}prestashop>confirmation_2e2117b7c81aa9ea6931641ea2c6499f'] = 'Ihre Bestellung vom';
$_MODULE['<{paypal}prestashop>confirmation_75fbf512d744977d62599cc3f0ae2bb4'] = 'ist abgeschlossen.';
$_MODULE['<{paypal}prestashop>confirmation_15b0f8e55c6bdfc3d5fd0b6b3b6cb3ee'] = 'Sie haben die PayPal-Methode gewählt.';
$_MODULE['<{paypal}prestashop>confirmation_e6dc7945b557a1cd949bea92dd58963e'] = 'Ihre Bestellung wird sehr bald geschickt werden.';
$_MODULE['<{paypal}prestashop>confirmation_0db71da7150c27142eef9d22b843b4a9'] = 'Bei Fragen oder für weitere Informationen, kontaktieren Sie bitte unseren';
$_MODULE['<{paypal}prestashop>confirmation_64430ad2835be8ad60c59e7d44e4b0b1'] = 'Kunden-Support';
$_MODULE['<{paypal}prestashop>error_a40cab5994f36d4c48103a22ca082e8f'] = 'Ihr Warenkorb';
$_MODULE['<{paypal}prestashop>error_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal';
$_MODULE['<{paypal}prestashop>error_425551a2289ed60c9260933d1c45ef00'] = 'Bitte lesen Sie die Protokolle:';
$_MODULE['<{paypal}prestashop>error_0557fa923dcee4d0f86b1409f5c2167f'] = 'Zurück';
$_MODULE['<{paypal}prestashop>paypal_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal';
$_MODULE['<{paypal}prestashop>paypal_6e7012516038a096b9f6bb71ba2cc5a3'] = 'Akzeptierte Zahlungen per Kreditkarte (CB, Visa, MasterCard, Amex, Aurore, Cofinoga, 4 stars) mit PayPal';
$_MODULE['<{paypal}prestashop>paypal_69a1a3ad8dd5da6db3c4da838a0cf9c7'] = 'Sie sind sicher, dass Sie Ihre Daten löschen möchten?';
$_MODULE['<{paypal}prestashop>paypal_1828820cc60e36b6f9fdf60cab103ed7'] = 'Sie nutzenzur Zeit die Standard-PayPal-Mail-Adresse, Sie müssen Ihre eigene E-Mail-Adresse verwenden';
$_MODULE['<{paypal}prestashop>paypal_47b49d72ae0a4b3aa928fc4cc3e7fc53'] = 'Um diese Warnung zu ENTFERNEN, deinstallieren und entfernen Sie bitte das PayPalAPI Modul';
$_MODULE['<{paypal}prestashop>paypal_7d0887294ed32e2013b64c4210e26841'] = 'Bitte benutzen Sie das PayPalAPI Modul nicht und entfernen Sie es.';
$_MODULE['<{paypal}prestashop>paypal_a706f7e37a81dc235d41bbeb6fae92aa'] = 'Keine gültige Zahlungsmethode ausgewählt';
$_MODULE['<{paypal}prestashop>paypal_32af90c3cfef1bacf43b0c3a8f60a4da'] = 'Geldbetrag wurde überwiesen';
$_MODULE['<{paypal}prestashop>paypal_d238649ac5ec14afc894fad36c0b50fc'] = 'Die Anfrage nach Geldüberweisung war nicht erfolgreich, bitte lesen Sie die Protokollnachricht!';
$_MODULE['<{paypal}prestashop>paypal_05b998de2c4fb46a7bdd37bd378b81d9'] = 'Die Bestätigung ist erfolgt, siehe Protokollnachricht!';
$_MODULE['<{paypal}prestashop>paypal_aeca7e93a1b3d77e38c3cffa131774d5'] = 'Der Betrag wurde überwiesen';
$_MODULE['<{paypal}prestashop>paypal_cba030a50c8a99c7e224adbe1cf58544'] = 'Die Anfrage nach Geldüberweisung war nicht erfolgreich, bitte lesen Sie die Protokollnachricht!';
$_MODULE['<{paypal}prestashop>paypal_b630aa9b5e25da971949cae62dd109aa'] = 'PayPal Validation';
$_MODULE['<{paypal}prestashop>paypal_e8fdd4382b75b42bfbd96eb7b032cf47'] = 'Information:';
$_MODULE['<{paypal}prestashop>paypal_9119a92adbbf6c67bfb8a3aee0bdb720'] = 'Ausstehender Einzug- Kein Versand';
$_MODULE['<{paypal}prestashop>paypal_c14eb95a724174f336b8ffdd98ef2f35'] = 'Ausstehende Zahlung - Kein Versand';
$_MODULE['<{paypal}prestashop>paypal_5b18ff32c2aaaf4b79bdead10b10fe29'] = 'Zahlungsstatus erhalten';
$_MODULE['<{paypal}prestashop>paypal_81e826adb70e2e6b189c2eef739d52d4'] = 'PayPal Capture';
$_MODULE['<{paypal}prestashop>paypal_6f1f179632d90b3f71f5c83a1137e302'] = 'Einzugsbereite Geldbeträge vor Versand';
$_MODULE['<{paypal}prestashop>paypal_3a81739e892c77e29ff4718c9dd92a34'] = 'Geld einziehen';
$_MODULE['<{paypal}prestashop>paypal_8ba079f305b81b172792bc0469b6a690'] = 'PayPal Refund';
$_MODULE['<{paypal}prestashop>paypal_016e1f278eccd700eaf33f74a501d050'] = 'Zahlung akzeptiert';
$_MODULE['<{paypal}prestashop>paypal_a8b1cc445942a2e1a7d7cca641c86d67'] = 'Wenn Sie ein Produkt zurückzahlen, wird eine teilweise Rückerstattung vorgenommen, bis Sie die Option \"Gutschein generieren\" wählen';
$_MODULE['<{paypal}prestashop>paypal_c2a5e2e23d8ec9cad779d657b7d33fc1'] = 'Rückerstattung der gesamten Transaktion';
$_MODULE['<{paypal}prestashop>paypal_729a51874fe901b092899e9e8b31c97a'] = 'Sind Sie sicher?';
$_MODULE['<{paypal}prestashop>paypal_20fda49ece75d93bea97648ab1f1f1cf'] = 'Produktergebnisse löschen';
$_MODULE['<{paypal}prestashop>paypal_e5970a9962bc4cacb5adb408418a9f0c'] = 'Zulassung zu PayPal fehlgeschlagen';
$_MODULE['<{paypal}prestashop>paypal_be6575076ac9b651d870a59970e7cd54'] = 'PayPal bestätigt Fehler';
$_MODULE['<{paypal}prestashop>paypal_90aa7ebf75251f535a9bdd6ba671ae7a'] = 'Der von PayPal vergebene Token ist nicht der gleiche wie der Cookie Token';
$_MODULE['<{paypal}prestashop>paypal_33ac76215cb67f61f891cc3113e55997'] = 'Genehmigung von PayPal für Zahlungsaufschub erteilt ';
$_MODULE['<{paypal}prestashop>paypal_8778ee03f6592d5fec9a1f2ee851e476'] = 'Bestellung mit PayPal abgeschlossen!';
$_MODULE['<{paypal}prestashop>paypal_d89a00d4ba79c176bb0fc17f12d42a18'] = 'Paypal-Schlüssel \'mc_gross\' nicht angegeben, kann gezahlten Betrag nicht kontrollieren.';
$_MODULE['<{paypal}prestashop>paypal_202a2860b19003ce53966a8780bb448b'] = 'Paypal-Schlüssel \"payment_status\" nicht angegeben, kann Zahlungsgültigkeit nicht kontrollieren.';
$_MODULE['<{paypal}prestashop>paypal_bd0e34e5be6447844e6f262d51f1a9dc'] = 'Zahlung:';
$_MODULE['<{paypal}prestashop>paypal_23703f7d045936080031477df1fc237b'] = 'Paypal Schlüssel \'custom\' nicht angegeben, kann keine Verbindung zum Warenkorb herstellen';
$_MODULE['<{paypal}prestashop>paypal_760c3c2ccfadeee26c80c7b39462cf1d'] = 'Paypal-Schlüssel \'txn_id\' nicht angegeben, Transaktion unbekannt';
$_MODULE['<{paypal}prestashop>paypal_7faa8448e059fb97d60d4a4b15634d98'] = 'Paypal-Schlüssel \'mc_currency\' nicht angegeben, Währung unbekannt';
$_MODULE['<{paypal}prestashop>paypal_e61f52d02b9f52fbe1fd41ed320e29c3'] = 'Warenkorb nicht gefunden';
$_MODULE['<{paypal}prestashop>paypal_0617900b1aff826081d07f5a3e2e7cd0'] = 'Bestellauftrag wurde bereits gestellt';
$_MODULE['<{paypal}prestashop>paypal_f5209b3301a46f3057ffbf34d903e205'] = 'PayPal-Transaktion-ID:';
$_MODULE['<{paypal}prestashop>paypal_7b19e875ff64b09d80ee05dcc84b9975'] = 'Die PayPal-Transaktion konnte nicht VERIFIZIERT werden.';
$_MODULE['<{paypal}prestashop>paypal_20dfea1a472e5be3f15f6b5f36ca335c'] = 'Problem beim Verbinden mit dem PayPal-Server.';
$_MODULE['<{paypal}prestashop>paypal_76ee8dc73701e846f7bccdf98dae079b'] = 'Keine Kommunikationsmittel zur Verfügung.';
$_MODULE['<{paypal}prestashop>paypal_8358ec19f397d4cdd632688d4f79e535'] = 'Fehler in der Überprüfung (mit fsockopen). Zurückgegeben:';
$_MODULE['<{paypal}prestashop>paypal_eca77e208634d52703b07672abbf16ec'] = 'Fehler in der Überprüfung (mit cURL). Zurückgegeben:';
$_MODULE['<{paypal}prestashop>paypal_f7799c2ded739cf3c3e9babffc5f315b'] = 'Verbindung über cURL fehlgeschlagen';
$_MODULE['<{paypal}prestashop>paypal_c640d8a3c2c34f79061a0bbe50e8420c'] = 'Bitte warten, Umleitung zu Paypal ... Danke.';
$_MODULE['<{paypal}prestashop>paypal_ea4788705e6873b424c65e91c2846b19'] = 'Abbrechen';
$_MODULE['<{paypal}prestashop>paypal_dae3b417a0fc4a49e851ce55d6d49551'] = 'Mein Warenkorb';
$_MODULE['<{paypal}prestashop>paypal_9bfa2332c9c7198ac9774c6710bf76c4'] = 'Zurück zum Shop';
$_MODULE['<{paypal}prestashop>paypal_d56249aa9643851a94bd3ef3da309d35'] = 'Paypal Fehler: (ungültige oder nicht definierte Geschäftskonto-E-Mail)';
$_MODULE['<{paypal}prestashop>paypal_e7ac6f09a936201890de4094b1ee4e50'] = 'Paypal Fehler: (ungültige Adresse oder ungültiger Kunde)';
$_MODULE['<{paypal}prestashop>paypal_49b21ad0d38942f635877e7bbc5d7a1e'] = 'Lösung';
$_MODULE['<{paypal}prestashop>paypal_f4f70727dc34561dfde1a3c529b6205c'] = 'Einstellungen';
$_MODULE['<{paypal}prestashop>paypal_9c81c7e49db6edc5ea243dbadfb28c2a'] = 'Logos und Benutzereinstellung';
$_MODULE['<{paypal}prestashop>paypal_9d51eb502e6f46830cb97f53d761c212'] = 'Wählen Sie eine Lösung:';
$_MODULE['<{paypal}prestashop>paypal_0234fed198d74928f2864c574a9a89c1'] = 'Zahlungen mit Kreditkarten';
$_MODULE['<{paypal}prestashop>paypal_627fabff813cafcd9313ea0037c0125b'] = 'CB, Visa, Mastercard und Paypal-Konto';
$_MODULE['<{paypal}prestashop>paypal_ec2d6b2d2cfb9eadee1c15f3d579252d'] = 'Zahlungen mit Karten + Verkäuferschutz';
$_MODULE['<{paypal}prestashop>paypal_7d8bea00c8ed9c1cdf9da980bd69c85a'] = '(PayPal Integral Evolution, Monatsabonnement)';
$_MODULE['<{paypal}prestashop>paypal_457e5c04d6690cc6a72412c792c504d9'] = 'Zahlungen durch';
$_MODULE['<{paypal}prestashop>paypal_5d4023dba17f36ce69357d25cbe4fbad'] = 'PayPal-Konto';
$_MODULE['<{paypal}prestashop>paypal_e574ea35c565033a741efb1925b5f188'] = '(PayPal-Option +)';
$_MODULE['<{paypal}prestashop>paypal_fdcd0dc7120ef9d14417c968e0a16e97'] = 'Aktivierung an Bedingungen geknüpft';
$_MODULE['<{paypal}prestashop>paypal_89e92ec866e363e88f12a7372d682c5c'] = 'Klicken Sie hier, um sich anzumelden';
$_MODULE['<{paypal}prestashop>paypal_cd1bd0b0d3d22ede663f17df5194b3fe'] = 'Option:';
$_MODULE['<{paypal}prestashop>paypal_28882d910d7b5311aa0a9d5094e11caf'] = 'PayPal Express: Zahlung in 2 Klicks';
$_MODULE['<{paypal}prestashop>paypal_22afd6155cd35727f6ed449aef994731'] = 'Mit dem PayPal-Konto direkt aus der Warenkorb-Seite';
$_MODULE['<{paypal}prestashop>paypal_4037fe43ff7b926e093805e2931c0f77'] = 'Nur Debuggen:';
$_MODULE['<{paypal}prestashop>paypal_7c8ab5ce5bf608dd41cf3e8f2312451c'] = 'Lange Protokollnachricht aktivieren';
$_MODULE['<{paypal}prestashop>paypal_d4dccb8ca2dac4e53c01bd9954755332'] = 'Speichern Sie die Einstellungen';
$_MODULE['<{paypal}prestashop>paypal_7a262cb0d3d917313c8ba12f996fe83c'] = 'Wichtig:';
$_MODULE['<{paypal}prestashop>paypal_de79de54313d8b57cd45c840d196b7d0'] = 'Zur Verwendung aller PayPal-Lösungen, müssen Sie die API-Parameter im «Einstellungen» -Tab einstellen';
$_MODULE['<{paypal}prestashop>paypal_79f53a401ee04dbc765d0ba9a951a106'] = 'Sandbox-Modus (Tests)';
$_MODULE['<{paypal}prestashop>paypal_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Aktiv';
$_MODULE['<{paypal}prestashop>paypal_3cab03c00dbd11bc3569afa0748013f0'] = 'Inaktiv';
$_MODULE['<{paypal}prestashop>paypal_4dbcb38bbbff5d4a402f2575c57a35e6'] = 'Zahlungsart';
$_MODULE['<{paypal}prestashop>paypal_5bc5650bfb4c1eb3887ea80e7802301f'] = 'Direkt (Vertrieb)';
$_MODULE['<{paypal}prestashop>paypal_6dd446781e32f1a989396e93db70437d'] = 'Autorisierung / Manuelle Erfassung';
$_MODULE['<{paypal}prestashop>paypal_7186106a954f390f62860c11c8ba10d5'] = '(Zahlung Versand)';
$_MODULE['<{paypal}prestashop>paypal_3cf5408a4a41b56c6fd7878a070b76ff'] = 'PayPal-Konto E-Mail';
$_MODULE['<{paypal}prestashop>paypal_467008be031b7e1a913395f53556fea8'] = 'Aktivierung der API-Aufrufe';
$_MODULE['<{paypal}prestashop>paypal_11931512987fbd1b884da55f13273a07'] = 'API Benutzername';
$_MODULE['<{paypal}prestashop>paypal_5e07b6956454390018af63962ef4a3f6'] = 'API Kennwort';
$_MODULE['<{paypal}prestashop>paypal_1c1357865e46a07448c95ebca39d4541'] = 'Leer lassen, wenn das Kennwort nicht geändert wurde';
$_MODULE['<{paypal}prestashop>paypal_e1ededd62537e048b815f70cc971bec8'] = 'Signatur-API';
$_MODULE['<{paypal}prestashop>paypal_52c59dac7b7ebfa8a0d78c98f2bc0225'] = 'Hier erfahren Sie, wie Sie Ihren API Benutzernamen, Ihr Kennwort und Ihre Signatur generieren können';
$_MODULE['<{paypal}prestashop>paypal_e28b278d67eeecfad67e76ec78fc13e8'] = 'Logos und Benutzereinstellungen';
$_MODULE['<{paypal}prestashop>paypal_ee0174ba1fc039128d0a38074a7af945'] = 'Banner Bild-URL';
$_MODULE['<{paypal}prestashop>paypal_4c1c997e72e71eb6f690a9cd3dacb1f4'] = 'Das Bild sollte auf einem sicheren (https) Server gehostet werden. Max: 750x90px.';
$_MODULE['<{paypal}prestashop>paypal_091878185fc791198ac80982860b21ed'] = 'Gewählte Vorlage für PayPal-Integral Evolution ';
$_MODULE['<{paypal}prestashop>paypal_cd8d30bc59ccf92028335d7e69e29905'] = 'Hier lernen Sie, wie man diese Vorlagen benutzerdefiniert';
$_MODULE['<{paypal}prestashop>paypal_9518e6d551f7dc752b24af3629e849f9'] = 'Eröffnung Ihres PayPal-Kontos';
$_MODULE['<{paypal}prestashop>paypal_4c9ef5964631b6d4b38f5f2f77d1be74'] = 'Durch die Eröffnung Ihres PayPal-Kontos, indem Sie auf das folgende Bild klicken, tragen Sie wesentlich zur Verbesserung der PrestaShop Software:';
$_MODULE['<{paypal}prestashop>paypal_1569f6a31ff61f45c5ba13d7cab7e042'] = 'Dieses Modul ermöglicht es Ihnen, Zahlungen per PayPal akzeptieren.';
$_MODULE['<{paypal}prestashop>paypal_3c4cb777e8df15388c680354569636b6'] = 'Wählt der Kunde diesen Zahlungsmodus, wird Ihr PayPal-Konto automatisch gutgeschrieben.';
$_MODULE['<{paypal}prestashop>paypal_f9b49f93306d28e3dec595c3b89c926d'] = 'Sie müssen Ihr PayPal-Konto konfigurieren, bevor Sie dieses Modul benutzen.';
$_MODULE['<{paypal}prestashop>paypal_57487012438fe78ae1d462e53a91bfc0'] = 'Lösung ist nicht gültig';
$_MODULE['<{paypal}prestashop>paypal_f629bddb66252b97da3e7e5346697955'] = 'Sie müssen zumindest die Kontoinformationen angeben';
$_MODULE['<{paypal}prestashop>paypal_909d37302176080797966972da84b4e7'] = 'E-Mail ist nicht gültig';
$_MODULE['<{paypal}prestashop>paypal_2fa631ec6f6afeac6335f3261181063f'] = 'URL für Banner ist nicht gültig';
$_MODULE['<{paypal}prestashop>paypal_19ea461c401bd941bf47a8bc01eecd6c'] = 'URL für Banner muss das HTTPS-Protokoll verwenden';
$_MODULE['<{paypal}prestashop>paypal_b8822117a8cc930315a50bab7f6a4c80'] = 'PayPal-Vorlage ist nicht gültig';
$_MODULE['<{paypal}prestashop>paypal_b02186eee414487a068584dc0d177ad2'] = 'Sie können Zulassung/ Einzug nicht nutzen, wenn Sie ';
$_MODULE['<{paypal}prestashop>paypal_17fcef6818690d11d7caaab023ecdcff'] = 'Sie können diese Lösung nicht nutzen, wenn Sie keine API-Zulassung haben';
$_MODULE['<{paypal}prestashop>paypal_30e4e115bfc5e140782fd9cb01be6898'] = 'Sie können PayPal Express nicht nutzen, wenn Sie keine API-Zulassung haben';
$_MODULE['<{paypal}prestashop>paypal_c888438d14855d7d96a2724ee9c306bd'] = 'Die Einstellungen werden aktualisiert';
$_MODULE['<{paypal}prestashop>paypal_67c0e5ec07dd31dc74aaf55d6a72da31'] = 'Fehler beim Abrufen des Zahlungsstatus';
$_MODULE['<{paypal}prestashop>paypal_ec53a8c4f07baed5d8825072c89799be'] = 'Status';
$_MODULE['<{paypal}prestashop>paypal_ccb168b5a6a86eb100dc2dee754a316b'] = 'Grund:';
$_MODULE['<{paypal}prestashop>paypal_4f3acf5bcd7152fd301550bec6d0ffac'] = 'Fehler von PayPal:';
$_MODULE['<{paypal}prestashop>paypal_a0d09826326fd385f6ceb17442f290de'] = 'Fehler bei Einzugsanfrage';
$_MODULE['<{paypal}prestashop>paypal_e03187f3f9d6eda06a2a7c201f58cdca'] = 'Fehler bei Rückerstattungsanfrage';
$_MODULE['<{paypal}prestashop>paypal_e5d5d9f40763cfe6549bef705e3529a7'] = 'Die Zahlungsnachricht ist nicht gültig, prüfen Sie bitte Ihr Modul!';
$_MODULE['<{paypal}prestashop>paypal_eec39bf42bd135971fb2d838c67d1449'] = 'Ergebnis Rückerstattungsoperation';
$_MODULE['<{paypal}prestashop>paypal_2ab62d1a578713d0862b56819295630e'] = 'Rückerstattung abgeschlossen mit PayPal!';
$_MODULE['<{paypal}prestashop>paypal_a64db959966ba8d07c8b5d9493fcc21f'] = 'Fehler bei der Transaktion!';
$_MODULE['<{paypal}prestashop>paypal_67962779da962e3d4225055afc05e7bd'] = 'Ergebnis Einzugsoperation';
$_MODULE['<{paypal}prestashop>paypal_5a05744b8ccb5909bc83355092e0f3fa'] = 'Überprüfungsstatus:';
$_MODULE['<{paypal}prestashop>paypalconnect_d1f14cc4a2dade80c92421d26422fea0'] = 'Neue Verbindung herstellen zu';
$_MODULE['<{paypal}prestashop>paypalconnect_94a27811a721ef512ad7bfa06cab34e0'] = 'Verbindung fehlgeschlagen mit CURL Methode ';
$_MODULE['<{paypal}prestashop>paypalconnect_70215486455daee13382c68b1a230b82'] = 'Verbindung erfolgreich mit CURL Methode ';
$_MODULE['<{paypal}prestashop>paypalconnect_e4c4ad49bced42265b5facc2175cdafd'] = 'Senden dieser Parameter:';
$_MODULE['<{paypal}prestashop>paypalconnect_445583f6641da98fc7ac8fd9d13a564b'] = 'Sendung mit CURL Methode fehlgeschlagen! Fehler:';
$_MODULE['<{paypal}prestashop>paypalconnect_ef4fbf36eaa2083442d386990ba063c2'] = 'Sendung mit CURL Methode erfolgreich';
$_MODULE['<{paypal}prestashop>paypalconnect_bf059c9751bb1a20b449b7917b1df374'] = 'Verbindung fehlgeschlagen mit fsockopen Methode ';
$_MODULE['<{paypal}prestashop>paypalconnect_ea800e3536f81238a4cbc32eb6db4eaf'] = 'Verbindung erfolgreich mit fsockopen Methode ';
$_MODULE['<{paypal}prestashop>paypalconnect_6e9aa4cb541e09b07602d4ea96080811'] = 'Sendung mit fsockopen Methode fehlgeschlagen!';
$_MODULE['<{paypal}prestashop>paypalconnect_842a183be225d415b2b4375ba1dd1c94'] = 'Sendung mit fsockopen Methode erfolgreich';
$_MODULE['<{paypal}prestashop>paypallib_7c2d00d8c94d1ce0f515db8b0481db40'] = 'PayPal Antwort:';
$_MODULE['<{paypal}prestashop>authentication_cd42c6dd6cc4cd65cb5e13b729050469'] = 'Überprüfen Sie Ihre Informationen';
$_MODULE['<{paypal}prestashop>authentication_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Ihre persönlichen Daten';
$_MODULE['<{paypal}prestashop>authentication_b78a3223503896721cca1303f776159b'] = 'Titel';
$_MODULE['<{paypal}prestashop>authentication_127469a6b4253ebb77adccc0dd48461e'] = 'Herr';
$_MODULE['<{paypal}prestashop>authentication_29e32764941c30d1bb41c601014fbdbd'] = 'Frau';
$_MODULE['<{paypal}prestashop>authentication_20db0bfeecd8fe60533206a2b5e9891a'] = 'Vorname';
$_MODULE['<{paypal}prestashop>authentication_8d3f5eff9c40ee315d452392bed5309b'] = 'Nachname';
$_MODULE['<{paypal}prestashop>authentication_1e884e3078d9978e216a027ecd57fb34'] = 'E-Mail';
$_MODULE['<{paypal}prestashop>authentication_dc647eb65e6711e155375218212b3964'] = 'Kennwort';
$_MODULE['<{paypal}prestashop>authentication_bf2957630c4209f61a388a08c2154915'] = '(5 Zeichen min.)';
$_MODULE['<{paypal}prestashop>authentication_aac772216aecbeca0e86d06671fe985a'] = 'Geburtstag';
$_MODULE['<{paypal}prestashop>authentication_86f5978d9b80124f509bdb71786e929e'] = 'Januar';
$_MODULE['<{paypal}prestashop>authentication_659e59f062c75f81259d22786d6c44aa'] = 'Februar';
$_MODULE['<{paypal}prestashop>authentication_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'März';
$_MODULE['<{paypal}prestashop>authentication_3fcf026bbfffb63fb24b8de9d0446949'] = 'April';
$_MODULE['<{paypal}prestashop>authentication_195fbb57ffe7449796d23466085ce6d8'] = 'Mai';
$_MODULE['<{paypal}prestashop>authentication_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Juni';
$_MODULE['<{paypal}prestashop>authentication_1b539f6f34e8503c97f6d3421346b63c'] = 'Juli';
$_MODULE['<{paypal}prestashop>authentication_41ba70891fb6f39327d8ccb9b1dafb84'] = 'August';
$_MODULE['<{paypal}prestashop>authentication_cc5d90569e1c8313c2b1c2aab1401174'] = 'September';
$_MODULE['<{paypal}prestashop>authentication_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Oktober';
$_MODULE['<{paypal}prestashop>authentication_7e823b37564da492ca1629b4732289a8'] = 'November';
$_MODULE['<{paypal}prestashop>authentication_82331503174acbae012b2004f6431fa5'] = 'Dezember';
$_MODULE['<{paypal}prestashop>authentication_6f6162d3a052bb330e9c60285c74c6c9'] = 'Unseren Newsletter abonnieren';
$_MODULE['<{paypal}prestashop>authentication_ac135c86084a47630c9eadb4edd5ef75'] = 'Sonderangebote unserer Partner erhalten';
$_MODULE['<{paypal}prestashop>authentication_455175f3f5be6306247babb349c0515a'] = 'Ihre Adresse';
$_MODULE['<{paypal}prestashop>authentication_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Firma';
$_MODULE['<{paypal}prestashop>authentication_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
$_MODULE['<{paypal}prestashop>authentication_783cb853aae6984e51583b3bb80c09d2'] = 'Adresse 2';
$_MODULE['<{paypal}prestashop>authentication_9b514b51d03075005814a33edc74c958'] = 'PLZ ';
$_MODULE['<{paypal}prestashop>authentication_57d056ed0984166336b7879c2af3657f'] = 'Stadt';
$_MODULE['<{paypal}prestashop>authentication_59716c97497eb9694541f7c3d37b1a4d'] = 'Land';
$_MODULE['<{paypal}prestashop>authentication_46a2a41cc6e552044816a2d04634545d'] = 'Staat';
$_MODULE['<{paypal}prestashop>authentication_0f68b904e33d9ac04605aecc958bcf52'] = 'Weitere Informationen';
$_MODULE['<{paypal}prestashop>authentication_fe66abce284ec8589e7d791185b5c442'] = 'Telefon Festnetz';
$_MODULE['<{paypal}prestashop>authentication_41c2fff4867cc204120f001e7af20f7a'] = 'Telefon mobil';
$_MODULE['<{paypal}prestashop>authentication_6c1c4d5a22e3d6ed8385e7287233396f'] = 'Tragen Sie einen Adresstitel ein für spätere Referenz';
$_MODULE['<{paypal}prestashop>authentication_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Meine Adresse';
$_MODULE['<{paypal}prestashop>authentication_a0bfb8e59e6c13fc8d990781f77694fe'] = 'Weiter';
$_MODULE['<{paypal}prestashop>authentication_19f823c6453c2b1ffd09cb715214813d'] = 'Pflichtfeld';
$_MODULE['<{paypal}prestashop>login_b40ad46c25c153a3d2fde078c0e1b0f8'] = 'Bitte loggen Sie sich ein';
$_MODULE['<{paypal}prestashop>login_abc57016a138dea055e0d8be6358f84e'] = 'Diese E-Mail wurde bereits registriert, bitte melden Sie sich an!';
$_MODULE['<{paypal}prestashop>login_8b5dd64ab8d0b8158906796b53a200e2'] = 'E-Mail-Adresse';
$_MODULE['<{paypal}prestashop>login_dc647eb65e6711e155375218212b3964'] = 'Kennwort';
$_MODULE['<{paypal}prestashop>login_bffe9a3c9a7e00ba00a11749e022d911'] = 'Anmelden';
$_MODULE['<{paypal}prestashop>login_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Kennwort vergessen?';
$_MODULE['<{paypal}prestashop>paypalexpress_b601224a2a6c61f38738ca903fb019a2'] = 'Kein gültiger Warenkorb';
$_MODULE['<{paypal}prestashop>paypalexpress_ee9dc1e678d54c517f481583c3fb2db8'] = 'Keine gültige Währung';
$_MODULE['<{paypal}prestashop>shopping_cart_aa91004934e1abdb620b5d0f0c18681c'] = 'Bezahlen mit PayPal Express Checkout';
$_MODULE['<{paypal}prestashop>submit_528d1f824243db48e40cb6223d32fa06'] = 'Kein Token von PayPal erhalten';
$_MODULE['<{paypal}prestashop>submit_795277047da13b4fc74e02e050b1a675'] = 'PayPal Fehlerrücksendung';
$_MODULE['<{paypal}prestashop>submit_b4133f1ba03a914134a5281a08231078'] = 'Zulassung zu PayPal fehlgeschlagen';
$_MODULE['<{paypal}prestashop>submit_4935b58d37fda5bd60acc510cb324342'] = 'Kann PayPal-Kontoinformationen nicht abrufen ';
$_MODULE['<{paypal}prestashop>submit_90aa7ebf75251f535a9bdd6ba671ae7a'] = 'Von PayPal erhaltener Token ist nicht derselbe wie der Cookie-Token';
$_MODULE['<{paypal}prestashop>paypal_dac2693baa5c5c9a5318609ed81c4f2a'] = 'Bezahlen mit PayPal';
$_MODULE['<{paypal}prestashop>payment_dac2693baa5c5c9a5318609ed81c4f2a'] = 'Bezahlen mit PayPal';
$_MODULE['<{paypal}prestashop>payment_a3f2caee6ef8e68fbd26e42d83f2bf65'] = 'Bezahlen Sie mit Ihrem PayPal-Konto, Kreditkarte (CB, Visa, Mastercard ...), oder privaten Kreditkarte';
$_MODULE['<{paypal}prestashop>payment_b08008a2de4331ba13f006c9bcf37b62'] = 'Bezahlen Sie mit Ihrem PayPal-Konto';
$_MODULE['<{paypal}prestashop>paypalpayment_ee9dc1e678d54c517f481583c3fb2db8'] = 'Keine gültige Währung';
-41
View File
@@ -1,41 +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
*}
{capture name=path}<a href="{$link->getPageLink('order', true)}">{l s='Your shopping cart' mod='paypal'}</a><span class="navigation-pipe">{$navigationPipe}</span>{l s='PayPal' mod='paypal'}{/capture}
{include file="$tpl_dir./breadcrumb.tpl"}
<h2>{$message}</h2>
{if isset($logs) && $logs}
<div class="error">
<p><b>{l s='Please refer to logs:' mod='paypal'}</b></p>
<ol>
{foreach from=$logs key=k item=log}
<li>{$log}</li>
{/foreach}
</ol>
<p><a href="{$base_dir}" class="button_small" title="{l s='Back' mod='paypal'}">&laquo; {l s='Back' mod='paypal'}</a></p>
</div>
{/if}
-225
View File
@@ -1,225 +0,0 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{paypal}prestashop>about_e816e21c1c8e0eba0620fa3df6bd6795'] = '¿Qué es PayPal?';
$_MODULE['<{paypal}prestashop>about_16ea57badae98f402bb8f2b2f49d4e77'] = 'PayPal es el líder indiscutible de pagos por Internet: tiene más de 100 millones de cuentas repartidas en 190 países de todo el mundo. Es aceptado como forma de pago por muchos vendedores, tanto dentro como fuera de eBay. ';
$_MODULE['<{paypal}prestashop>about_d20adade7baa1b60b713521031ea676c'] = '¿Es un servicio seguro?';
$_MODULE['<{paypal}prestashop>about_64f7b897c6d56fc62428f692ee5737cd'] = 'PayPal protege sus datos financieros con los mejores sistemas de seguridad y prevención de fraude del mercado. PayPal nunca revela sus datos financieros al vendedor. ';
$_MODULE['<{paypal}prestashop>about_5ef30813484389e4200640c2f006004d'] = '¿Por qué utilizar PayPal?';
$_MODULE['<{paypal}prestashop>about_86550d4ea832930db4366f03b90bdfb8'] = ' Haga compras y envíe pagos con PayPal: es gratuito (consulte las condicio';
$_MODULE['<{paypal}prestashop>about_7dc9e529337e5a55a12bf362b8e68cac'] = 'Registre sus datos en PayPal y compre con toda tranquilidad . ';
$_MODULE['<{paypal}prestashop>about_32098ae6a7ecd96805df9e48fb6cc739'] = 'Millones de vendedores de todo el mundo aceptan PayPal y es la forma de pago más utilizada en eBay. ';
$_MODULE['<{paypal}prestashop>about_7934d7d1280bfbb8778743e39292af30'] = '¡Utilice PayPal ya!';
$_MODULE['<{paypal}prestashop>column_dac2693baa5c5c9a5318609ed81c4f2a'] = 'Pagar con PayPal';
$_MODULE['<{paypal}prestashop>confirm_a40cab5994f36d4c48103a22ca082e8f'] = 'Su carrito de la compra';
$_MODULE['<{paypal}prestashop>confirm_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal ';
$_MODULE['<{paypal}prestashop>confirm_f1d3b424cd68795ecaa552883759aceb'] = 'Resumen del pedido ';
$_MODULE['<{paypal}prestashop>confirm_dd23adc5fb6bda9c384397b31e57fc53'] = 'Pago con PayPal ';
$_MODULE['<{paypal}prestashop>confirm_62d74398cb6ebaa69ab7339052ca5c92'] = 'Ha elegido pagar con PayPal. ';
$_MODULE['<{paypal}prestashop>confirm_c884ed19483d45970c5bf23a681e2dd2'] = 'Breve resumen del pedido: ';
$_MODULE['<{paypal}prestashop>confirm_e2867a925cba382f1436d1834bb52a1c'] = 'El importe total de su pedido es de';
$_MODULE['<{paypal}prestashop>confirm_1f87346a16cf80c372065de3c54c86d9'] = '(TTC) ';
$_MODULE['<{paypal}prestashop>confirm_8ed356c32b198c9cb2abab7c3d262b93'] = 'Aceptamos esta divisa para el pago : ';
$_MODULE['<{paypal}prestashop>confirm_0881a11f7af33bc1b43e437391129d66'] = 'Confirme su pedido pulsando \"Confirmar pedido\"';
$_MODULE['<{paypal}prestashop>confirm_569fd05bdafa1712c4f6be5b153b8418'] = 'Otras formas de pago';
$_MODULE['<{paypal}prestashop>confirm_46b9e3665f187c739c55983f757ccda0'] = 'Confirmar pedido';
$_MODULE['<{paypal}prestashop>confirmation_2e2117b7c81aa9ea6931641ea2c6499f'] = ' El pedido de ';
$_MODULE['<{paypal}prestashop>confirmation_75fbf512d744977d62599cc3f0ae2bb4'] = ' se ha guardado correctamente';
$_MODULE['<{paypal}prestashop>confirmation_15b0f8e55c6bdfc3d5fd0b6b3b6cb3ee'] = ' Ha seleccionado PayPal como forma de pago';
$_MODULE['<{paypal}prestashop>confirmation_e6dc7945b557a1cd949bea92dd58963e'] = ' Le enviaremos el pedido lo antes posible';
$_MODULE['<{paypal}prestashop>confirmation_0db71da7150c27142eef9d22b843b4a9'] = ' Si tiene dudas o necesita información adicional, póngase en contacto con nuestro';
$_MODULE['<{paypal}prestashop>confirmation_64430ad2835be8ad60c59e7d44e4b0b1'] = ' servicio de atención al cliente ';
$_MODULE['<{paypal}prestashop>error_a40cab5994f36d4c48103a22ca082e8f'] = 'Carrito de la compra';
$_MODULE['<{paypal}prestashop>error_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal';
$_MODULE['<{paypal}prestashop>error_425551a2289ed60c9260933d1c45ef00'] = 'Compruebe los registros: ';
$_MODULE['<{paypal}prestashop>error_0557fa923dcee4d0f86b1409f5c2167f'] = 'Anterior';
$_MODULE['<{paypal}prestashop>paypal_ad69e733ebae8d264bccaa38d68830e8'] = ' PayPal ';
$_MODULE['<{paypal}prestashop>paypal_6e7012516038a096b9f6bb71ba2cc5a3'] = 'Acepta pagos con tarjetas de débito y crédito (Visa, MasterCard, Amex, Aurora) con PayPal';
$_MODULE['<{paypal}prestashop>paypal_69a1a3ad8dd5da6db3c4da838a0cf9c7'] = '¿Está seguro de que desea eliminar su configuración? ';
$_MODULE['<{paypal}prestashop>paypal_1828820cc60e36b6f9fdf60cab103ed7'] = 'Actualmente está utilizando la dirección email PayPal por defecto, debe sustituirla por sus propia dirección';
$_MODULE['<{paypal}prestashop>paypal_47b49d72ae0a4b3aa928fc4cc3e7fc53'] = 'Para QUITAR esta advertencia, desinstale y quite este módulo PayPalAPI.rn';
$_MODULE['<{paypal}prestashop>paypal_7d0887294ed32e2013b64c4210e26841'] = 'No utilice y quite el módulo PayPalAPI.';
$_MODULE['<{paypal}prestashop>paypal_a706f7e37a81dc235d41bbeb6fae92aa'] = 'No se ha seleccionado una forma de págo válida';
$_MODULE['<{paypal}prestashop>paypal_32af90c3cfef1bacf43b0c3a8f60a4da'] = 'Se han recuperado los fondos';
$_MODULE['<{paypal}prestashop>paypal_d238649ac5ec14afc894fad36c0b50fc'] = 'La solicitud de recuperación de fondos no se ha hecho correctamente, consulte el mensaje de registro.';
$_MODULE['<{paypal}prestashop>paypal_05b998de2c4fb46a7bdd37bd378b81d9'] = 'Se ha completado la validación, consulte el mensaje de registro.';
$_MODULE['<{paypal}prestashop>paypal_aeca7e93a1b3d77e38c3cffa131774d5'] = 'Se ha hecho un reintegro.';
$_MODULE['<{paypal}prestashop>paypal_cba030a50c8a99c7e224adbe1cf58544'] = 'La solicitud de reintegro no se ha hecho correctamente, consulte el mensaje de registro.';
$_MODULE['<{paypal}prestashop>paypal_b630aa9b5e25da971949cae62dd109aa'] = 'Validación de PayPal';
$_MODULE['<{paypal}prestashop>paypal_e8fdd4382b75b42bfbd96eb7b032cf47'] = 'Información:';
$_MODULE['<{paypal}prestashop>paypal_9119a92adbbf6c67bfb8a3aee0bdb720'] = 'Pendiente de captura; sin envío';
$_MODULE['<{paypal}prestashop>paypal_c14eb95a724174f336b8ffdd98ef2f35'] = 'Pendiente de pago; sin envío';
$_MODULE['<{paypal}prestashop>paypal_5b18ff32c2aaaf4b79bdead10b10fe29'] = 'Obtener estado de pago';
$_MODULE['<{paypal}prestashop>paypal_81e826adb70e2e6b189c2eef739d52d4'] = 'Captura de PayPal';
$_MODULE['<{paypal}prestashop>paypal_6f1f179632d90b3f71f5c83a1137e302'] = 'Pueden capturarse los fondos antes del envío';
$_MODULE['<{paypal}prestashop>paypal_3a81739e892c77e29ff4718c9dd92a34'] = 'Obtener el dinero';
$_MODULE['<{paypal}prestashop>paypal_8ba079f305b81b172792bc0469b6a690'] = 'Reintegro de PayPal';
$_MODULE['<{paypal}prestashop>paypal_016e1f278eccd700eaf33f74a501d050'] = 'Pago aceptado';
$_MODULE['<{paypal}prestashop>paypal_a8b1cc445942a2e1a7d7cca641c86d67'] = 'Si emite un reintegro por un producto, se realiza un reintegro parcial a menos que marque la opción \"Generar cupón\".';
$_MODULE['<{paypal}prestashop>paypal_c2a5e2e23d8ec9cad779d657b7d33fc1'] = 'Reintegrar el total de la transacción';
$_MODULE['<{paypal}prestashop>paypal_729a51874fe901b092899e9e8b31c97a'] = '¿Está seguro?';
$_MODULE['<{paypal}prestashop>paypal_20fda49ece75d93bea97648ab1f1f1cf'] = 'Cancelar resultados de productos:';
$_MODULE['<{paypal}prestashop>paypal_e5970a9962bc4cacb5adb408418a9f0c'] = 'Error de autorización a PayPal';
$_MODULE['<{paypal}prestashop>paypal_be6575076ac9b651d870a59970e7cd54'] = 'PayPal devolvió un error';
$_MODULE['<{paypal}prestashop>paypal_90aa7ebf75251f535a9bdd6ba671ae7a'] = 'El token proporcionado por PayPal no es el mismo que el de la cookie';
$_MODULE['<{paypal}prestashop>paypal_33ac76215cb67f61f891cc3113e55997'] = 'Autorización de pago diferido concedida por PayPal';
$_MODULE['<{paypal}prestashop>paypal_8778ee03f6592d5fec9a1f2ee851e476'] = 'Pedido completado con PayPal';
$_MODULE['<{paypal}prestashop>paypal_d89a00d4ba79c176bb0fc17f12d42a18'] = 'La clave de PayPal \'mc_gross\' no se ha especificado; no se puede controlar el importe pagado.';
$_MODULE['<{paypal}prestashop>paypal_202a2860b19003ce53966a8780bb448b'] = 'No se ha especificado la clave PayPal \'payment_status\'; no se puede verificar la validez del pago';
$_MODULE['<{paypal}prestashop>paypal_bd0e34e5be6447844e6f262d51f1a9dc'] = 'Pago: ';
$_MODULE['<{paypal}prestashop>paypal_23703f7d045936080031477df1fc237b'] = 'El token proporcionado por PayPal no es el mismo que el del cookie';
$_MODULE['<{paypal}prestashop>paypal_760c3c2ccfadeee26c80c7b39462cf1d'] = 'No se ha especificado la clave PayPal \'txn_id\', transacción no reconocida';
$_MODULE['<{paypal}prestashop>paypal_7faa8448e059fb97d60d4a4b15634d98'] = 'No se ha especificado la clave PayPal \'mc_currency\', divisa no reconocida';
$_MODULE['<{paypal}prestashop>paypal_e61f52d02b9f52fbe1fd41ed320e29c3'] = ' No se puede encontrar el carro de la compra';
$_MODULE['<{paypal}prestashop>paypal_0617900b1aff826081d07f5a3e2e7cd0'] = 'Ya se ha procesado el pedido';
$_MODULE['<{paypal}prestashop>paypal_f5209b3301a46f3057ffbf34d903e205'] = 'Id. de la transacción de PayPal: ';
$_MODULE['<{paypal}prestashop>paypal_7b19e875ff64b09d80ee05dcc84b9975'] = 'No se ha podido verificar la transacción de PayPal. ';
$_MODULE['<{paypal}prestashop>paypal_20dfea1a472e5be3f15f6b5f36ca335c'] = ' Error de conexión con el servidor de PayPal. ';
$_MODULE['<{paypal}prestashop>paypal_76ee8dc73701e846f7bccdf98dae079b'] = 'No hay protocolos de comunicación disponibles. ';
$_MODULE['<{paypal}prestashop>paypal_8358ec19f397d4cdd632688d4f79e535'] = 'Error de verificación (protocolo fsockopen) . Retroceso: ';
$_MODULE['<{paypal}prestashop>paypal_eca77e208634d52703b07672abbf16ec'] = 'Error de verificación (protocolo cURL) . Retroceso: ';
$_MODULE['<{paypal}prestashop>paypal_f7799c2ded739cf3c3e9babffc5f315b'] = 'Error de conexión con protocolo cURL. ';
$_MODULE['<{paypal}prestashop>paypal_c640d8a3c2c34f79061a0bbe50e8420c'] = 'Por favor espere, le redirigimos a PayPal... Gracias. ';
$_MODULE['<{paypal}prestashop>paypal_ea4788705e6873b424c65e91c2846b19'] = 'Cancelar';
$_MODULE['<{paypal}prestashop>paypal_dae3b417a0fc4a49e851ce55d6d49551'] = 'Mi carrito';
$_MODULE['<{paypal}prestashop>paypal_9bfa2332c9c7198ac9774c6710bf76c4'] = 'Volver a la tienda';
$_MODULE['<{paypal}prestashop>paypal_d56249aa9643851a94bd3ef3da309d35'] = 'Error Paypal: (dirección email business no válida o incorrecta)';
$_MODULE['<{paypal}prestashop>paypal_e7ac6f09a936201890de4094b1ee4e50'] = 'Error Paypal: (direccción o cliente no válidos)';
$_MODULE['<{paypal}prestashop>paypal_49b21ad0d38942f635877e7bbc5d7a1e'] = 'Solución';
$_MODULE['<{paypal}prestashop>paypal_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuración';
$_MODULE['<{paypal}prestashop>paypal_9c81c7e49db6edc5ea243dbadfb28c2a'] = 'Logotipos y personalizaciones';
$_MODULE['<{paypal}prestashop>paypal_9d51eb502e6f46830cb97f53d761c212'] = 'Elija una solución:';
$_MODULE['<{paypal}prestashop>paypal_0234fed198d74928f2864c574a9a89c1'] = 'Pagos con tarjetas de crédito';
$_MODULE['<{paypal}prestashop>paypal_627fabff813cafcd9313ea0037c0125b'] = '(Visa, MasterCard, Amex y Aurora) y cuenta PayPal';
$_MODULE['<{paypal}prestashop>paypal_ec2d6b2d2cfb9eadee1c15f3d579252d'] = 'Pagos con tarjetas y protección del vendedor';
$_MODULE['<{paypal}prestashop>paypal_7d8bea00c8ed9c1cdf9da980bd69c85a'] = '(Pasarela integral de PayPal, suscripción mensual)';
$_MODULE['<{paypal}prestashop>paypal_457e5c04d6690cc6a72412c792c504d9'] = 'Pagos con';
$_MODULE['<{paypal}prestashop>paypal_5d4023dba17f36ce69357d25cbe4fbad'] = 'Cuenta PayPal';
$_MODULE['<{paypal}prestashop>paypal_e574ea35c565033a741efb1925b5f188'] = '(PayPal Option+)';
$_MODULE['<{paypal}prestashop>paypal_fdcd0dc7120ef9d14417c968e0a16e97'] = 'Activación sujeta a condiciones y suscripción mensual';
$_MODULE['<{paypal}prestashop>paypal_89e92ec866e363e88f12a7372d682c5c'] = 'haga clic aquí para suscribirse';
$_MODULE['<{paypal}prestashop>paypal_cd1bd0b0d3d22ede663f17df5194b3fe'] = 'Opción:';
$_MODULE['<{paypal}prestashop>paypal_28882d910d7b5311aa0a9d5094e11caf'] = 'Pago exprés de PayPal: pago en 2 clics';
$_MODULE['<{paypal}prestashop>paypal_22afd6155cd35727f6ed449aef994731'] = 'con cuenta PayPal directamente del carro de la compra';
$_MODULE['<{paypal}prestashop>paypal_4037fe43ff7b926e093805e2931c0f77'] = 'Solo modo debug';
$_MODULE['<{paypal}prestashop>paypal_7c8ab5ce5bf608dd41cf3e8f2312451c'] = 'Activa los mensajes de log completos';
$_MODULE['<{paypal}prestashop>paypal_d4dccb8ca2dac4e53c01bd9954755332'] = 'Guardar configuración';
$_MODULE['<{paypal}prestashop>paypal_7a262cb0d3d917313c8ba12f996fe83c'] = 'Importante:';
$_MODULE['<{paypal}prestashop>paypal_de79de54313d8b57cd45c840d196b7d0'] = 'Para utilizar cualquier solución de PayPal, debe configurar los parámetros de API en la pestaña \"Ajustes\".';
$_MODULE['<{paypal}prestashop>paypal_79f53a401ee04dbc765d0ba9a951a106'] = 'Modo de entorno de pruebas';
$_MODULE['<{paypal}prestashop>paypal_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Activado';
$_MODULE['<{paypal}prestashop>paypal_3cab03c00dbd11bc3569afa0748013f0'] = 'Desactivado';
$_MODULE['<{paypal}prestashop>paypal_4dbcb38bbbff5d4a402f2575c57a35e6'] = 'Tipo de pago';
$_MODULE['<{paypal}prestashop>paypal_5bc5650bfb4c1eb3887ea80e7802301f'] = 'Directo (ventas)';
$_MODULE['<{paypal}prestashop>paypal_6dd446781e32f1a989396e93db70437d'] = 'Autorización y captura';
$_MODULE['<{paypal}prestashop>paypal_7186106a954f390f62860c11c8ba10d5'] = '(Pago de envío)';
$_MODULE['<{paypal}prestashop>paypal_3cf5408a4a41b56c6fd7878a070b76ff'] = 'Correo electrónico de cuenta PayPal';
$_MODULE['<{paypal}prestashop>paypal_467008be031b7e1a913395f53556fea8'] = 'Activación de llamadas API';
$_MODULE['<{paypal}prestashop>paypal_11931512987fbd1b884da55f13273a07'] = 'Nombre de usuario de API';
$_MODULE['<{paypal}prestashop>paypal_5e07b6956454390018af63962ef4a3f6'] = 'Contraseña de API';
$_MODULE['<{paypal}prestashop>paypal_1c1357865e46a07448c95ebca39d4541'] = 'Déjelo en blanco si no ha cambiado la contraseña';
$_MODULE['<{paypal}prestashop>paypal_e1ededd62537e048b815f70cc971bec8'] = 'Firma de API';
$_MODULE['<{paypal}prestashop>paypal_52c59dac7b7ebfa8a0d78c98f2bc0225'] = 'Haga clic aquí para saber cómo generar su nombre de usuario, contraseña y firma de API.';
$_MODULE['<{paypal}prestashop>paypal_e28b278d67eeecfad67e76ec78fc13e8'] = 'Logotipos y personalizaciones';
$_MODULE['<{paypal}prestashop>paypal_ee0174ba1fc039128d0a38074a7af945'] = ' URL de la imagen del banner ';
$_MODULE['<{paypal}prestashop>paypal_4c1c997e72e71eb6f690a9cd3dacb1f4'] = 'La imagen debe estar alojada en un servidor seguro (https). Máx.: 750x90px.';
$_MODULE['<{paypal}prestashop>paypal_091878185fc791198ac80982860b21ed'] = 'Plantilla de Pasarela integral de PayPal';
$_MODULE['<{paypal}prestashop>paypal_cd8d30bc59ccf92028335d7e69e29905'] = 'Haga clic aquí para saber cómo personalizar esta plantilla.';
$_MODULE['<{paypal}prestashop>paypal_9518e6d551f7dc752b24af3629e849f9'] = 'Abrir una cuenta PayPal ';
$_MODULE['<{paypal}prestashop>paypal_4c9ef5964631b6d4b38f5f2f77d1be74'] = 'Si abre su cuenta PayPal pulsando la imagen que aparece a continuación, nos ayuda a mejorar la aplicación PrestaShop: ';
$_MODULE['<{paypal}prestashop>paypal_1569f6a31ff61f45c5ba13d7cab7e042'] = 'Este módulo le permite aceptar los pagos por PayPal ';
$_MODULE['<{paypal}prestashop>paypal_3c4cb777e8df15388c680354569636b6'] = 'Si el cliente elige esta forma de pago, los fondos se abonarán automáticamente a su cuenta';
$_MODULE['<{paypal}prestashop>paypal_f9b49f93306d28e3dec595c3b89c926d'] = 'Debe configurar su cuenta PayPal antes de usar este módulo.';
$_MODULE['<{paypal}prestashop>paypal_57487012438fe78ae1d462e53a91bfc0'] = 'la solución no es válida.';
$_MODULE['<{paypal}prestashop>paypal_f629bddb66252b97da3e7e5346697955'] = 'debe indicar al menos la información de cuenta';
$_MODULE['<{paypal}prestashop>paypal_909d37302176080797966972da84b4e7'] = 'el correo electrónico no es válido';
$_MODULE['<{paypal}prestashop>paypal_2fa631ec6f6afeac6335f3261181063f'] = 'La URL del banner no es válida';
$_MODULE['<{paypal}prestashop>paypal_19ea461c401bd941bf47a8bc01eecd6c'] = 'La URL del banner debe utilizar el protocolo HTTPS';
$_MODULE['<{paypal}prestashop>paypal_b8822117a8cc930315a50bab7f6a4c80'] = 'la plantilla de PayPal no es válida';
$_MODULE['<{paypal}prestashop>paypal_b02186eee414487a068584dc0d177ad2'] = 'no puede utilizar autorización y captura si no tiene credenciales de API';
$_MODULE['<{paypal}prestashop>paypal_17fcef6818690d11d7caaab023ecdcff'] = 'no puede utilizar esta solución si no tiene credenciales de API';
$_MODULE['<{paypal}prestashop>paypal_30e4e115bfc5e140782fd9cb01be6898'] = 'no puede utilizar Pago exprés si no tiene credenciales de API';
$_MODULE['<{paypal}prestashop>paypal_c888438d14855d7d96a2724ee9c306bd'] = 'Se actualiza la configuración';
$_MODULE['<{paypal}prestashop>paypal_67c0e5ec07dd31dc74aaf55d6a72da31'] = 'Error al obtener estado de pago';
$_MODULE['<{paypal}prestashop>paypal_ec53a8c4f07baed5d8825072c89799be'] = 'Estado';
$_MODULE['<{paypal}prestashop>paypal_ccb168b5a6a86eb100dc2dee754a316b'] = 'Razón:';
$_MODULE['<{paypal}prestashop>paypal_4f3acf5bcd7152fd301550bec6d0ffac'] = 'Error de PayPal:';
$_MODULE['<{paypal}prestashop>paypal_a0d09826326fd385f6ceb17442f290de'] = 'Error al solicitar captura';
$_MODULE['<{paypal}prestashop>paypal_e03187f3f9d6eda06a2a7c201f58cdca'] = 'Error al solicitar reintegro';
$_MODULE['<{paypal}prestashop>paypal_e5d5d9f40763cfe6549bef705e3529a7'] = 'El mensaje de pago no es válido, compruebe su módulo.';
$_MODULE['<{paypal}prestashop>paypal_eec39bf42bd135971fb2d838c67d1449'] = 'Resultado de la operación de reintegro:';
$_MODULE['<{paypal}prestashop>paypal_2ab62d1a578713d0862b56819295630e'] = 'Reintegro completado con PayPal.';
$_MODULE['<{paypal}prestashop>paypal_a64db959966ba8d07c8b5d9493fcc21f'] = 'Error de transacción.';
$_MODULE['<{paypal}prestashop>paypal_67962779da962e3d4225055afc05e7bd'] = 'Resultado de la operación de captura:';
$_MODULE['<{paypal}prestashop>paypal_5a05744b8ccb5909bc83355092e0f3fa'] = 'Estado de verificación:';
$_MODULE['<{paypal}prestashop>paypalconnect_d1f14cc4a2dade80c92421d26422fea0'] = 'Abrir una nueva conexión con';
$_MODULE['<{paypal}prestashop>paypalconnect_94a27811a721ef512ad7bfa06cab34e0'] = 'Error de la conexión con el método cURL';
$_MODULE['<{paypal}prestashop>paypalconnect_70215486455daee13382c68b1a230b82'] = 'La conexión con el método cURL se ha desarrollado con éxito';
$_MODULE['<{paypal}prestashop>paypalconnect_e4c4ad49bced42265b5facc2175cdafd'] = 'Envío de parámetros:';
$_MODULE['<{paypal}prestashop>paypalconnect_445583f6641da98fc7ac8fd9d13a564b'] = 'Error de envío con el método cURL. Error:';
$_MODULE['<{paypal}prestashop>paypalconnect_ef4fbf36eaa2083442d386990ba063c2'] = 'Envío con éxito con el método cURL';
$_MODULE['<{paypal}prestashop>paypalconnect_bf059c9751bb1a20b449b7917b1df374'] = 'Error de la conexión con el método fsockopen';
$_MODULE['<{paypal}prestashop>paypalconnect_ea800e3536f81238a4cbc32eb6db4eaf'] = 'La conexión con el método fsockopen se ha desarrollado con éxito';
$_MODULE['<{paypal}prestashop>paypalconnect_6e9aa4cb541e09b07602d4ea96080811'] = 'Error de envío con el método fsockopen. Error:';
$_MODULE['<{paypal}prestashop>paypalconnect_842a183be225d415b2b4375ba1dd1c94'] = 'Envío con éxito con el método fsockopen';
$_MODULE['<{paypal}prestashop>paypallib_7c2d00d8c94d1ce0f515db8b0481db40'] = ' Respuesta de PayPal : ';
$_MODULE['<{paypal}prestashop>authentication_cd42c6dd6cc4cd65cb5e13b729050469'] = 'Compruebe sus datos';
$_MODULE['<{paypal}prestashop>authentication_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Datos personales';
$_MODULE['<{paypal}prestashop>authentication_b78a3223503896721cca1303f776159b'] = 'Tratamiento';
$_MODULE['<{paypal}prestashop>authentication_127469a6b4253ebb77adccc0dd48461e'] = 'Sr.';
$_MODULE['<{paypal}prestashop>authentication_29e32764941c30d1bb41c601014fbdbd'] = 'Sra.';
$_MODULE['<{paypal}prestashop>authentication_20db0bfeecd8fe60533206a2b5e9891a'] = 'Nombre';
$_MODULE['<{paypal}prestashop>authentication_8d3f5eff9c40ee315d452392bed5309b'] = 'Apellidos';
$_MODULE['<{paypal}prestashop>authentication_1e884e3078d9978e216a027ecd57fb34'] = 'Correo electrónico';
$_MODULE['<{paypal}prestashop>authentication_dc647eb65e6711e155375218212b3964'] = 'Contraseña';
$_MODULE['<{paypal}prestashop>authentication_bf2957630c4209f61a388a08c2154915'] = '( 5 caracteres mín.)';
$_MODULE['<{paypal}prestashop>authentication_aac772216aecbeca0e86d06671fe985a'] = 'Fecha de nacimiento';
$_MODULE['<{paypal}prestashop>authentication_86f5978d9b80124f509bdb71786e929e'] = 'Enero';
$_MODULE['<{paypal}prestashop>authentication_659e59f062c75f81259d22786d6c44aa'] = 'Febrero';
$_MODULE['<{paypal}prestashop>authentication_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Marzo';
$_MODULE['<{paypal}prestashop>authentication_3fcf026bbfffb63fb24b8de9d0446949'] = 'Abril';
$_MODULE['<{paypal}prestashop>authentication_195fbb57ffe7449796d23466085ce6d8'] = 'Mayo';
$_MODULE['<{paypal}prestashop>authentication_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Junio';
$_MODULE['<{paypal}prestashop>authentication_1b539f6f34e8503c97f6d3421346b63c'] = 'Julio';
$_MODULE['<{paypal}prestashop>authentication_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Agosto';
$_MODULE['<{paypal}prestashop>authentication_cc5d90569e1c8313c2b1c2aab1401174'] = 'Septiembre';
$_MODULE['<{paypal}prestashop>authentication_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Octubre';
$_MODULE['<{paypal}prestashop>authentication_7e823b37564da492ca1629b4732289a8'] = 'Noviembre';
$_MODULE['<{paypal}prestashop>authentication_82331503174acbae012b2004f6431fa5'] = 'Diciembre';
$_MODULE['<{paypal}prestashop>authentication_6f6162d3a052bb330e9c60285c74c6c9'] = 'Suscribirse al boletín';
$_MODULE['<{paypal}prestashop>authentication_ac135c86084a47630c9eadb4edd5ef75'] = 'Recibir las ofertas especiales de nuestros socios';
$_MODULE['<{paypal}prestashop>authentication_455175f3f5be6306247babb349c0515a'] = 'Su dirección';
$_MODULE['<{paypal}prestashop>authentication_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Empresa';
$_MODULE['<{paypal}prestashop>authentication_dd7bf230fde8d4836917806aff6a6b27'] = 'Dirección';
$_MODULE['<{paypal}prestashop>authentication_783cb853aae6984e51583b3bb80c09d2'] = 'Dirección (línea 2)';
$_MODULE['<{paypal}prestashop>authentication_9b514b51d03075005814a33edc74c958'] = 'Código postal';
$_MODULE['<{paypal}prestashop>authentication_57d056ed0984166336b7879c2af3657f'] = 'Ciudad';
$_MODULE['<{paypal}prestashop>authentication_59716c97497eb9694541f7c3d37b1a4d'] = 'Provincia';
$_MODULE['<{paypal}prestashop>authentication_46a2a41cc6e552044816a2d04634545d'] = 'Estado';
$_MODULE['<{paypal}prestashop>authentication_0f68b904e33d9ac04605aecc958bcf52'] = 'Información adicional';
$_MODULE['<{paypal}prestashop>authentication_fe66abce284ec8589e7d791185b5c442'] = 'Teléfono personal';
$_MODULE['<{paypal}prestashop>authentication_41c2fff4867cc204120f001e7af20f7a'] = 'Teléfono móvil';
$_MODULE['<{paypal}prestashop>authentication_6c1c4d5a22e3d6ed8385e7287233396f'] = 'Dé un nombre a esta dirección para encontrarla fácilmente';
$_MODULE['<{paypal}prestashop>authentication_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Mi dirección';
$_MODULE['<{paypal}prestashop>authentication_a0bfb8e59e6c13fc8d990781f77694fe'] = 'Continuar';
$_MODULE['<{paypal}prestashop>authentication_19f823c6453c2b1ffd09cb715214813d'] = 'Campo obligatorio';
$_MODULE['<{paypal}prestashop>login_b40ad46c25c153a3d2fde078c0e1b0f8'] = 'Identifíquese';
$_MODULE['<{paypal}prestashop>login_abc57016a138dea055e0d8be6358f84e'] = 'Dirección ya registrada. Identifíquese.';
$_MODULE['<{paypal}prestashop>login_8b5dd64ab8d0b8158906796b53a200e2'] = 'Dirección de correo electrónico';
$_MODULE['<{paypal}prestashop>login_dc647eb65e6711e155375218212b3964'] = 'Contraseña';
$_MODULE['<{paypal}prestashop>login_bffe9a3c9a7e00ba00a11749e022d911'] = 'Identificarse';
$_MODULE['<{paypal}prestashop>login_01a569ddc6cf67ddec2a683f0a5f5956'] = '¿Ha olvidado su contraseña?';
$_MODULE['<{paypal}prestashop>paypalexpress_b601224a2a6c61f38738ca903fb019a2'] = 'Carrito de compra incorrecto';
$_MODULE['<{paypal}prestashop>paypalexpress_ee9dc1e678d54c517f481583c3fb2db8'] = 'Divisa incorrecta';
$_MODULE['<{paypal}prestashop>shopping_cart_aa91004934e1abdb620b5d0f0c18681c'] = 'Pagar con Pago exprés';
$_MODULE['<{paypal}prestashop>submit_528d1f824243db48e40cb6223d32fa06'] = 'PayPal no ha dado ningún código';
$_MODULE['<{paypal}prestashop>submit_795277047da13b4fc74e02e050b1a675'] = 'PayPal ha devuelto un error';
$_MODULE['<{paypal}prestashop>submit_b4133f1ba03a914134a5281a08231078'] = 'Error de autorización de PayPal';
$_MODULE['<{paypal}prestashop>submit_4935b58d37fda5bd60acc510cb324342'] = 'No se han encontrado los datos de la cuenta PayPal';
$_MODULE['<{paypal}prestashop>submit_90aa7ebf75251f535a9bdd6ba671ae7a'] = 'El código proporcionado por PayPal no es el mismo que el de la cookie';
$_MODULE['<{paypal}prestashop>paypal_dac2693baa5c5c9a5318609ed81c4f2a'] = 'Pagar con PayPal';
$_MODULE['<{paypal}prestashop>payment_dac2693baa5c5c9a5318609ed81c4f2a'] = 'Pagar con PayPal';
$_MODULE['<{paypal}prestashop>payment_a3f2caee6ef8e68fbd26e42d83f2bf65'] = 'Pague con su cuenta PayPal, tarjeta de crédito (CB, Visa, Mastercard ...), o tarjeta de crédito privado';
$_MODULE['<{paypal}prestashop>payment_b08008a2de4331ba13f006c9bcf37b62'] = 'Pague con su cuenta PayPal';
$_MODULE['<{paypal}prestashop>paypalpayment_ee9dc1e678d54c517f481583c3fb2db8'] = 'Divisa incorrecta';
-200
View File
@@ -1,200 +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">
// <![CDATA[
idSelectedCountry = {if isset($smarty.post.id_state)}{$smarty.post.id_state|intval}{else}false{/if};
countries = new Array();
{foreach from=$countries item='country'}
{if isset($country.states)}
countries[{$country.id_country|intval}] = new Array();
{foreach from=$country.states item='state' name='states'}
countries[{$country.id_country|intval}]['{$state.id_state|intval}'] = '{$state.name|escape:'htmlall':'UTF-8'}';
{/foreach}
{/if}
{/foreach}
//]]>
</script>
<h2>{l s='Check your information' mod='paypal'}</h2>
{assign var='current_step' value='login'}
{include file="$tpl_dir./order-steps.tpl"}
{include file="$tpl_dir./errors.tpl"}
<form action="{$base_dir_ssl}modules/paypal/express/submit.php" method="post" id="account-creation_form" class="std">
<fieldset class="account_creation">
<h3>{l s='Your personal information' mod='paypal'}</h3>
<p class="radio required">
<span>{l s='Title'}</span>
<input type="radio" name="id_gender" id="id_gender1" value="1" {if isset($smarty.post.id_gender) && $smarty.post.id_gender == 1}checked="checked"{/if} />
<label for="id_gender1" class="top">{l s='Mr.' mod='paypal'}</label>
<input type="radio" name="id_gender" id="id_gender2" value="2" {if isset($smarty.post.id_gender) && $smarty.post.id_gender == 2}checked="checked"{/if} />
<label for="id_gender2" class="top">{l s='Ms.' mod='paypal'}</label>
</p>
<p class="required text">
<label for="customer_firstname">{l s='First name' mod='paypal'}</label>
<input onkeyup="$('#firstname').val(this.value);" type="text" class="text" id="customer_firstname" name="customer_firstname" value="{$firstname}" />
<sup>*</sup>
</p>
<p class="required text">
<label for="customer_lastname">{l s='Last name' mod='paypal'}</label>
<input onkeyup="$('#lastname').val(this.value);" type="text" class="text" id="customer_lastname" name="customer_lastname" value="{$lastname}" />
<sup>*</sup>
</p>
<p class="required text">
<label for="email">{l s='E-mail' mod='paypal'}</label>
<input type="text" class="text" id="email" name="email" value="{$email}" />
<sup>*</sup>
</p>
<p class="required password">
<label for="password">{l s='Password' mod='paypal'}</label>
<input type="password" class="text" name="passwd" id="passwd" />
<sup>*</sup>
<span class="form_info">{l s='(5 characters min.)' mod='paypal'}</span>
</p>
<p class="select">
<span>{l s='Birthday' mod='paypal'}</span>
<select id="days" name="days">
<option value="">-</option>
{foreach from=$days item=day}
<option value="{$day|escape:'htmlall':'UTF-8'}" {if ($sl_day == $day)} selected="selected"{/if}>{$day|escape:'htmlall':'UTF-8'}&nbsp;&nbsp;</option>
{/foreach}
</select>
{*
{l s='January' mod='paypal'}
{l s='February' mod='paypal'}
{l s='March' mod='paypal'}
{l s='April' mod='paypal'}
{l s='May' mod='paypal'}
{l s='June' mod='paypal'}
{l s='July' mod='paypal'}
{l s='August' mod='paypal'}
{l s='September' mod='paypal'}
{l s='October' mod='paypal'}
{l s='November' mod='paypal'}
{l s='December' mod='paypal'}
*}
<select id="months" name="months">
<option value="">-</option>
{foreach from=$months key=k item=month}
<option value="{$k|escape:'htmlall':'UTF-8'}" {if ($sl_month == $k)} selected="selected"{/if}>{$month}&nbsp;</option>
{/foreach}
</select>
<select id="years" name="years">
<option value="">-</option>
{foreach from=$years item=year}
<option value="{$year|escape:'htmlall':'UTF-8'}" {if ($sl_year == $year)} selected="selected"{/if}>{$year|escape:'htmlall':'UTF-8'}&nbsp;&nbsp;</option>
{/foreach}
</select>
</p>
<p class="checkbox" >
<input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) AND $smarty.post.newsletter == 1} checked="checked"{/if} />
<label for="newsletter">{l s='Sign up for our newsletter' mod='paypal'}</label>
</p>
<p class="checkbox" >
<input type="checkbox"name="optin" id="optin" value="1" {if isset($smarty.post.optin) AND $smarty.post.optin == 1} checked="checked"{/if} />
<label for="optin">{l s='Receive special offers from our partners' mod='paypal'}</label>
</p>
</fieldset>
<fieldset class="account_creation">
<h3>{l s='Your address' mod='paypal'}</h3>
<p class="text">
<label for="company">{l s='Company' mod='paypal'}</label>
<input type="text" class="text" id="company" name="company" value="{if isset($smarty.post.company)}{$smarty.post.company}{/if}" />
</p>
<p class="required text">
<label for="firstname">{l s='First name' mod='paypal'}</label>
<input type="text" class="text" id="firstname" name="firstname" value="{$firstname}" />
<sup>*</sup>
</p>
<p class="required text">
<label for="lastname">{l s='Last name' mod='paypal'}</label>
<input type="text" class="text" id="lastname" name="lastname" value="{$lastname}" />
<sup>*</sup>
</p>
<p class="required text">
<label for="address1">{l s='Address' mod='paypal'}</label>
<input type="text" class="text" name="address1" id="address1" value="{$street}" />
<sup>*</sup>
</p>
<p class="text">
<label for="address2">{l s='Address (2)' mod='paypal'}</label>
<input type="text" class="text" name="address2" id="address2" value="{if isset($smarty.post.address2)}{$smarty.post.address2}{/if}" />
</p>
<p class="required text">
<label for="postcode">{l s='Postal code / Zip code' mod='paypal'}</label>
<input type="text" class="text" name="postcode" id="postcode" value="{$zip}" />
<sup>*</sup>
</p>
<p class="required text">
<label for="city">{l s='City' mod='paypal'}</label>
<input type="text" class="text" name="city" id="city" value="{$city}" />
<sup>*</sup>
</p>
<p class="required select">
<label for="id_country">{l s='Country' mod='paypal'}</label>
<select name="id_country" id="id_country">
<option value="">-</option>
{foreach from=$countries item=v}
<option value="{$v.id_country}" {if ($sl_country == $v.id_country)} selected="selected"{/if}>{$v.name|escape:'htmlall':'UTF-8'}</option>
{/foreach}
</select>
<sup>*</sup>
</p>
<p class="required id_state select">
<label for="id_state">{l s='State' mod='paypal'}</label>
<select name="id_state" id="id_state">
<option value="">-</option>
</select>
<sup>*</sup>
</p>
<p class="textarea">
<label for="other">{l s='Additional information' mod='paypal'}</label>
<textarea name="other" id="other" cols="26" rows="3">{if isset($smarty.post.other)}{$smarty.post.other}{/if}</textarea>
</p>
<p class="text">
<label for="phone">{l s='Home phone' mod='paypal'}</label>
<input type="text" class="text" name="phone" id="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone}{/if}" />
</p>
<p class="text">
<label for="phone_mobile">{l s='Mobile phone' mod='paypal'}</label>
<input type="text" class="text" name="phone_mobile" id="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile}{/if}" />
</p>
<p class="required text" id="address_alias">
<label for="alias">{l s='Assign an address title for future reference' mod='paypal'} !</label>
<input type="text" class="text" name="alias" id="alias" value="{if isset($smarty.post.alias)}{$smarty.post.alias}{else}{l s='My address' mod='paypal'}{/if}" />
<sup>*</sup>
</p>
</fieldset>
<p class="cart_navigation required submit">
<input type="hidden" name="token" value="{$ppToken|escape:'htmlall'|stripslashes}" />
<input type="hidden" name="payerID" value="{$payerID|escape:'htmlall'|stripslashes}" />
<input type="submit" name="submitAccount" id="submitAccount" value="{l s='Continue' mod='paypal'}" class="exclusive" />
<span><sup>*</sup>{l s='Required field' mod='paypal'}</span>
</p>
</form>
-52
View File
@@ -1,52 +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
*}
<h2>{l s='Please log in' mod='paypal'}</h2>
{assign var='current_step' value='login'}
{include file="$tpl_dir./order-steps.tpl"}
{include file="$tpl_dir./errors.tpl"}
<form action="{$base_dir_ssl}modules/paypal/express/submit.php" method="post" id="login_form" class="std">
<fieldset>
<h3>{l s='This email has already been registered, please log in !' mod='paypal'}</h3>
<p class="text">
<label for="email" style="text-align:left; margin-left:10px;">{l s='E-mail address' mod='paypal'}</label>
<span><input type="text" id="email" name="email" value="{$email|escape:'htmlall'|stripslashes}" class="account_input" /></span>
</p>
<p class="text">
<label for="passwd" style="text-align:left; margin-left:10px;">{l s='Password' mod='paypal'}</label>
<span><input type="password" id="passwd" name="passwd" value="{$passwd|escape:'htmlall'|stripslashes}" class="account_input" /></span>
</p>
<p class="submit" style="padding-top:15px;">
<input type="hidden" name="token" value="{$ppToken|escape:'htmlall'|stripslashes}" />
<input type="hidden" name="payerID" value="{$payerID|escape:'htmlall'|stripslashes}" />
<input type="submit" id="submitLogin" name="submitLogin" class="button" value="{l s='Log in' mod='paypal'}" />
</p>
<p class="lost_password center"><a href="{$link->getPageLink('password')}">{l s='Forgot your password?' mod='paypal'}</a></p>
</fieldset>
</form>
-104
View File
@@ -1,104 +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 PaypalExpress extends Paypal
{
protected $_logs = array();
public function getAuthorisation()
{
global $cookie;
// Getting cart informations
$cart = new Cart((int)($cookie->id_cart));
if (!Validate::isLoadedObject($cart))
$this->_logs[] = $this->l('Not a valid cart');
$currency = new Currency((int)($cart->id_currency));
if (!Validate::isLoadedObject($currency))
$this->_logs[] = $this->l('Not a valid currency');
if (sizeof($this->_logs))
return false;
// Making request
$returnURL = Tools::getShopDomainSsl(true, true).__PS_BASE_URI__.'modules/paypal/express/submit.php';
$cancelURL = Tools::getShopDomainSsl(true, true).__PS_BASE_URI__.'order.php';
$paymentAmount = (float)($cart->getOrderTotal());
$currencyCodeType = strval($currency->iso_code);
$paymentType = Configuration::get('PAYPAL_CAPTURE') == 1 ? 'Authorization' : 'Sale';
$request = '&Amt='.urlencode($paymentAmount).'&PAYMENTACTION='.urlencode($paymentType).'&ReturnUrl='.urlencode($returnURL).'&CANCELURL='.urlencode($cancelURL).'&CURRENCYCODE='.urlencode($currencyCodeType);
if ($this->_pp_integral)
$request .= '&SOLUTIONTYPE=Sole&LANDINGPAGE=Billing';
else
$request .= '&SOLUTIONTYPE=Mark&LANDINGPAGE=Login';
$request .= '&LOCALECODE='.strtoupper($this->getCountryCode());
if ($this->_header) $request .= '&HDRIMG='.urlencode($this->_header);
// Customer informations
$customer = new Customer((int)$cart->id_customer);
$request .= '&EMAIL='.urlencode($customer->email);//customer
// address of delivery
$address = new Address((int)$cart->id_address_delivery);
$country = new Country((int)$address->id_country);
if ($address->id_state)
$state = new State((int)$address->id_state);
$request .= '&SHIPTONAME='.urlencode($address->firstname.' '.$address->lastname);
$request .= '&SHIPTOSTREET='.urlencode($address->address1);
$request .= '&SHIPTOSTREET2='.urlencode($address->address2);
$request .= '&SHIPTOCITY='.urlencode($address->city);
$request .= '&SHIPTOSTATE='.($address->id_state ? $state->iso_code : $country->iso_code);
$request .= '&SHIPTOZIP='.urlencode($address->postcode);
$request .= '&SHIPTOCOUNTRY='.urlencode($country->iso_code);
$request .= '&SHIPTOPHONENUM='.urlencode($address->phone);
// Calling PayPal API
include(_PS_MODULE_DIR_.'paypal/api/paypallib.php');
$ppAPI = new PaypalLib();
$result = $ppAPI->makeCall($this->getAPIURL(), $this->getAPIScript(), 'SetExpressCheckout', $request);
$this->_logs = array_merge($this->_logs, $ppAPI->getLogs());
return $result;
}
public function getCustomerInfos()
{
global $cookie;
// Making request
$request = '&TOKEN='.urlencode(strval($cookie->paypal_token));
// Calling PayPal API
include(_PS_MODULE_DIR_.'paypal/api/paypallib.php');
$ppAPI = new PaypalLib();
$result = $ppAPI->makeCall($this->getAPIURL(), $this->getAPIScript(), 'GetExpressCheckoutDetails', $request);
$this->_logs = array_merge($this->_logs, $ppAPI->getLogs());
return $result;
}
public function getLogs()
{
return $this->_logs;
}
}
-27
View File
@@ -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 href="{$base_dir_ssl}modules/paypal/express/submit.php"><img src="{$logo}" alt="paypal" title="{l s='Pay with PayPal Express Checkout' mod='paypal'}" /></a>
-379
View File
@@ -1,379 +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_once(dirname(__FILE__).'/../../../config/config.inc.php');
include_once(dirname(__FILE__).'/../../../init.php');
include_once(_PS_MODULE_DIR_.'paypal/paypal.php');
include_once(_PS_MODULE_DIR_.'paypal/express/paypalexpress.php');
$ppExpress = new PaypalExpress();
$errors = array();
// #####
// Functions
function getAuthorization()
{
global $ppExpress, $cookie;
$result = $ppExpress->getAuthorisation();
$logs = $ppExpress->getLogs();
if (is_array($result) AND sizeof($result))
{
if (strtoupper($result['ACK']) == 'SUCCESS')
{
if (isset($result['TOKEN']))
{
$cookie->paypal_token = strval($result['TOKEN']);
$cookie->paypal_token_date = time();
header('Location: https://'.$ppExpress->getPayPalURL().'/webscr&cmd=_express-checkout&token='.urldecode(strval($cookie->paypal_token)));
exit;
}
else
$logs[] = '<b>'.$ppExpress->l('No token given by PayPal', 'submit').'</b>';
} else
$logs[] = '<b>'.$ppExpress->l('PayPal returned error', 'submit').'</b>';
}
$ppExpress->displayPayPalAPIError($ppExpress->l('Authorisation to PayPal failed', 'submit'), $logs);
}
function getInfos()
{
global $ppExpress, $cookie;
$result = $ppExpress->getCustomerInfos();
$logs = $ppExpress->getLogs();
if (!is_array($result) OR !isset($result['ACK']) OR strtoupper($result['ACK']) != 'SUCCESS')
{
$logs[] = '<b>'.$ppExpress->l('Cannot retrieve PayPal account information', 'submit').'</b>';
$ppExpress->displayPayPalAPIError($ppExpress->l('PayPal returned error', 'submit'), $logs);
}
elseif (!isset($result['TOKEN']) OR $result['TOKEN'] != $cookie->paypal_token)
{
$logs[] = '<b>'.$ppExpress->l('Token given by PayPal is not the same as the cookie token', 'submit').'</b>';
$ppExpress->displayPayPalAPIError($ppExpress->l('PayPal returned error', 'submit'), $logs);
}
return $result;
}
function displayProcess($payerID)
{
global $cookie;
$cookie->paypal_token = strval($cookie->paypal_token);
$cookie->paypal_payer_id = $payerID;
Tools::redirect('index.php/order?step=1&back=paypal');
}
function displayConfirm()
{
global $cookie, $smarty, $ppExpress, $cart, $payerID;
if (!$cookie->isLogged(true))
die('Not logged');
if (!$payerID AND !$payerID = Tools::htmlentitiesUTF8(strval(Tools::getValue('payerID'))))
die('No payer ID');
// Display all and exit
include(_PS_ROOT_DIR_.'/header.php');
$smarty->assign(array(
'back' => 'paypal',
'logo' => $ppExpress->getLogo(),
'ppToken' => strval($cookie->paypal_token),
'cust_currency' => $cart->id_currency,
'currencies' => $ppExpress->getCurrency((int)$cart->id_currency),
'total' => $cart->getOrderTotal(true, Cart::BOTH),
'this_path_ssl' => Tools::getShopDomainSsl(true, true).__PS_BASE_URI__.'modules/'. $ppExpress->name.'/',
'payerID' => $payerID,
'mode' => 'express/'
));
echo $ppExpress->display('paypal.php', 'confirm.tpl');
include(_PS_ROOT_DIR_.'/footer.php');
die ;
}
function submitConfirm()
{
global $cookie, $smarty, $ppExpress, $cart;
if (!$cookie->isLogged(true))
die('Not logged');
elseif (!$currency = (int)(Tools::getValue('currency_payement')))
die('No currency');
elseif (!$payerID = Tools::htmlentitiesUTF8(strval(Tools::getValue('payerID'))))
die('No payer ID');
elseif (!$cart->getOrderTotal(true, Cart::BOTH))
die('Empty cart');
$ppExpress->makePayPalAPIValidation($cookie, $cart, $currency, $payerID, 'express');
}
function submitAccount()
{
global $cookie, $errors, $smarty;
$email = Tools::getValue('email');
if (empty($email) OR !Validate::isEmail($email))
$errors[] = Tools::displayError('e-mail not valid');
elseif (!Validate::isPasswd(Tools::getValue('passwd')))
$errors[] = Tools::displayError('invalid password');
elseif (Customer::customerExists($email))
$errors[] = Tools::displayError('someone has already registered with this e-mail address');
elseif (!@checkdate(Tools::getValue('months'), Tools::getValue('days'), Tools::getValue('years')) AND !(Tools::getValue('months') == '' AND Tools::getValue('days') == '' AND Tools::getValue('years') == ''))
$errors[] = Tools::displayError('invalid birthday');
else
{
$customer = new Customer();
if (Tools::isSubmit('newsletter'))
{
$customer->ip_registration_newsletter = pSQL(Tools::getRemoteAddr());
$customer->newsletter_date_add = pSQL(date('Y-m-d h:i:s'));
}
$customer->birthday = (empty($_POST['years']) ? '' : (int)($_POST['years']).'-'.(int)($_POST['months']).'-'.(int)($_POST['days']));
/* Customer and address, same fields, caching data */
$errors = $customer->validateControler();
$address = new Address();
$address->id_customer = 1;
$errors = array_unique(array_merge($errors, $address->validateControler()));
if (!sizeof($errors))
{
$customer->active = 1;
if (!$customer->add())
$errors[] = Tools::displayError('an error occurred while creating your account');
else
{
$address->id_customer = (int)($customer->id);
if (!$address->add())
$errors[] = Tools::displayError('an error occurred while creating your address');
else
{
if (Mail::Send((int)($cookie->id_lang), 'account', Mail::l('Welcome!'),
array('{firstname}' => $customer->firstname, '{lastname}' => $customer->lastname, '{email}' => $customer->email, '{passwd}' => Tools::getValue('passwd')), $customer->email, $customer->firstname.' '.$customer->lastname))
$smarty->assign('confirmation', 1);
$cookie->id_customer = (int)($customer->id);
$cookie->customer_lastname = $customer->lastname;
$cookie->customer_firstname = $customer->firstname;
$cookie->passwd = $customer->passwd;
$cookie->logged = 1;
$cookie->email = $customer->email;
Module::hookExec('createAccount', array(
'_POST' => $_POST,
'newCustomer' => $customer
));
// Next !
$payerID = strval(Tools::getValue('payerID'));
displayProcess($payerID);
}
}
}
}
}
function submitLogin()
{
global $cookie, $errors;
$passwd = trim(Tools::getValue('passwd'));
$email = trim(Tools::getValue('email'));
if (empty($email))
$errors[] = Tools::displayError('e-mail address is required');
elseif (empty($email) OR !Validate::isEmail($email))
$errors[] = Tools::displayError('invalid e-mail address');
elseif (empty($passwd))
$errors[] = Tools::displayError('password is required');
elseif (Tools::strlen($passwd) > 32)
$errors[] = Tools::displayError('password is too long');
elseif (!Validate::isPasswd($passwd))
$errors[] = Tools::displayError('invalid password');
else
{
$customer = new Customer();
$authentication = $customer->getByemail(trim($email), trim($passwd));
/* Handle brute force attacks */
sleep(1);
if (!$authentication OR !$customer->id)
$errors[] = Tools::displayError('authentication failed');
else
{
$cookie->id_customer = (int)($customer->id);
$cookie->customer_lastname = $customer->lastname;
$cookie->customer_firstname = $customer->firstname;
$cookie->logged = 1;
$cookie->passwd = $customer->passwd;
$cookie->email = $customer->email;
if (Configuration::get('PS_CART_FOLLOWING') AND (empty($cookie->id_cart) OR Cart::getNbProducts($cookie->id_cart) == 0))
$cookie->id_cart = Cart::lastNoneOrderedCart($customer->id);
Module::hookExec('authentication');
// Next !
$payerID = strval(Tools::getValue('payerID'));
displayProcess($payerID);
}
}
}
function displayLogin()
{
global $cookie, $result, $email, $payerID, $errors, $ppExpress, $smarty;
// Customer exists, login form
// If customer already logged, check if same mail than PayPal, and go through, or unlog
if ($cookie->isLogged(true) AND isset($result['EMAIL']) AND $cookie->email == $result['EMAIL'])
displayProcess($payerID);
elseif ($cookie->isLogged(true))
$cookie->makeNewLog();
// Smarty assigns
$smarty->assign(array(
'email' => $email,
'ppToken' => strval($cookie->paypal_token),
'errors'=> $errors,
'payerID' => $payerID
));
// Display all and exit
include(_PS_ROOT_DIR_.'/header.php');
echo $ppExpress->display('paypal.php', 'express/login.tpl');
include(_PS_ROOT_DIR_.'/footer.php');
die ;
}
function displayAccount()
{
global $cookie, $result, $email, $payerID, $errors, $ppExpress, $smarty;
// Customer does not exists, signup form
// If customer already logged, unlog him
if ($cookie->isLogged(true))
$cookie->makeNewLog();
// Generate years, months and days
if (isset($_POST['years']) AND is_numeric($_POST['years']))
$selectedYears = (int)($_POST['years']);
$years = Tools::dateYears();
if (isset($_POST['months']) AND is_numeric($_POST['months']))
$selectedMonths = (int)($_POST['months']);
$months = Tools::dateMonths();
if (isset($_POST['days']) AND is_numeric($_POST['days']))
$selectedDays = (int)($_POST['days']);
$days = Tools::dateDays();
// Select the most appropriate country
if (Tools::getValue('id_country'))
$selectedCountry = (int)(Tools::getValue('id_country'));
else
$selectedCountry = Country::getByIso(strval($result['COUNTRYCODE']));
$countries = Country::getCountries((int)($cookie->id_lang), true);
// Smarty assigns
$smarty->assign(array(
'years' => $years,
'sl_year' => (isset($selectedYears) ? $selectedYears : 0),
'months' => $months,
'sl_month' => (isset($selectedMonths) ? $selectedMonths : 0),
'days' => $days,
'sl_day' => (isset($selectedDays) ? $selectedDays : 0),
'countries' => $countries,
'sl_country' => (isset($selectedCountry) ? $selectedCountry : 0),
'email' => $email,
'firstname' => (Tools::getValue('customer_firstname') ? Tools::htmlentitiesUTF8(strval(Tools::getValue('customer_firstname'))) : $result['FIRSTNAME']),
'lastname' => (Tools::getValue('customer_lastname') ? Tools::htmlentitiesUTF8(strval(Tools::getValue('customer_lastname'))) : $result['LASTNAME']),
'street' => (Tools::getValue('address1') ? Tools::htmlentitiesUTF8(strval(Tools::getValue('address1'))) : (isset($result['SHIPTOSTREET']) ? $result['SHIPTOSTREET'] : '')),
'city' => (Tools::getValue('city') ? Tools::htmlentitiesUTF8(strval(Tools::getValue('city'))) : (isset($result['SHIPTOCITY']) ? $result['SHIPTOCITY'] : '')),
'zip' => (Tools::getValue('postcode') ? Tools::htmlentitiesUTF8(strval(Tools::getValue('postcode'))) : (isset($result['SHIPTOZIP']) ? $result['SHIPTOZIP'] : '')),
'payerID' => $payerID,
'ppToken' => strval($cookie->paypal_token),
'errors'=> $errors
));
// Display all and exit
include(_PS_ROOT_DIR_.'/header.php');
echo $ppExpress->display('paypal.php', 'express/authentication.tpl');
include(_PS_ROOT_DIR_.'/footer.php');
die ;
}
// #####
// Process !!
// No token, we need to get one by making PayPal Authorisation
if (!isset($cookie->paypal_token) OR !$cookie->paypal_token)
getAuthorization();
else
{
// We have token, we need to confirm user informations (login or signup)
if ((int)(Tools::getValue('confirm')))
displayConfirm();
elseif (Tools::isSubmit('submitAccount'))
submitAccount();
elseif (Tools::isSubmit('submitLogin'))
submitLogin();
elseif (Tools::isSubmit('submitPayment'))
submitConfirm();
// We got an error or we still not submit form
if ((!Tools::isSubmit('submitAccount') AND !Tools::isSubmit('submitLogin')) OR sizeof($errors))
{
if (isset($cookie->paypal_token) AND isset($cookie->paypal_token_date) AND (time() - 10800 > $cookie->paypal_token_date))
{
// Token expired, unset it
unset($cookie->paypal_token);
Tools::redirect('modules/paypal/express/submit.php');
}
// We didn't submit form, getting PayPal informations
if (!Tools::isSubmit('submitAccount') AND !Tools::isSubmit('submitLogin'))
$result = getInfos();
if (Tools::getValue('email') AND Tools::getValue('payerID'))
{
// Form was submitted (errors)
$email = Tools::htmlentitiesUTF8(strval(Tools::getValue('email')));
$payerID = Tools::htmlentitiesUTF8(strval(Tools::getValue('payerID')));
}
elseif (isset($result['EMAIL']) AND isset($result['PAYERID']))
{
// Displaying form for the first time
$email = $result['EMAIL'];
$payerID = $result['PAYERID'];
}
else
{
// Error in token, we need to make authorization again
unset($cookie->paypal_token);
Tools::redirect('modules/paypal/express/submit.php');
}
if (Customer::customerExists($email) OR Tools::isSubmit('submitLogin'))
displayLogin();
displayAccount();
}
}
-225
View File
@@ -1,225 +0,0 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{paypal}prestashop>about_e816e21c1c8e0eba0620fa3df6bd6795'] = 'Qu\'est-ce que PayPal ?';
$_MODULE['<{paypal}prestashop>about_16ea57badae98f402bb8f2b2f49d4e77'] = 'PayPal, leader incontesté en matière de paiement en ligne, permet aux acheteurs et aux vendeurs d\'envoyer et de recevoir des paiements en ligne. PayPal compte plus de 100 millions de comptes dans 190 pays et régions du monde. Il est accepté par les marchands partout, à la fois sur eBay et en dehors d\'eBay.';
$_MODULE['<{paypal}prestashop>about_d20adade7baa1b60b713521031ea676c'] = 'Est-ce un service sécurisé ?';
$_MODULE['<{paypal}prestashop>about_64f7b897c6d56fc62428f692ee5737cd'] = 'PayPal contribue à protéger les informations concernant votre carte bancaire grâce aux meilleurs systèmes présents sur le marché pour la sécurité et la prévention contre la fraude. Lorsque vous utilisez PayPal, vos informations financières ne sont jamais communiquées au marchand.';
$_MODULE['<{paypal}prestashop>about_5ef30813484389e4200640c2f006004d'] = 'Pourquoi utiliser PayPal ?';
$_MODULE['<{paypal}prestashop>about_86550d4ea832930db4366f03b90bdfb8'] = 'Effectuez des achats ou envoyez des paiements avec PayPal : c\'est gratuit.';
$_MODULE['<{paypal}prestashop>about_7dc9e529337e5a55a12bf362b8e68cac'] = 'Achetez et payez en toute tranquillité en enregistrant vos informations auprès de PayPal.';
$_MODULE['<{paypal}prestashop>about_32098ae6a7ecd96805df9e48fb6cc739'] = 'PayPal est accepté par des millions de marchands dans le monde et constitue le mode de paiement le plus utilisé sur eBay.';
$_MODULE['<{paypal}prestashop>about_7934d7d1280bfbb8778743e39292af30'] = 'Utilisez PayPal dès aujourd\'hui !';
$_MODULE['<{paypal}prestashop>column_dac2693baa5c5c9a5318609ed81c4f2a'] = 'Payer par PayPal';
$_MODULE['<{paypal}prestashop>confirm_a40cab5994f36d4c48103a22ca082e8f'] = 'Votre panier';
$_MODULE['<{paypal}prestashop>confirm_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal';
$_MODULE['<{paypal}prestashop>confirm_f1d3b424cd68795ecaa552883759aceb'] = 'Résumé de la commande';
$_MODULE['<{paypal}prestashop>confirm_dd23adc5fb6bda9c384397b31e57fc53'] = 'Paiement PayPal';
$_MODULE['<{paypal}prestashop>confirm_62d74398cb6ebaa69ab7339052ca5c92'] = 'Vous avez choisi de payer avec PayPal.';
$_MODULE['<{paypal}prestashop>confirm_c884ed19483d45970c5bf23a681e2dd2'] = 'Voici un court résumé de votre commande :';
$_MODULE['<{paypal}prestashop>confirm_e2867a925cba382f1436d1834bb52a1c'] = 'Le montant total de votre commande s\'élève à';
$_MODULE['<{paypal}prestashop>confirm_1f87346a16cf80c372065de3c54c86d9'] = '(TTC)';
$_MODULE['<{paypal}prestashop>confirm_8ed356c32b198c9cb2abab7c3d262b93'] = 'Nous acceptons la devise suivante pour votre paiement :';
$_MODULE['<{paypal}prestashop>confirm_0881a11f7af33bc1b43e437391129d66'] = 'Merci de confirmer votre commande en cliquant sur \"Je confirme ma commande\"';
$_MODULE['<{paypal}prestashop>confirm_569fd05bdafa1712c4f6be5b153b8418'] = 'Autres moyens de paiement';
$_MODULE['<{paypal}prestashop>confirm_46b9e3665f187c739c55983f757ccda0'] = 'Je confirme ma commande';
$_MODULE['<{paypal}prestashop>confirmation_2e2117b7c81aa9ea6931641ea2c6499f'] = 'Votre commande sur';
$_MODULE['<{paypal}prestashop>confirmation_75fbf512d744977d62599cc3f0ae2bb4'] = 'est bien enregistrée.';
$_MODULE['<{paypal}prestashop>confirmation_15b0f8e55c6bdfc3d5fd0b6b3b6cb3ee'] = 'Vous avez choisi de payer avec PayPal.';
$_MODULE['<{paypal}prestashop>confirmation_e6dc7945b557a1cd949bea92dd58963e'] = 'Votre commande vous sera envoyée très prochainement.';
$_MODULE['<{paypal}prestashop>confirmation_0db71da7150c27142eef9d22b843b4a9'] = 'Pour toute question ou information complémentaire merci de contacter notre';
$_MODULE['<{paypal}prestashop>confirmation_64430ad2835be8ad60c59e7d44e4b0b1'] = 'support client';
$_MODULE['<{paypal}prestashop>error_a40cab5994f36d4c48103a22ca082e8f'] = 'Votre panier';
$_MODULE['<{paypal}prestashop>error_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal';
$_MODULE['<{paypal}prestashop>error_425551a2289ed60c9260933d1c45ef00'] = 'Merci de vous reférer aux logs :';
$_MODULE['<{paypal}prestashop>error_0557fa923dcee4d0f86b1409f5c2167f'] = 'Précédent';
$_MODULE['<{paypal}prestashop>paypal_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal';
$_MODULE['<{paypal}prestashop>paypal_6e7012516038a096b9f6bb71ba2cc5a3'] = 'Accepter les paiements par cartes de paiement (CB, Visa, MasterCard, American Express, Aurore, Cofinoga, 4 étoiles) avec Paypal';
$_MODULE['<{paypal}prestashop>paypal_69a1a3ad8dd5da6db3c4da838a0cf9c7'] = 'Etes vous sûr de vouloir supprimer vos informations ?';
$_MODULE['<{paypal}prestashop>paypal_1828820cc60e36b6f9fdf60cab103ed7'] = 'Vous utilisez actuellement l\'adresse e-mail PayPal par défaut, vous devez la remplacer par votre propre adresse';
$_MODULE['<{paypal}prestashop>paypal_47b49d72ae0a4b3aa928fc4cc3e7fc53'] = 'Pour SUPPRIMER cette avertissement, merci de désinstaller et supprimer le module PayPalAPI';
$_MODULE['<{paypal}prestashop>paypal_7d0887294ed32e2013b64c4210e26841'] = 'Merci de ne pas utiliser et supprimer le module PayPalAPI.';
$_MODULE['<{paypal}prestashop>paypal_a706f7e37a81dc235d41bbeb6fae92aa'] = 'Aucun moyen de paiement valide';
$_MODULE['<{paypal}prestashop>paypal_32af90c3cfef1bacf43b0c3a8f60a4da'] = 'Les fonds ont été récupérés';
$_MODULE['<{paypal}prestashop>paypal_d238649ac5ec14afc894fad36c0b50fc'] = 'La requête pour la récupération des fonds a été effectuée sans succès, merci de vous referez au message de log !';
$_MODULE['<{paypal}prestashop>paypal_05b998de2c4fb46a7bdd37bd378b81d9'] = 'La validation a été effectuée, merci de regarder le message de log !';
$_MODULE['<{paypal}prestashop>paypal_aeca7e93a1b3d77e38c3cffa131774d5'] = 'Le remboursement a été effectuée';
$_MODULE['<{paypal}prestashop>paypal_cba030a50c8a99c7e224adbe1cf58544'] = 'La requête pour le remboursement a été effectuée sans succès, merci de vous referez au message de log !';
$_MODULE['<{paypal}prestashop>paypal_b630aa9b5e25da971949cae62dd109aa'] = 'Validation PayPal';
$_MODULE['<{paypal}prestashop>paypal_e8fdd4382b75b42bfbd96eb7b032cf47'] = 'Informations :';
$_MODULE['<{paypal}prestashop>paypal_9119a92adbbf6c67bfb8a3aee0bdb720'] = 'Collecte en attente de validation - Ne pas expédier';
$_MODULE['<{paypal}prestashop>paypal_c14eb95a724174f336b8ffdd98ef2f35'] = 'Paiement en attente de validation - ne pas expédier ';
$_MODULE['<{paypal}prestashop>paypal_5b18ff32c2aaaf4b79bdead10b10fe29'] = 'Récupérer le statut du paiement';
$_MODULE['<{paypal}prestashop>paypal_81e826adb70e2e6b189c2eef739d52d4'] = 'Capture PayPal';
$_MODULE['<{paypal}prestashop>paypal_6f1f179632d90b3f71f5c83a1137e302'] = 'Paiement pret à être collecté avant expedition';
$_MODULE['<{paypal}prestashop>paypal_3a81739e892c77e29ff4718c9dd92a34'] = 'Récupérer les fonds';
$_MODULE['<{paypal}prestashop>paypal_8ba079f305b81b172792bc0469b6a690'] = 'Remboursement PayPal';
$_MODULE['<{paypal}prestashop>paypal_016e1f278eccd700eaf33f74a501d050'] = 'Paiement accepté';
$_MODULE['<{paypal}prestashop>paypal_a8b1cc445942a2e1a7d7cca641c86d67'] = 'Quand vous remboursez un produit, un remboursement partiel est effectué sauf si vous cochez l\'option \"Générer un bon de réduction\"';
$_MODULE['<{paypal}prestashop>paypal_c2a5e2e23d8ec9cad779d657b7d33fc1'] = 'Rembourser totalement la transaction';
$_MODULE['<{paypal}prestashop>paypal_729a51874fe901b092899e9e8b31c97a'] = 'Etes vous sûr ?';
$_MODULE['<{paypal}prestashop>paypal_20fda49ece75d93bea97648ab1f1f1cf'] = 'Résultat du remboursement de produit:';
$_MODULE['<{paypal}prestashop>paypal_e5970a9962bc4cacb5adb408418a9f0c'] = 'Echec de l\'autorisation auprès de PayPal';
$_MODULE['<{paypal}prestashop>paypal_be6575076ac9b651d870a59970e7cd54'] = 'PayPal a retourné une erreur';
$_MODULE['<{paypal}prestashop>paypal_90aa7ebf75251f535a9bdd6ba671ae7a'] = 'Le token fournit par PayPal n\'est pas le même que celui du cookie';
$_MODULE['<{paypal}prestashop>paypal_33ac76215cb67f61f891cc3113e55997'] = 'Autorisation accepté par PayPal pour le paiement différé';
$_MODULE['<{paypal}prestashop>paypal_8778ee03f6592d5fec9a1f2ee851e476'] = 'Commande achevée avec PayPal !';
$_MODULE['<{paypal}prestashop>paypal_d89a00d4ba79c176bb0fc17f12d42a18'] = 'La clef PayPal \'mc_gross\' n\'a pas été spécifiée, impossible de contrôler le montant payé.';
$_MODULE['<{paypal}prestashop>paypal_202a2860b19003ce53966a8780bb448b'] = 'La clef PayPal \'payment_status\' n\'a pas été spécifiée, impossible de vérifier la validité du paiement';
$_MODULE['<{paypal}prestashop>paypal_bd0e34e5be6447844e6f262d51f1a9dc'] = 'Paiement :';
$_MODULE['<{paypal}prestashop>paypal_23703f7d045936080031477df1fc237b'] = 'Le token fournit par PayPal n\'est pas le même que celui du cookie';
$_MODULE['<{paypal}prestashop>paypal_760c3c2ccfadeee26c80c7b39462cf1d'] = 'La clef PayPal \'txn_id\' n\'a pas été spécifiée, transaction inconnue';
$_MODULE['<{paypal}prestashop>paypal_7faa8448e059fb97d60d4a4b15634d98'] = 'La clef PayPal \'mc_currency\' n\'a pas été spécifiée, devise inconnue';
$_MODULE['<{paypal}prestashop>paypal_e61f52d02b9f52fbe1fd41ed320e29c3'] = 'Panier introuvable';
$_MODULE['<{paypal}prestashop>paypal_0617900b1aff826081d07f5a3e2e7cd0'] = 'La commande a déjà été traitée';
$_MODULE['<{paypal}prestashop>paypal_f5209b3301a46f3057ffbf34d903e205'] = 'ID de la transaction PayPal :';
$_MODULE['<{paypal}prestashop>paypal_7b19e875ff64b09d80ee05dcc84b9975'] = 'La transaction PayPal ne peut pas être VERIFIEE.';
$_MODULE['<{paypal}prestashop>paypal_20dfea1a472e5be3f15f6b5f36ca335c'] = 'Problèmes lors de la tentative de connexion au serveur PayPal.';
$_MODULE['<{paypal}prestashop>paypal_76ee8dc73701e846f7bccdf98dae079b'] = 'Aucun protocole de communication disponible.';
$_MODULE['<{paypal}prestashop>paypal_8358ec19f397d4cdd632688d4f79e535'] = 'Echec de la vérification (protocole fsockopen). Retour :';
$_MODULE['<{paypal}prestashop>paypal_eca77e208634d52703b07672abbf16ec'] = 'Echec de la vérification (protocole cURL). Retour :';
$_MODULE['<{paypal}prestashop>paypal_f7799c2ded739cf3c3e9babffc5f315b'] = 'La connection via le protocole cURL a échoué.';
$_MODULE['<{paypal}prestashop>paypal_c640d8a3c2c34f79061a0bbe50e8420c'] = 'Merci de patienter, vous allez être redirigé vers PayPal. Merci.';
$_MODULE['<{paypal}prestashop>paypal_ea4788705e6873b424c65e91c2846b19'] = 'Annuler';
$_MODULE['<{paypal}prestashop>paypal_dae3b417a0fc4a49e851ce55d6d49551'] = 'Mon Panier';
$_MODULE['<{paypal}prestashop>paypal_9bfa2332c9c7198ac9774c6710bf76c4'] = 'Retour à la boutique';
$_MODULE['<{paypal}prestashop>paypal_d56249aa9643851a94bd3ef3da309d35'] = 'Paypal erreur: (adresse e-mail business invalide or indéfinie)';
$_MODULE['<{paypal}prestashop>paypal_e7ac6f09a936201890de4094b1ee4e50'] = 'Paypal erreur: (client ou adresse invalide)';
$_MODULE['<{paypal}prestashop>paypal_49b21ad0d38942f635877e7bbc5d7a1e'] = 'Solution';
$_MODULE['<{paypal}prestashop>paypal_f4f70727dc34561dfde1a3c529b6205c'] = 'Paramètres';
$_MODULE['<{paypal}prestashop>paypal_9c81c7e49db6edc5ea243dbadfb28c2a'] = 'Personnalisation et logos';
$_MODULE['<{paypal}prestashop>paypal_9d51eb502e6f46830cb97f53d761c212'] = 'Choisissez votre solution :';
$_MODULE['<{paypal}prestashop>paypal_0234fed198d74928f2864c574a9a89c1'] = 'Paiements par cartes';
$_MODULE['<{paypal}prestashop>paypal_627fabff813cafcd9313ea0037c0125b'] = 'cartes (CB , Visa, Mastercard, American Express, Aurore, Cofinoga, 4 Etoiles) et comptes PayPal (PayPal Intégral)';
$_MODULE['<{paypal}prestashop>paypal_ec2d6b2d2cfb9eadee1c15f3d579252d'] = 'Paiements par cartes et compte PayPal avec une garantie des paiements en plus';
$_MODULE['<{paypal}prestashop>paypal_7d8bea00c8ed9c1cdf9da980bd69c85a'] = '(PayPal Intégral Evolution, avec abonnement mensuel)';
$_MODULE['<{paypal}prestashop>paypal_457e5c04d6690cc6a72412c792c504d9'] = 'Paiements par';
$_MODULE['<{paypal}prestashop>paypal_5d4023dba17f36ce69357d25cbe4fbad'] = 'comptes PayPal uniquement';
$_MODULE['<{paypal}prestashop>paypal_e574ea35c565033a741efb1925b5f188'] = '(PayPal Option + )';
$_MODULE['<{paypal}prestashop>paypal_fdcd0dc7120ef9d14417c968e0a16e97'] = 'Activation soumise à conditions';
$_MODULE['<{paypal}prestashop>paypal_89e92ec866e363e88f12a7372d682c5c'] = 'cliquez ici pour connaître la procédure';
$_MODULE['<{paypal}prestashop>paypal_cd1bd0b0d3d22ede663f17df5194b3fe'] = 'Option :';
$_MODULE['<{paypal}prestashop>paypal_28882d910d7b5311aa0a9d5094e11caf'] = 'Paiement par compte PayPal en 2 clics';
$_MODULE['<{paypal}prestashop>paypal_22afd6155cd35727f6ed449aef994731'] = 'depuis le panier dachat (PayPal Express)';
$_MODULE['<{paypal}prestashop>paypal_4037fe43ff7b926e093805e2931c0f77'] = 'Mode debug seulement :';
$_MODULE['<{paypal}prestashop>paypal_7c8ab5ce5bf608dd41cf3e8f2312451c'] = 'Active les messages de log complet';
$_MODULE['<{paypal}prestashop>paypal_d4dccb8ca2dac4e53c01bd9954755332'] = 'Valider';
$_MODULE['<{paypal}prestashop>paypal_7a262cb0d3d917313c8ba12f996fe83c'] = 'Important :';
$_MODULE['<{paypal}prestashop>paypal_de79de54313d8b57cd45c840d196b7d0'] = 'Lutilisation des solutions PayPal nécessite une activation des appels API dans le menu Paramètres';
$_MODULE['<{paypal}prestashop>paypal_79f53a401ee04dbc765d0ba9a951a106'] = 'Mode Test ';
$_MODULE['<{paypal}prestashop>paypal_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Activé';
$_MODULE['<{paypal}prestashop>paypal_3cab03c00dbd11bc3569afa0748013f0'] = 'Désactivé';
$_MODULE['<{paypal}prestashop>paypal_4dbcb38bbbff5d4a402f2575c57a35e6'] = 'Type de paiement ';
$_MODULE['<{paypal}prestashop>paypal_5bc5650bfb4c1eb3887ea80e7802301f'] = 'Direct (sales)';
$_MODULE['<{paypal}prestashop>paypal_6dd446781e32f1a989396e93db70437d'] = 'Autorisation / Capture manuelle';
$_MODULE['<{paypal}prestashop>paypal_7186106a954f390f62860c11c8ba10d5'] = '(Paiement à l\'expédition)';
$_MODULE['<{paypal}prestashop>paypal_3cf5408a4a41b56c6fd7878a070b76ff'] = 'Adresse email de votre compte PayPal marchand';
$_MODULE['<{paypal}prestashop>paypal_467008be031b7e1a913395f53556fea8'] = 'Activation des appels API';
$_MODULE['<{paypal}prestashop>paypal_11931512987fbd1b884da55f13273a07'] = 'Utilisateur API';
$_MODULE['<{paypal}prestashop>paypal_5e07b6956454390018af63962ef4a3f6'] = 'Mot de passe API';
$_MODULE['<{paypal}prestashop>paypal_1c1357865e46a07448c95ebca39d4541'] = 'Laisser vide si le mot de passe n\'a pas changé';
$_MODULE['<{paypal}prestashop>paypal_e1ededd62537e048b815f70cc971bec8'] = 'Signature API';
$_MODULE['<{paypal}prestashop>paypal_52c59dac7b7ebfa8a0d78c98f2bc0225'] = 'Cliquez ici pour savoir comment générer votre utilisateur, mot de passe et signature API';
$_MODULE['<{paypal}prestashop>paypal_e28b278d67eeecfad67e76ec78fc13e8'] = 'Personnalisation et logos';
$_MODULE['<{paypal}prestashop>paypal_ee0174ba1fc039128d0a38074a7af945'] = 'URL de votre bannière (affichée sur la page de paiement PayPal)';
$_MODULE['<{paypal}prestashop>paypal_4c1c997e72e71eb6f690a9cd3dacb1f4'] = '(750 x 90 px, hébergement sécurisé « https »)';
$_MODULE['<{paypal}prestashop>paypal_091878185fc791198ac80982860b21ed'] = 'Template choisi pour PayPal Intégral Evolution';
$_MODULE['<{paypal}prestashop>paypal_cd8d30bc59ccf92028335d7e69e29905'] = 'Cliquez ici pour savoir comment personnaliser votre template (Tutorial)';
$_MODULE['<{paypal}prestashop>paypal_9518e6d551f7dc752b24af3629e849f9'] = 'Ouvrir son compte PayPal';
$_MODULE['<{paypal}prestashop>paypal_4c9ef5964631b6d4b38f5f2f77d1be74'] = 'En ouvrant votre compte PayPal en cliquant sur l\'image ci-dessous vous nous aidez activement à améliorer le logiciel PrestaShop :';
$_MODULE['<{paypal}prestashop>paypal_1569f6a31ff61f45c5ba13d7cab7e042'] = 'Ce module vous permet d\'accepter les paiements par PayPal.';
$_MODULE['<{paypal}prestashop>paypal_3c4cb777e8df15388c680354569636b6'] = 'Si le client choisit ce mode de paiement, votre compte PayPal sera automatiquement crédité.';
$_MODULE['<{paypal}prestashop>paypal_f9b49f93306d28e3dec595c3b89c926d'] = 'Vous devez configurer votre compte PayPal avant d\'utiliser ce module.';
$_MODULE['<{paypal}prestashop>paypal_57487012438fe78ae1d462e53a91bfc0'] = 'solution invalide';
$_MODULE['<{paypal}prestashop>paypal_f629bddb66252b97da3e7e5346697955'] = 'vous devez renseigner au moins un compte';
$_MODULE['<{paypal}prestashop>paypal_909d37302176080797966972da84b4e7'] = 'adresse e-mail invalide';
$_MODULE['<{paypal}prestashop>paypal_2fa631ec6f6afeac6335f3261181063f'] = 'l\'URL du logo est invalide';
$_MODULE['<{paypal}prestashop>paypal_19ea461c401bd941bf47a8bc01eecd6c'] = 'l\'URL du logo doit utiliser le protocole HTTPS';
$_MODULE['<{paypal}prestashop>paypal_b8822117a8cc930315a50bab7f6a4c80'] = 'le template PayPal est invalide';
$_MODULE['<{paypal}prestashop>paypal_b02186eee414487a068584dc0d177ad2'] = 'vous ne pouvez pas utiliser l\'autorisation / capture si vous n\'avez pas les droits API';
$_MODULE['<{paypal}prestashop>paypal_17fcef6818690d11d7caaab023ecdcff'] = 'vous ne pouvez pas utiliser cette solution si vous n\'avez pas les droits API';
$_MODULE['<{paypal}prestashop>paypal_30e4e115bfc5e140782fd9cb01be6898'] = 'vous ne pouvez pas utiliser PayPal Express si vous n\'avez pas les droits API';
$_MODULE['<{paypal}prestashop>paypal_c888438d14855d7d96a2724ee9c306bd'] = 'Paramètres mis à jour';
$_MODULE['<{paypal}prestashop>paypal_67c0e5ec07dd31dc74aaf55d6a72da31'] = 'Erreur lors de la récupération du statut de paiement';
$_MODULE['<{paypal}prestashop>paypal_ec53a8c4f07baed5d8825072c89799be'] = 'Statut';
$_MODULE['<{paypal}prestashop>paypal_ccb168b5a6a86eb100dc2dee754a316b'] = 'Raison:';
$_MODULE['<{paypal}prestashop>paypal_4f3acf5bcd7152fd301550bec6d0ffac'] = 'Erreur PayPal:';
$_MODULE['<{paypal}prestashop>paypal_a0d09826326fd385f6ceb17442f290de'] = 'Erreur lors de la requête de capture des fonds';
$_MODULE['<{paypal}prestashop>paypal_e03187f3f9d6eda06a2a7c201f58cdca'] = 'Erreur lors de la requête de remboursement';
$_MODULE['<{paypal}prestashop>paypal_e5d5d9f40763cfe6549bef705e3529a7'] = 'Message de paiement n\'est pas valide, merci de vérifier votre module !';
$_MODULE['<{paypal}prestashop>paypal_eec39bf42bd135971fb2d838c67d1449'] = 'Résultat de l\'opération de remboursement:';
$_MODULE['<{paypal}prestashop>paypal_2ab62d1a578713d0862b56819295630e'] = 'Remboursement fini avec PayPal !';
$_MODULE['<{paypal}prestashop>paypal_a64db959966ba8d07c8b5d9493fcc21f'] = 'Erreur lors de la transaction !';
$_MODULE['<{paypal}prestashop>paypal_67962779da962e3d4225055afc05e7bd'] = 'Résultat opération de récupération des fonds:';
$_MODULE['<{paypal}prestashop>paypal_5a05744b8ccb5909bc83355092e0f3fa'] = 'Statut de la vérification :';
$_MODULE['<{paypal}prestashop>paypalconnect_d1f14cc4a2dade80c92421d26422fea0'] = 'Ouvre une nouvelle connection vers';
$_MODULE['<{paypal}prestashop>paypalconnect_94a27811a721ef512ad7bfa06cab34e0'] = 'Echec de la connection avec la méthode cURL';
$_MODULE['<{paypal}prestashop>paypalconnect_70215486455daee13382c68b1a230b82'] = 'Connection réussie avec la méthode cURL';
$_MODULE['<{paypal}prestashop>paypalconnect_e4c4ad49bced42265b5facc2175cdafd'] = 'Envoie des paramètres :';
$_MODULE['<{paypal}prestashop>paypalconnect_445583f6641da98fc7ac8fd9d13a564b'] = 'Echec de l\'envoie avec la méthode cURL ! Erreur :';
$_MODULE['<{paypal}prestashop>paypalconnect_ef4fbf36eaa2083442d386990ba063c2'] = 'Envoie réussi avec la méthode cURL';
$_MODULE['<{paypal}prestashop>paypalconnect_bf059c9751bb1a20b449b7917b1df374'] = 'Echec de la connection avec la méthode fsockopen';
$_MODULE['<{paypal}prestashop>paypalconnect_ea800e3536f81238a4cbc32eb6db4eaf'] = 'Connection réussie avec la méthode fsockopen';
$_MODULE['<{paypal}prestashop>paypalconnect_6e9aa4cb541e09b07602d4ea96080811'] = 'Echec de l\'envoie avec la méthode fsockopen ! Erreur :';
$_MODULE['<{paypal}prestashop>paypalconnect_842a183be225d415b2b4375ba1dd1c94'] = 'Envoie réussi avec la méthode fsockopen';
$_MODULE['<{paypal}prestashop>paypallib_7c2d00d8c94d1ce0f515db8b0481db40'] = 'Réponse PayPal :';
$_MODULE['<{paypal}prestashop>authentication_cd42c6dd6cc4cd65cb5e13b729050469'] = 'Vérifiez vos informations';
$_MODULE['<{paypal}prestashop>authentication_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Vos informations personnelles';
$_MODULE['<{paypal}prestashop>authentication_b78a3223503896721cca1303f776159b'] = 'Civilité';
$_MODULE['<{paypal}prestashop>authentication_127469a6b4253ebb77adccc0dd48461e'] = 'M.';
$_MODULE['<{paypal}prestashop>authentication_29e32764941c30d1bb41c601014fbdbd'] = 'Mme';
$_MODULE['<{paypal}prestashop>authentication_20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom';
$_MODULE['<{paypal}prestashop>authentication_8d3f5eff9c40ee315d452392bed5309b'] = 'Nom';
$_MODULE['<{paypal}prestashop>authentication_1e884e3078d9978e216a027ecd57fb34'] = 'E-mail';
$_MODULE['<{paypal}prestashop>authentication_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
$_MODULE['<{paypal}prestashop>authentication_bf2957630c4209f61a388a08c2154915'] = '(5 caractères min.)';
$_MODULE['<{paypal}prestashop>authentication_aac772216aecbeca0e86d06671fe985a'] = 'Date de naissance';
$_MODULE['<{paypal}prestashop>authentication_86f5978d9b80124f509bdb71786e929e'] = 'Janvier';
$_MODULE['<{paypal}prestashop>authentication_659e59f062c75f81259d22786d6c44aa'] = 'Février';
$_MODULE['<{paypal}prestashop>authentication_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Mars';
$_MODULE['<{paypal}prestashop>authentication_3fcf026bbfffb63fb24b8de9d0446949'] = 'Avril';
$_MODULE['<{paypal}prestashop>authentication_195fbb57ffe7449796d23466085ce6d8'] = 'Mai';
$_MODULE['<{paypal}prestashop>authentication_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Juin';
$_MODULE['<{paypal}prestashop>authentication_1b539f6f34e8503c97f6d3421346b63c'] = 'Juillet';
$_MODULE['<{paypal}prestashop>authentication_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Août';
$_MODULE['<{paypal}prestashop>authentication_cc5d90569e1c8313c2b1c2aab1401174'] = 'Septembre';
$_MODULE['<{paypal}prestashop>authentication_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Octobre';
$_MODULE['<{paypal}prestashop>authentication_7e823b37564da492ca1629b4732289a8'] = 'Novembre';
$_MODULE['<{paypal}prestashop>authentication_82331503174acbae012b2004f6431fa5'] = 'Décembre';
$_MODULE['<{paypal}prestashop>authentication_6f6162d3a052bb330e9c60285c74c6c9'] = 'S\'inscrire à la newsletter';
$_MODULE['<{paypal}prestashop>authentication_ac135c86084a47630c9eadb4edd5ef75'] = 'Recevez les offres spéciales de nos partenaires';
$_MODULE['<{paypal}prestashop>authentication_455175f3f5be6306247babb349c0515a'] = 'Votre adresse';
$_MODULE['<{paypal}prestashop>authentication_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Société';
$_MODULE['<{paypal}prestashop>authentication_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
$_MODULE['<{paypal}prestashop>authentication_783cb853aae6984e51583b3bb80c09d2'] = 'Adresse (2)';
$_MODULE['<{paypal}prestashop>authentication_9b514b51d03075005814a33edc74c958'] = 'Code postal';
$_MODULE['<{paypal}prestashop>authentication_57d056ed0984166336b7879c2af3657f'] = 'Ville';
$_MODULE['<{paypal}prestashop>authentication_59716c97497eb9694541f7c3d37b1a4d'] = 'Pays';
$_MODULE['<{paypal}prestashop>authentication_46a2a41cc6e552044816a2d04634545d'] = 'Etat';
$_MODULE['<{paypal}prestashop>authentication_0f68b904e33d9ac04605aecc958bcf52'] = 'Informations complémentaires';
$_MODULE['<{paypal}prestashop>authentication_fe66abce284ec8589e7d791185b5c442'] = 'Téléphone domicile';
$_MODULE['<{paypal}prestashop>authentication_41c2fff4867cc204120f001e7af20f7a'] = 'Téléphone portable';
$_MODULE['<{paypal}prestashop>authentication_6c1c4d5a22e3d6ed8385e7287233396f'] = 'Donnez un titre à cette adresse pour la retrouver plus facilement';
$_MODULE['<{paypal}prestashop>authentication_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Mon adresse';
$_MODULE['<{paypal}prestashop>authentication_a0bfb8e59e6c13fc8d990781f77694fe'] = 'Continuer';
$_MODULE['<{paypal}prestashop>authentication_19f823c6453c2b1ffd09cb715214813d'] = 'Champs requis';
$_MODULE['<{paypal}prestashop>login_b40ad46c25c153a3d2fde078c0e1b0f8'] = 'Merci de vous identifier';
$_MODULE['<{paypal}prestashop>login_abc57016a138dea055e0d8be6358f84e'] = 'Email déjà enregistrée, merci de vous identifier !';
$_MODULE['<{paypal}prestashop>login_8b5dd64ab8d0b8158906796b53a200e2'] = 'Adresse e-mail';
$_MODULE['<{paypal}prestashop>login_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
$_MODULE['<{paypal}prestashop>login_bffe9a3c9a7e00ba00a11749e022d911'] = 'S\'identifier';
$_MODULE['<{paypal}prestashop>login_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Mot de passe oublié ?';
$_MODULE['<{paypal}prestashop>paypalexpress_b601224a2a6c61f38738ca903fb019a2'] = 'Panier incorrect';
$_MODULE['<{paypal}prestashop>paypalexpress_ee9dc1e678d54c517f481583c3fb2db8'] = 'Devise incorrecte';
$_MODULE['<{paypal}prestashop>shopping_cart_aa91004934e1abdb620b5d0f0c18681c'] = 'Payer avec PayPal Express Checkout';
$_MODULE['<{paypal}prestashop>submit_528d1f824243db48e40cb6223d32fa06'] = 'Aucun token donné par PayPal';
$_MODULE['<{paypal}prestashop>submit_795277047da13b4fc74e02e050b1a675'] = 'PayPal a retourné une erreur';
$_MODULE['<{paypal}prestashop>submit_b4133f1ba03a914134a5281a08231078'] = 'L\'autorisation à PayPal a échoué';
$_MODULE['<{paypal}prestashop>submit_4935b58d37fda5bd60acc510cb324342'] = 'Impossible de trouver les informations du compte PayPal';
$_MODULE['<{paypal}prestashop>submit_90aa7ebf75251f535a9bdd6ba671ae7a'] = 'Le token fournit par PayPal n\'est pas le même que celui du cookie';
$_MODULE['<{paypal}prestashop>paypal_dac2693baa5c5c9a5318609ed81c4f2a'] = 'Payer par PayPal';
$_MODULE['<{paypal}prestashop>payment_dac2693baa5c5c9a5318609ed81c4f2a'] = 'Payer par PayPal';
$_MODULE['<{paypal}prestashop>payment_a3f2caee6ef8e68fbd26e42d83f2bf65'] = 'Payez avec votre compte PayPal, carte de crédit (CB, Visa, Mastercard ...)';
$_MODULE['<{paypal}prestashop>payment_b08008a2de4331ba13f006c9bcf37b62'] = 'Payez avec votre compte PayPal';
$_MODULE['<{paypal}prestashop>paypalpayment_ee9dc1e678d54c517f481583c3fb2db8'] = 'La devise est incorrecte';
Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 956 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

@@ -1,31 +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
*}
<p class="payment_module">
<a href="modules/paypal/integral_evolution/redirect.php" title="{l s='Pay with PayPal' mod='paypal'}">
<img src="{$base_dir_ssl}modules/paypal/img/integral_evolution.png" alt="{l s='Pay with PayPal' mod='paypal'}" />
</a>
</p>
@@ -1,111 +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__).'/../paypal.php');
$paypal = new Paypal();
$cart = new Cart((int)($cookie->id_cart));
// Billing address
$billingAddress = new Address((int)($cart->id_address_invoice));
$billingCountry = new Country((int)($billingAddress->id_country));
$billingState = NULL;
if ($billingAddress->id_state)
$billingState = new State((int)($billingAddress->id_state));
// Shipping address
if ($cart->id_address_delivery == $cart->id_address_invoice)
{
$shippingAddress = $billingAddress;
$shippingCountry = $billingCountry;
$shippingState = $billingState;
}
else
{
$shippingAddress = new Address((int)($cart->id_address_delivery));
$shippingCountry = new Country((int)($shippingAddress->id_country));
$shippingState = NULL;
if ($shippingAddress->id_state)
$shippingState = new State((int)($shippingAddress->id_state));
}
$customer = new Customer((int)($cart->id_customer));
$business = Configuration::get('PAYPAL_BUSINESS');
$header = Configuration::get('PAYPAL_HEADER');
$currency_order = new Currency((int)($cart->id_currency));
$currency_module = $paypal->getCurrency((int)($cart->id_currency));
if (empty($business) OR !Validate::isEmail($business))
die($paypal->getL('Paypal error: (invalid or undefined business account email)'));
if (!Validate::isLoadedObject($billingAddress) OR !Validate::isLoadedObject($shippingAddress) OR !Validate::isLoadedObject($customer) OR !Validate::isLoadedObject($currency_module))
die($paypal->getL('Paypal error: (invalid address or customer)'));
// check currency of payment
if ($currency_order->id != $currency_module->id)
{
$cookie->id_currency = $currency_module->id;
$cart->id_currency = $currency_module->id;
$cart->update();
}
$smarty->assign(array(
'redirect_text' => $paypal->getL('Please wait, redirecting to Paypal... Thanks.'),
'cancel_text' => $paypal->getL('Cancel'),
'cart_text' => $paypal->getL('My cart'),
'return_text' => $paypal->getL('Return to shop'),
'paypal_url' => $paypal->getPaypalIntegralEvolutionUrl(),
'billing_address' => $billingAddress,
'billing_country' => $billingCountry,
'billing_state' => $billingState,
'shipping_address' => $shippingAddress,
'shipping_country' => $shippingCountry,
'shipping_state' => $shippingState,
'amount' => (float)($cart->getOrderTotal(true, Cart::BOTH_WITHOUT_SHIPPING)),
'customer' => $customer,
'total' => (float)($cart->getOrderTotal(true, Cart::BOTH)),
'shipping' => Tools::ps_round((float)($cart->getOrderShippingCost()) + (float)($cart->getOrderTotal(true, Cart::ONLY_WRAPPING)), 2),
'discount' => $cart->getOrderTotal(true, Cart::ONLY_DISCOUNTS),
'business' => $business,
'currency_module' => $currency_module,
'cart_id' => (int)($cart->id).'_'.pSQL($cart->secure_key),
'products' => $cart->getProducts(),
'paypal_id' => (int)($paypal->id),
'header' => $header,
'template' => 'Template'.Configuration::get('PAYPAL_TEMPLATE'),
'url' => Tools::getShopDomain(true, true).__PS_BASE_URI__,
'paymentaction' => (Configuration::get('PAYPAL_CAPTURE') ? 'authorization' : 'sale')
));
if (is_file(_PS_THEME_DIR_.'modules/paypal/integral_evolution/redirect.tpl'))
$smarty->display(_PS_THEME_DIR_.'modules/'.$paypal->name.'/integral_evolution/redirect.tpl');
else
$smarty->display(_PS_MODULE_DIR_.$paypal->name.'/integral_evolution/redirect.tpl');
@@ -1,93 +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
*}
<html>
<head>
<script type="text/javascript" src="{$url}js/jquery/jquery-1.4.4.min.js"></script>
</head>
<body>
<p>{$redirect_text}<br /><a href="javascript:history.go(-1);">{$cancel_text}</a></p>
<form action="{$paypal_url}" method="post" id="paypal_form" class="hidden">
<input type="hidden" name="upload" value="1" />
<input type="hidden" name="address_override" value="1" />
<input type="hidden" name="showShippingAddress" value="false">
<input type="hidden" name="showBillingAddress" value="false">
<input type="hidden" name="first_name" value="{$shipping_address->firstname|escape:'htmlall':'UTF-8'}" />
<input type="hidden" name="last_name" value="{$shipping_address->lastname|escape:'htmlall':'UTF-8'}" />
<input type="hidden" name="address1" value="{$shipping_address->address1|escape:'htmlall':'UTF-8'}" />
{if $shipping_address->address2 != NULL}
<input type="hidden" name="address2" value="{$shipping_address->address2|escape:'htmlall':'UTF-8'}" />
{/if}
<input type="hidden" name="city" value="{$shipping_address->city|escape:'htmlall':'UTF-8'}" />
<input type="hidden" name="zip" value="{$shipping_address->postcode}" />
<input type="hidden" name="country" value="{$shipping_country->iso_code}" />
{if $shipping_state != NULL}
<input type="hidden" name="state" value="{$shipping_state->iso_code}" />
{/if}
<input type="hidden" name="billing_first_name" value="{$billing_address->firstname|escape:'htmlall':'UTF-8'}">
<input type="hidden" name="billing_last_name" value="{$billing_address->lastname|escape:'htmlall':'UTF-8'}">
<input type="hidden" name="billing_address1" value="{$billing_address->address1|escape:'htmlall':'UTF-8'}">
{if $billing_address->address2 != NULL}
<input type="hidden" name="billing_address2" value="{$billing_address->address2|escape:'htmlall':'UTF-8'}">
{/if}
<input type="hidden" name="billing_city" value="{$billing_address->city|escape:'htmlall':'UTF-8'}">
{if $billing_state != NULL}
<input type="hidden" name="billing_state" value="{$billing_state->iso_code}">
{/if}
<input type="hidden" name="billing_zip" value="{$billing_address->postcode}">
<input type="hidden" name="billing_country" value="{$billing_country->iso_code}">
<input type="hidden" name="subtotal" value="{$total}" />
<input type="hidden" name="buyer_email" value="{$customer->email}" />
<input type="hidden" name="item_name" value="{$cart_text}" />
<input type="hidden" name="business" value="{$business}" />
<input type="hidden" name="cmd" value="_hosted-payment">
<input type="hidden" name="charset" value="utf-8" />
<input type="hidden" name="currency_code" value="{$currency_module->iso_code}" />
<input type="hidden" name="payer_id" value="{$customer->id}" />
<input type="hidden" name="payer_email" value="{$customer->email}" />
<input type="hidden" name="custom" value="{$cart_id}" />
<input type="hidden" name="return" value="{$url}order-confirmation.php?key={$customer->secure_key}&id_cart={$cart_id}&id_module={$paypal_id}&slowvalidation" />
<input type="hidden" name="cancel_return" value="{$url}" />
<input type="hidden" name="notify_url" value="{$url}modules/paypal/validation.php" />
<input type="hidden" name="paymentaction" value="{$paymentaction}" />
{if $header != NULL}
<input type="hidden" name="cpp_header_image" value="{$header}" />
{/if}
<input type="hidden" name="template" value="{$template}" />
<input type="hidden" name="rm" value="2" />
<input type="hidden" name="bn" value="FR_PRESTASHOP_H3S" />
<input type="hidden" name="cbt" value="{$return_text}" />
</form>
<script type="text/javascript">
{literal}
$(document).ready(function() {
$('#paypal_form').submit();
});
{/literal}
</script>
</body>
</html>
-80
View File
@@ -1,80 +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_once(dirname(__FILE__).'/../../config/config.inc.php');
include_once(dirname(__FILE__).'/../../init.php');
include_once(_PS_MODULE_DIR_.'paypal/paypal.php');
$pp = new Paypal();
if (!$transaction_id = Tools::getValue('txn_id'))
die('No transaction id');
if (!$id_order = $pp->getOrder($transaction_id))
die('No order');
$order = new Order((int)($id_order));
if (!Validate::isLoadedObject($order) OR !$order->id)
die('Invalid order');
if (!$amount = (float)(Tools::getValue('mc_gross')) OR $amount != $order->total_paid)
die('Incorrect amount');
if (!$status = strval(Tools::getValue('payment_status')))
die('Incorrect order status');
// Getting params
$params = 'cmd=_notify-validate';
foreach ($_POST AS $key => $value)
$params .= '&'.$key.'='.urlencode(stripslashes($value));
// Checking params by asking PayPal
include(_PS_MODULE_DIR_.'paypal/api/paypallib.php');
$ppAPI = new PaypalLib();
$result = $ppAPI->makeSimpleCall($pp->getAPIURL(), $pp->getAPIScript(), $params);
if (!$result OR (Tools::strlen($result) < 8) OR (!$statut = substr($result, -8)) OR $statut != 'VERIFIED')
die('Incorrect PayPal verified');
// Getting order status
switch ($status)
{
case 'Completed':
$id_order_state = _PS_OS_PAYMENT_;
break;
case 'Pending':
$id_order_state = _PS_OS_PAYPAL_;
break;
default:
$id_order_state = _PS_OS_ERROR_;
}
if ($order->getCurrentState() == $id_order_state)
die('Same status');
// Set order state in order history
$history = new OrderHistory();
$history->id_order = (int)($order->id);
$history->changeIdOrderState((int)($id_order_state), (int)($order->id));
$history->addWithemail(true, $extraVars);
-225
View File
@@ -1,225 +0,0 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{paypal}prestashop>about_e816e21c1c8e0eba0620fa3df6bd6795'] = 'Che cos\'è PayPal?';
$_MODULE['<{paypal}prestashop>about_16ea57badae98f402bb8f2b2f49d4e77'] = 'PayPal, leader di fiducia nei pagamenti online, consente ad acquirenti e aziende di inviare e ricevere pagamenti online. PayPal vanta oltre 100 milioni di conti in 190 Paesi e territori. È accettato dai commercianti di tutto il mondo, dentro e fuori di eBay.';
$_MODULE['<{paypal}prestashop>about_d20adade7baa1b60b713521031ea676c'] = 'E\' sicuro?';
$_MODULE['<{paypal}prestashop>about_64f7b897c6d56fc62428f692ee5737cd'] = 'PayPal consente di proteggere i dati della carta di credito con la sicurezza dei leader di settore e dei sistemi di prevenzione delle frodi. Quando utilizzi PayPal, le tue informazioni finanziarie non vengono mai condivise con il commerciante.';
$_MODULE['<{paypal}prestashop>about_5ef30813484389e4200640c2f006004d'] = 'Perché utilizzare PayPal?';
$_MODULE['<{paypal}prestashop>about_86550d4ea832930db4366f03b90bdfb8'] = 'Fai acquisti o invia denaro con PayPal - è gratis';
$_MODULE['<{paypal}prestashop>about_7dc9e529337e5a55a12bf362b8e68cac'] = 'Fai acquisti e paga comodamente salvando le tue informazioni con PayPal';
$_MODULE['<{paypal}prestashop>about_32098ae6a7ecd96805df9e48fb6cc739'] = 'PayPal è accettato da milioni di aziende in tutto il mondo ed è il metodo di pagamento preferito su eBay';
$_MODULE['<{paypal}prestashop>about_7934d7d1280bfbb8778743e39292af30'] = 'Inizia a utilizzare PayPal oggi stesso!';
$_MODULE['<{paypal}prestashop>column_dac2693baa5c5c9a5318609ed81c4f2a'] = 'Paga con PayPal';
$_MODULE['<{paypal}prestashop>confirm_a40cab5994f36d4c48103a22ca082e8f'] = 'Il tuo carrello';
$_MODULE['<{paypal}prestashop>confirm_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal';
$_MODULE['<{paypal}prestashop>confirm_f1d3b424cd68795ecaa552883759aceb'] = 'Riepilogo ordine';
$_MODULE['<{paypal}prestashop>confirm_dd23adc5fb6bda9c384397b31e57fc53'] = 'pagamento PayPal';
$_MODULE['<{paypal}prestashop>confirm_62d74398cb6ebaa69ab7339052ca5c92'] = 'Hai scelto di pagare con PayPal.';
$_MODULE['<{paypal}prestashop>confirm_c884ed19483d45970c5bf23a681e2dd2'] = 'Ecco un breve riepilogo del tuo ordine:';
$_MODULE['<{paypal}prestashop>confirm_e2867a925cba382f1436d1834bb52a1c'] = 'L\'importo totale del tuo ordine è';
$_MODULE['<{paypal}prestashop>confirm_1f87346a16cf80c372065de3c54c86d9'] = '(Tasse incl.)';
$_MODULE['<{paypal}prestashop>confirm_8ed356c32b198c9cb2abab7c3d262b93'] = 'Accettiamo che la seguente valuta sia inviata tramite PayPal:';
$_MODULE['<{paypal}prestashop>confirm_0881a11f7af33bc1b43e437391129d66'] = 'Si prega di confermare l\'ordine cliccando su \'confermo il mio ordine\'';
$_MODULE['<{paypal}prestashop>confirm_569fd05bdafa1712c4f6be5b153b8418'] = 'Altri metodi di pagamento';
$_MODULE['<{paypal}prestashop>confirm_46b9e3665f187c739c55983f757ccda0'] = 'Confermo il mio ordine';
$_MODULE['<{paypal}prestashop>confirmation_2e2117b7c81aa9ea6931641ea2c6499f'] = 'Il tuo ordine';
$_MODULE['<{paypal}prestashop>confirmation_75fbf512d744977d62599cc3f0ae2bb4'] = 'è completo.';
$_MODULE['<{paypal}prestashop>confirmation_15b0f8e55c6bdfc3d5fd0b6b3b6cb3ee'] = 'Hai scelto il metodo PayPal.';
$_MODULE['<{paypal}prestashop>confirmation_e6dc7945b557a1cd949bea92dd58963e'] = 'Il tuo ordine verrà inviato al più presto.';
$_MODULE['<{paypal}prestashop>confirmation_0db71da7150c27142eef9d22b843b4a9'] = 'Per eventuali domande o per ulteriori informazioni, contatta la nostra';
$_MODULE['<{paypal}prestashop>confirmation_64430ad2835be8ad60c59e7d44e4b0b1'] = 'assistenza clienti';
$_MODULE['<{paypal}prestashop>error_a40cab5994f36d4c48103a22ca082e8f'] = 'Il tuo carrello';
$_MODULE['<{paypal}prestashop>error_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal';
$_MODULE['<{paypal}prestashop>error_425551a2289ed60c9260933d1c45ef00'] = 'Si prega di fare riferimento ai log:';
$_MODULE['<{paypal}prestashop>error_0557fa923dcee4d0f86b1409f5c2167f'] = 'Indietro';
$_MODULE['<{paypal}prestashop>paypal_ad69e733ebae8d264bccaa38d68830e8'] = 'PayPal';
$_MODULE['<{paypal}prestashop>paypal_6e7012516038a096b9f6bb71ba2cc5a3'] = 'Si accettano pagamenti con carte di credito e prepagate (Visa, MasterCard, Amex, Aurora) associate al conto PayPal';
$_MODULE['<{paypal}prestashop>paypal_69a1a3ad8dd5da6db3c4da838a0cf9c7'] = 'Sei sicuro di voler cancellare i tuoi dati?';
$_MODULE['<{paypal}prestashop>paypal_1828820cc60e36b6f9fdf60cab103ed7'] = 'Si sta attualmente utilizzando l\'indirizzo di posta elettronica predefinito, è necessario utilizzare il proprio indirizzo e-mail';
$_MODULE['<{paypal}prestashop>paypal_47b49d72ae0a4b3aa928fc4cc3e7fc53'] = 'Per RIMUOVERE questo avviso, disinstalla e rimuovi il modulo PayPalAPI';
$_MODULE['<{paypal}prestashop>paypal_7d0887294ed32e2013b64c4210e26841'] = 'Non usare il modulo PayPalAPI e rimuovilo. ';
$_MODULE['<{paypal}prestashop>paypal_a706f7e37a81dc235d41bbeb6fae92aa'] = 'Non hai selezionato un metodo di pagamento valido ';
$_MODULE['<{paypal}prestashop>paypal_32af90c3cfef1bacf43b0c3a8f60a4da'] = 'Il denaro è stato recuperato ';
$_MODULE['<{paypal}prestashop>paypal_d238649ac5ec14afc894fad36c0b50fc'] = 'La richiesta di recupero fondi non è andata a buon fine, vedi il messaggio nella cronologia.';
$_MODULE['<{paypal}prestashop>paypal_05b998de2c4fb46a7bdd37bd378b81d9'] = 'La convalida è stata eseguita, vedi il messaggio nella cronologia. ';
$_MODULE['<{paypal}prestashop>paypal_aeca7e93a1b3d77e38c3cffa131774d5'] = 'Il rimborso è stato completato ';
$_MODULE['<{paypal}prestashop>paypal_cba030a50c8a99c7e224adbe1cf58544'] = 'La richiesta di rimborso non è andata a buon fine, vedi il messaggio nella cronologia.';
$_MODULE['<{paypal}prestashop>paypal_b630aa9b5e25da971949cae62dd109aa'] = 'Convalida PayPal ';
$_MODULE['<{paypal}prestashop>paypal_e8fdd4382b75b42bfbd96eb7b032cf47'] = 'Informazioni:';
$_MODULE['<{paypal}prestashop>paypal_9119a92adbbf6c67bfb8a3aee0bdb720'] = 'In attesa di raccolta - Non spedire';
$_MODULE['<{paypal}prestashop>paypal_c14eb95a724174f336b8ffdd98ef2f35'] = 'In attesa di pagamento - Non spedire';
$_MODULE['<{paypal}prestashop>paypal_5b18ff32c2aaaf4b79bdead10b10fe29'] = 'Vedi lo stato del pagamento';
$_MODULE['<{paypal}prestashop>paypal_81e826adb70e2e6b189c2eef739d52d4'] = 'Riscossione PayPal ';
$_MODULE['<{paypal}prestashop>paypal_6f1f179632d90b3f71f5c83a1137e302'] = 'Fondi pronti per essere catturato prima della spedizione';
$_MODULE['<{paypal}prestashop>paypal_3a81739e892c77e29ff4718c9dd92a34'] = 'Ricevi il denaro ';
$_MODULE['<{paypal}prestashop>paypal_8ba079f305b81b172792bc0469b6a690'] = 'Rimborso PayPal ';
$_MODULE['<{paypal}prestashop>paypal_016e1f278eccd700eaf33f74a501d050'] = 'Pagamento accettato';
$_MODULE['<{paypal}prestashop>paypal_a8b1cc445942a2e1a7d7cca641c86d67'] = 'Quando emetti un rimborso per un prodotto, viene eseguito un rimborso parziale a meno che non selezioni l\'opzione Crea buono';
$_MODULE['<{paypal}prestashop>paypal_c2a5e2e23d8ec9cad779d657b7d33fc1'] = 'Rimborsa l\'intero importo della transazione ';
$_MODULE['<{paypal}prestashop>paypal_729a51874fe901b092899e9e8b31c97a'] = 'Sei sicuro? ';
$_MODULE['<{paypal}prestashop>paypal_20fda49ece75d93bea97648ab1f1f1cf'] = 'Annulla i risultati per i prodotti: ';
$_MODULE['<{paypal}prestashop>paypal_e5970a9962bc4cacb5adb408418a9f0c'] = 'Autorizzazione di PayPal non riuscita ';
$_MODULE['<{paypal}prestashop>paypal_be6575076ac9b651d870a59970e7cd54'] = 'PayPal ha restituito un errore ';
$_MODULE['<{paypal}prestashop>paypal_90aa7ebf75251f535a9bdd6ba671ae7a'] = 'Il numero di sicurezza fornito da PayPal non è uguale a quello del cookie ';
$_MODULE['<{paypal}prestashop>paypal_33ac76215cb67f61f891cc3113e55997'] = 'Autorizzazione di pagamento differito concessa da PayPal ';
$_MODULE['<{paypal}prestashop>paypal_8778ee03f6592d5fec9a1f2ee851e476'] = 'Ordine PayPal completato ';
$_MODULE['<{paypal}prestashop>paypal_d89a00d4ba79c176bb0fc17f12d42a18'] = 'Chiave Paypal \'Mc_gross\' non specificata, non può controllare l\'importo corrisposto.';
$_MODULE['<{paypal}prestashop>paypal_202a2860b19003ce53966a8780bb448b'] = 'Chiave Paypal \'Payment_status\' non specificata, non in grado di controllare la validità di pagamento';
$_MODULE['<{paypal}prestashop>paypal_bd0e34e5be6447844e6f262d51f1a9dc'] = 'Pagamento:';
$_MODULE['<{paypal}prestashop>paypal_23703f7d045936080031477df1fc237b'] = 'Chiave Paypal \'Custom\' non specificata, non in grado di inoltrare al carrello';
$_MODULE['<{paypal}prestashop>paypal_760c3c2ccfadeee26c80c7b39462cf1d'] = 'Chiave Paypal \'Txn_id\' non specificata, operazione sconosciuta';
$_MODULE['<{paypal}prestashop>paypal_7faa8448e059fb97d60d4a4b15634d98'] = 'Chiave Paypal \'Mc_currency\' non specificata, valuta sconosciuto';
$_MODULE['<{paypal}prestashop>paypal_e61f52d02b9f52fbe1fd41ed320e29c3'] = 'Carrello non trovato';
$_MODULE['<{paypal}prestashop>paypal_0617900b1aff826081d07f5a3e2e7cd0'] = 'Ordine è già stato effettuato';
$_MODULE['<{paypal}prestashop>paypal_f5209b3301a46f3057ffbf34d903e205'] = 'ID Transazione PayPal:';
$_MODULE['<{paypal}prestashop>paypal_7b19e875ff64b09d80ee05dcc84b9975'] = 'La transazione PayPal non è stata VERIFICATA.';
$_MODULE['<{paypal}prestashop>paypal_20dfea1a472e5be3f15f6b5f36ca335c'] = 'Problema di connessione al server di PayPal.';
$_MODULE['<{paypal}prestashop>paypal_76ee8dc73701e846f7bccdf98dae079b'] = 'Nessuna comunicazione di trasporto disponibile.';
$_MODULE['<{paypal}prestashop>paypal_8358ec19f397d4cdd632688d4f79e535'] = 'Verifica fallimento (usando fsockopen). Restituito:';
$_MODULE['<{paypal}prestashop>paypal_eca77e208634d52703b07672abbf16ec'] = 'Verifica fallimento (con cURL). Restituito:';
$_MODULE['<{paypal}prestashop>paypal_f7799c2ded739cf3c3e9babffc5f315b'] = 'Collegamento tramite cURL non riuscita';
$_MODULE['<{paypal}prestashop>paypal_c640d8a3c2c34f79061a0bbe50e8420c'] = 'Attendere, reindirizzamento a Paypal ... Grazie.';
$_MODULE['<{paypal}prestashop>paypal_ea4788705e6873b424c65e91c2846b19'] = 'Annulla';
$_MODULE['<{paypal}prestashop>paypal_dae3b417a0fc4a49e851ce55d6d49551'] = 'Il mio carrello';
$_MODULE['<{paypal}prestashop>paypal_9bfa2332c9c7198ac9774c6710bf76c4'] = 'Torna al negozio';
$_MODULE['<{paypal}prestashop>paypal_d56249aa9643851a94bd3ef3da309d35'] = 'Errore Paypal: (e-mail account business non valido o non definito)';
$_MODULE['<{paypal}prestashop>paypal_e7ac6f09a936201890de4094b1ee4e50'] = 'Errore Paypal: (indirizzo o cliente non valido)';
$_MODULE['<{paypal}prestashop>paypal_49b21ad0d38942f635877e7bbc5d7a1e'] = 'Soluzione ';
$_MODULE['<{paypal}prestashop>paypal_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
$_MODULE['<{paypal}prestashop>paypal_9c81c7e49db6edc5ea243dbadfb28c2a'] = 'Logo e personalizzazioni ';
$_MODULE['<{paypal}prestashop>paypal_9d51eb502e6f46830cb97f53d761c212'] = 'Scegli una soluzione: ';
$_MODULE['<{paypal}prestashop>paypal_0234fed198d74928f2864c574a9a89c1'] = 'Pagamenti con carta di credito ';
$_MODULE['<{paypal}prestashop>paypal_627fabff813cafcd9313ea0037c0125b'] = '(Visa, Mastercard, Amex, Aurora) e conto PayPal ';
$_MODULE['<{paypal}prestashop>paypal_ec2d6b2d2cfb9eadee1c15f3d579252d'] = 'Pagamenti con carta e protezione venditori ';
$_MODULE['<{paypal}prestashop>paypal_7d8bea00c8ed9c1cdf9da980bd69c85a'] = '(PayPal Integral Evolution, abbonamento mensile)';
$_MODULE['<{paypal}prestashop>paypal_457e5c04d6690cc6a72412c792c504d9'] = 'Pagamenti con ';
$_MODULE['<{paypal}prestashop>paypal_5d4023dba17f36ce69357d25cbe4fbad'] = 'Conto PayPal ';
$_MODULE['<{paypal}prestashop>paypal_e574ea35c565033a741efb1925b5f188'] = '(PayPal Option+) ';
$_MODULE['<{paypal}prestashop>paypal_fdcd0dc7120ef9d14417c968e0a16e97'] = 'Attivazione soggetta a condizioni e a tariffa mensile ';
$_MODULE['<{paypal}prestashop>paypal_89e92ec866e363e88f12a7372d682c5c'] = 'clicca qui per registrarti ';
$_MODULE['<{paypal}prestashop>paypal_cd1bd0b0d3d22ede663f17df5194b3fe'] = 'Opzione: ';
$_MODULE['<{paypal}prestashop>paypal_28882d910d7b5311aa0a9d5094e11caf'] = 'Pagamento express PayPal: pagamenti in 2 clic ';
$_MODULE['<{paypal}prestashop>paypal_22afd6155cd35727f6ed449aef994731'] = 'con conto PayPal direttamente dalla pagina del carrello';
$_MODULE['<{paypal}prestashop>paypal_4037fe43ff7b926e093805e2931c0f77'] = 'Solo debug:';
$_MODULE['<{paypal}prestashop>paypal_7c8ab5ce5bf608dd41cf3e8f2312451c'] = 'Attiva messaggio di log completo';
$_MODULE['<{paypal}prestashop>paypal_d4dccb8ca2dac4e53c01bd9954755332'] = 'Salva impostazioni ';
$_MODULE['<{paypal}prestashop>paypal_7a262cb0d3d917313c8ba12f996fe83c'] = 'Importante: ';
$_MODULE['<{paypal}prestashop>paypal_de79de54313d8b57cd45c840d196b7d0'] = 'Per usare una delle soluzioni PayPal, devi impostare i parametri API nella sezione Impostazioni.';
$_MODULE['<{paypal}prestashop>paypal_79f53a401ee04dbc765d0ba9a951a106'] = 'Modalità Sandbox (test) ';
$_MODULE['<{paypal}prestashop>paypal_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Attivo ';
$_MODULE['<{paypal}prestashop>paypal_3cab03c00dbd11bc3569afa0748013f0'] = 'Non attivo ';
$_MODULE['<{paypal}prestashop>paypal_4dbcb38bbbff5d4a402f2575c57a35e6'] = 'Tipo di pagamento ';
$_MODULE['<{paypal}prestashop>paypal_5bc5650bfb4c1eb3887ea80e7802301f'] = 'Diretto (vendite)';
$_MODULE['<{paypal}prestashop>paypal_6dd446781e32f1a989396e93db70437d'] = 'Autorizzazione / riscossione';
$_MODULE['<{paypal}prestashop>paypal_7186106a954f390f62860c11c8ba10d5'] = '(Invio pagamento) ';
$_MODULE['<{paypal}prestashop>paypal_3cf5408a4a41b56c6fd7878a070b76ff'] = 'Email associata al conto PayPal ';
$_MODULE['<{paypal}prestashop>paypal_467008be031b7e1a913395f53556fea8'] = 'Attivazione chiamate API ';
$_MODULE['<{paypal}prestashop>paypal_11931512987fbd1b884da55f13273a07'] = 'Nome utente API ';
$_MODULE['<{paypal}prestashop>paypal_5e07b6956454390018af63962ef4a3f6'] = 'Password API ';
$_MODULE['<{paypal}prestashop>paypal_1c1357865e46a07448c95ebca39d4541'] = 'Lasciare vuoto se la password non è stata modificata ';
$_MODULE['<{paypal}prestashop>paypal_e1ededd62537e048b815f70cc971bec8'] = 'Firma API ';
$_MODULE['<{paypal}prestashop>paypal_52c59dac7b7ebfa8a0d78c98f2bc0225'] = 'Clicca qui per maggiori informazioni su come creare username, password e firma API. ';
$_MODULE['<{paypal}prestashop>paypal_e28b278d67eeecfad67e76ec78fc13e8'] = 'Loghi e personalizzazioni';
$_MODULE['<{paypal}prestashop>paypal_ee0174ba1fc039128d0a38074a7af945'] = 'URL del Banner';
$_MODULE['<{paypal}prestashop>paypal_4c1c997e72e71eb6f690a9cd3dacb1f4'] = 'L\'immagine deve essere ospitata su un server sicuro (https). Max.: 750x90 pixel ';
$_MODULE['<{paypal}prestashop>paypal_091878185fc791198ac80982860b21ed'] = 'Modello scelto per PayPal Pro ';
$_MODULE['<{paypal}prestashop>paypal_cd8d30bc59ccf92028335d7e69e29905'] = 'Clicca qui per maggiori informazioni su come personalizzare questo modello ';
$_MODULE['<{paypal}prestashop>paypal_9518e6d551f7dc752b24af3629e849f9'] = 'Aprire un conto PayPal ';
$_MODULE['<{paypal}prestashop>paypal_4c9ef5964631b6d4b38f5f2f77d1be74'] = 'Se crei il tuo conto PayPal cliccando sull\'immagine sottostante, ci aiuti a migliorare il software PrestaShop:';
$_MODULE['<{paypal}prestashop>paypal_1569f6a31ff61f45c5ba13d7cab7e042'] = 'Questo modulo ti consente di accettare pagamenti con PayPal. ';
$_MODULE['<{paypal}prestashop>paypal_3c4cb777e8df15388c680354569636b6'] = 'Se il cliente sceglie questo metodo di pagamento, l\'importo sarà accreditato automaticamente sul tuo conto PayPal.';
$_MODULE['<{paypal}prestashop>paypal_f9b49f93306d28e3dec595c3b89c926d'] = 'È necessario configurare il proprio conto PayPal prima di utilizzare questo modulo.';
$_MODULE['<{paypal}prestashop>paypal_57487012438fe78ae1d462e53a91bfc0'] = 'la soluzione non è valida. ';
$_MODULE['<{paypal}prestashop>paypal_f629bddb66252b97da3e7e5346697955'] = 'devi indicare almeno le informazioni sul conto ';
$_MODULE['<{paypal}prestashop>paypal_909d37302176080797966972da84b4e7'] = 'e-mail non valida';
$_MODULE['<{paypal}prestashop>paypal_2fa631ec6f6afeac6335f3261181063f'] = 'L\'URL del banner non è valido ';
$_MODULE['<{paypal}prestashop>paypal_19ea461c401bd941bf47a8bc01eecd6c'] = 'URL del banner deve utilizzare il protocollo HTTPS';
$_MODULE['<{paypal}prestashop>paypal_b8822117a8cc930315a50bab7f6a4c80'] = 'il modello PayPal non è valido ';
$_MODULE['<{paypal}prestashop>paypal_b02186eee414487a068584dc0d177ad2'] = 'non puoi usare Autorizzazione e riscossione se non hai le credenziali API';
$_MODULE['<{paypal}prestashop>paypal_17fcef6818690d11d7caaab023ecdcff'] = 'non puoi usare questa soluzione se non hai le credenziali API ';
$_MODULE['<{paypal}prestashop>paypal_30e4e115bfc5e140782fd9cb01be6898'] = 'non puoi usare Pagamento express se non hai le credenziali API ';
$_MODULE['<{paypal}prestashop>paypal_c888438d14855d7d96a2724ee9c306bd'] = 'Le impostazioni sono aggiornate ';
$_MODULE['<{paypal}prestashop>paypal_67c0e5ec07dd31dc74aaf55d6a72da31'] = 'La richiesta dello stato del pagamento ha generato un errore ';
$_MODULE['<{paypal}prestashop>paypal_ec53a8c4f07baed5d8825072c89799be'] = 'Stato ';
$_MODULE['<{paypal}prestashop>paypal_ccb168b5a6a86eb100dc2dee754a316b'] = 'Motivo: ';
$_MODULE['<{paypal}prestashop>paypal_4f3acf5bcd7152fd301550bec6d0ffac'] = 'Errore di PayPal: ';
$_MODULE['<{paypal}prestashop>paypal_a0d09826326fd385f6ceb17442f290de'] = 'La richiesta di riscossione ha generato un errore ';
$_MODULE['<{paypal}prestashop>paypal_e03187f3f9d6eda06a2a7c201f58cdca'] = 'La richiesta di rimborso ha generato un errore ';
$_MODULE['<{paypal}prestashop>paypal_e5d5d9f40763cfe6549bef705e3529a7'] = 'Il messaggio di pagamento non è valido, rivedi il tuo modulo. ';
$_MODULE['<{paypal}prestashop>paypal_eec39bf42bd135971fb2d838c67d1449'] = 'Risultato dell\'operazione di rimborso: ';
$_MODULE['<{paypal}prestashop>paypal_2ab62d1a578713d0862b56819295630e'] = 'Rimborso PayPal completato. ';
$_MODULE['<{paypal}prestashop>paypal_a64db959966ba8d07c8b5d9493fcc21f'] = 'Errore durante la transazione ';
$_MODULE['<{paypal}prestashop>paypal_67962779da962e3d4225055afc05e7bd'] = 'Risultato operazione di riscossione: ';
$_MODULE['<{paypal}prestashop>paypal_5a05744b8ccb5909bc83355092e0f3fa'] = 'Stato della verifica: ';
$_MODULE['<{paypal}prestashop>paypalconnect_d1f14cc4a2dade80c92421d26422fea0'] = 'Fare nuova connessione';
$_MODULE['<{paypal}prestashop>paypalconnect_94a27811a721ef512ad7bfa06cab34e0'] = 'Connessione non riuscita con metodo CURL';
$_MODULE['<{paypal}prestashop>paypalconnect_70215486455daee13382c68b1a230b82'] = 'Connessione con metodo CURL riuscita';
$_MODULE['<{paypal}prestashop>paypalconnect_e4c4ad49bced42265b5facc2175cdafd'] = 'Invio di questo param.:';
$_MODULE['<{paypal}prestashop>paypalconnect_445583f6641da98fc7ac8fd9d13a564b'] = 'Invio con metodo CURL fallito! Errore:';
$_MODULE['<{paypal}prestashop>paypalconnect_ef4fbf36eaa2083442d386990ba063c2'] = 'Invio con metodo CURL riuscito';
$_MODULE['<{paypal}prestashop>paypalconnect_bf059c9751bb1a20b449b7917b1df374'] = 'Connessione non riuscita con metodo fsockopen';
$_MODULE['<{paypal}prestashop>paypalconnect_ea800e3536f81238a4cbc32eb6db4eaf'] = 'Connettiti con metodo fsockopen riuscita';
$_MODULE['<{paypal}prestashop>paypalconnect_6e9aa4cb541e09b07602d4ea96080811'] = 'Invio con metodo fsockopen non riuscito!';
$_MODULE['<{paypal}prestashop>paypalconnect_842a183be225d415b2b4375ba1dd1c94'] = 'Invio con metodo fsockopen riuscito';
$_MODULE['<{paypal}prestashop>paypallib_7c2d00d8c94d1ce0f515db8b0481db40'] = 'risposta di PayPal:';
$_MODULE['<{paypal}prestashop>authentication_cd42c6dd6cc4cd65cb5e13b729050469'] = 'Controlla le tue informazioni';
$_MODULE['<{paypal}prestashop>authentication_6335a00a08fde0fbb8f6d6630cdadd92'] = 'I tuoi dati personali';
$_MODULE['<{paypal}prestashop>authentication_b78a3223503896721cca1303f776159b'] = 'Titolo';
$_MODULE['<{paypal}prestashop>authentication_127469a6b4253ebb77adccc0dd48461e'] = 'Sig.';
$_MODULE['<{paypal}prestashop>authentication_29e32764941c30d1bb41c601014fbdbd'] = 'Sig.ra';
$_MODULE['<{paypal}prestashop>authentication_20db0bfeecd8fe60533206a2b5e9891a'] = 'Nome';
$_MODULE['<{paypal}prestashop>authentication_8d3f5eff9c40ee315d452392bed5309b'] = 'Cognome';
$_MODULE['<{paypal}prestashop>authentication_1e884e3078d9978e216a027ecd57fb34'] = 'E-mail';
$_MODULE['<{paypal}prestashop>authentication_dc647eb65e6711e155375218212b3964'] = 'Password';
$_MODULE['<{paypal}prestashop>authentication_bf2957630c4209f61a388a08c2154915'] = '(5 caratteri min.)';
$_MODULE['<{paypal}prestashop>authentication_aac772216aecbeca0e86d06671fe985a'] = 'Compleanno';
$_MODULE['<{paypal}prestashop>authentication_86f5978d9b80124f509bdb71786e929e'] = 'Gennaio';
$_MODULE['<{paypal}prestashop>authentication_659e59f062c75f81259d22786d6c44aa'] = 'Febbraio';
$_MODULE['<{paypal}prestashop>authentication_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Marzo';
$_MODULE['<{paypal}prestashop>authentication_3fcf026bbfffb63fb24b8de9d0446949'] = 'Aprile';
$_MODULE['<{paypal}prestashop>authentication_195fbb57ffe7449796d23466085ce6d8'] = 'Maggio';
$_MODULE['<{paypal}prestashop>authentication_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Giugno';
$_MODULE['<{paypal}prestashop>authentication_1b539f6f34e8503c97f6d3421346b63c'] = 'Luglio';
$_MODULE['<{paypal}prestashop>authentication_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Agosto';
$_MODULE['<{paypal}prestashop>authentication_cc5d90569e1c8313c2b1c2aab1401174'] = 'Settembre';
$_MODULE['<{paypal}prestashop>authentication_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Ottobre';
$_MODULE['<{paypal}prestashop>authentication_7e823b37564da492ca1629b4732289a8'] = 'Novembre';
$_MODULE['<{paypal}prestashop>authentication_82331503174acbae012b2004f6431fa5'] = 'Dicembre';
$_MODULE['<{paypal}prestashop>authentication_6f6162d3a052bb330e9c60285c74c6c9'] = 'Iscriviti alla nostra newsletter';
$_MODULE['<{paypal}prestashop>authentication_ac135c86084a47630c9eadb4edd5ef75'] = 'Ricevere le offerte speciali dei nostri partner';
$_MODULE['<{paypal}prestashop>authentication_455175f3f5be6306247babb349c0515a'] = 'Il tuo indirizzo';
$_MODULE['<{paypal}prestashop>authentication_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Azienda';
$_MODULE['<{paypal}prestashop>authentication_dd7bf230fde8d4836917806aff6a6b27'] = 'Indirizzo';
$_MODULE['<{paypal}prestashop>authentication_783cb853aae6984e51583b3bb80c09d2'] = 'Indirizzo (2)';
$_MODULE['<{paypal}prestashop>authentication_9b514b51d03075005814a33edc74c958'] = 'CAP ';
$_MODULE['<{paypal}prestashop>authentication_57d056ed0984166336b7879c2af3657f'] = 'Città';
$_MODULE['<{paypal}prestashop>authentication_59716c97497eb9694541f7c3d37b1a4d'] = 'Paese';
$_MODULE['<{paypal}prestashop>authentication_46a2a41cc6e552044816a2d04634545d'] = 'Stato';
$_MODULE['<{paypal}prestashop>authentication_0f68b904e33d9ac04605aecc958bcf52'] = 'Ulteriori informazioni';
$_MODULE['<{paypal}prestashop>authentication_fe66abce284ec8589e7d791185b5c442'] = 'Telefono';
$_MODULE['<{paypal}prestashop>authentication_41c2fff4867cc204120f001e7af20f7a'] = 'Cellulare';
$_MODULE['<{paypal}prestashop>authentication_6c1c4d5a22e3d6ed8385e7287233396f'] = 'Assegna un titolo di indirizzo per riferimento futuro';
$_MODULE['<{paypal}prestashop>authentication_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Il mio indirizzo';
$_MODULE['<{paypal}prestashop>authentication_a0bfb8e59e6c13fc8d990781f77694fe'] = 'Continua';
$_MODULE['<{paypal}prestashop>authentication_19f823c6453c2b1ffd09cb715214813d'] = 'Campo obbligatorio';
$_MODULE['<{paypal}prestashop>login_b40ad46c25c153a3d2fde078c0e1b0f8'] = 'Accedi';
$_MODULE['<{paypal}prestashop>login_abc57016a138dea055e0d8be6358f84e'] = 'Questa e-mail è già stato registrata, effettua il login!';
$_MODULE['<{paypal}prestashop>login_8b5dd64ab8d0b8158906796b53a200e2'] = 'Indirizzo e-mail';
$_MODULE['<{paypal}prestashop>login_dc647eb65e6711e155375218212b3964'] = 'Password';
$_MODULE['<{paypal}prestashop>login_bffe9a3c9a7e00ba00a11749e022d911'] = 'Entra';
$_MODULE['<{paypal}prestashop>login_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Hai dimenticato la password?';
$_MODULE['<{paypal}prestashop>paypalexpress_b601224a2a6c61f38738ca903fb019a2'] = 'Non è un carrello valido';
$_MODULE['<{paypal}prestashop>paypalexpress_ee9dc1e678d54c517f481583c3fb2db8'] = 'Non è una valuta valida';
$_MODULE['<{paypal}prestashop>shopping_cart_aa91004934e1abdb620b5d0f0c18681c'] = 'Paga con PayPal Express Checkout';
$_MODULE['<{paypal}prestashop>submit_528d1f824243db48e40cb6223d32fa06'] = 'Nessun token dato da PayPal';
$_MODULE['<{paypal}prestashop>submit_795277047da13b4fc74e02e050b1a675'] = 'PayPal ha rinviato l\'errore';
$_MODULE['<{paypal}prestashop>submit_b4133f1ba03a914134a5281a08231078'] = 'Autorizzazione a PayPal non riuscita';
$_MODULE['<{paypal}prestashop>submit_4935b58d37fda5bd60acc510cb324342'] = 'Impossibile recuperare le informazioni del tuo conto PayPal';
$_MODULE['<{paypal}prestashop>submit_90aa7ebf75251f535a9bdd6ba671ae7a'] = 'Token dato da PayPal non è lo di quello del cookie';
$_MODULE['<{paypal}prestashop>paypal_dac2693baa5c5c9a5318609ed81c4f2a'] = 'Paga con PayPal';
$_MODULE['<{paypal}prestashop>payment_dac2693baa5c5c9a5318609ed81c4f2a'] = 'Paga con PayPal';
$_MODULE['<{paypal}prestashop>payment_a3f2caee6ef8e68fbd26e42d83f2bf65'] = 'Paga con il tuo conto PayPal, carta di credito (Visa, Mastercard ...), o carta di credito privata';
$_MODULE['<{paypal}prestashop>payment_b08008a2de4331ba13f006c9bcf37b62'] = 'Paga con il tuo conto PayPal';
$_MODULE['<{paypal}prestashop>paypalpayment_ee9dc1e678d54c517f481583c3fb2db8'] = 'Non è una valuta valida';
Binary file not shown.

Before

Width:  |  Height:  |  Size: 608 B

@@ -1,46 +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>Nachricht von {shop_name}</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>&nbsp;</td>
</tr>
<tr>
<td align="left">Hallo,</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td style="background-color: #db3484; color: #fff; font-size: 12px; font-weight: bold; padding: 0.5em 1em;" align="left">Fehlerbericht aus Ihrem PayPalAPI Modul</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td align="left"><strong>Bei einem Kunden ist ein Problem mit dem PayPalAPI Modul aufgetreten, lesen Sie den Bericht:</strong></td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td align="left">{logs}</td>
</tr>
<tr>
<td>&nbsp;</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> unterst&uuml;tzt von <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop&trade;</a></td>
</tr>
</tbody>
</table>
</body>
</html>
@@ -1,9 +0,0 @@
Hallo,
Fehlerbericht aus Ihrem PayPalAPI Modul
Bei einem Kunden ist ein Problem mit dem PayPalAPI Modul aufgetreten, lesen Sie den Bericht:
{logs}
{shop_url} powered by PrestaShop™
@@ -1,42 +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>Message from {shop_name}</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>&nbsp;</td></tr>
<tr>
<td align="left">Hi,</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Error reporting from your PayPalAPI module</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>A client has encountered a problem with the module PayPalAPI, see the report:</b>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
{logs}
</td>
</tr>
<tr><td>&nbsp;</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,9 +0,0 @@
Hi,
Error reporting from your PayPalAPI module
A client has encountered a problem with the module PayPalAPI, see the report:
{logs}
{shop_url} powered by PrestaShop™
@@ -1,47 +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>Message from {shop_name}</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>&nbsp;</td>
</tr>
<tr>
<td align="left">Hola,</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td style="background-color: #db3484; color: #fff; font-size: 12px; font-weight: bold; padding: 0.5em 1em;" align="left">Informe de error a partir de su m&oacute;dulo PayPalAPI</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td align="left"><strong>Un cliente ha encontrado un problema con el m&oacute;dulo PayPalAPI:</strong></td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td align="left">{logs}</td>
</tr>
<tr>
<td>&nbsp;</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> lanzado por <a style="text-decoration: none; color: #374953;" href="http://www.prestashop.com/">PrestaShop&trade;</a></td>
</tr>
</tbody>
</table>
</body>
</html>
@@ -1,9 +0,0 @@
Hola,
Informe de error a partir de su módulo PayPalAPI
Un cliente ha encontrado un problema con el módulo PayPalAPI:
{logs}
{shop_url} lanzado por PrestaShop™
@@ -1,42 +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>Message from {shop_name}</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>&nbsp;</td></tr>
<tr>
<td align="left">Bonjour,</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left" style="background-color:#DB3484; color:#FFF; font-size: 12px; font-weight:bold; padding: 0.5em 1em;">Rapport d'erreur &agrave; partir de votre module PayPalAPI</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
<b>Un client a rencontr&eacute; un probl&egrave;me avec le module PayPalAPI:</b>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<tr>
<td align="left">
{logs}
</td>
</tr>
<tr><td>&nbsp;</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> propuls&eacute; par <a href="http://www.prestashop.com/" style="text-decoration:none; color:#374953;">PrestaShop™</a>
</td>
</tr>
</table>
</body>
</html>
@@ -1,9 +0,0 @@
Bonjour,
Rapport d'erreur à partir de votre module PayPalAPI
Un client a rencontré un problème avec le module PayPalAPI:
{logs}
{shop_url} propulsé par PrestaShop™
@@ -1,46 +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>Messaggio da {shop_name}</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></td>
</tr>
<tr>
<td align="left">Salve,</td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td style="background-color: #db3484; color: #fff; font-size: 12px; font-weight: bold; padding: 0.5em 1em;" align="left">Errore dal tuo modulo PayPalAPI</td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td align="left"><strong>Un cliente ha avuto un problema con il modulo PayPalAPI, vedi il rapporto:</strong></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td align="left">{logs}</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&trade;</a></td>
</tr>
</tbody>
</table>
</body>
</html>
@@ -1,9 +0,0 @@
Salve,
Errore dal tuo modulo PayPalAPI
Un cliente ha avuto un problema con il modulo PayPalAPI, vedi il rapporto:
{logs}
{shop_url} powered by PrestaShop™
-38
View File
@@ -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
*}
<p class="payment_module" height="">
<a href="{$base_dir_ssl}modules/paypal/payment/submit.php" title="{l s='Pay with PayPal' mod='paypal'}">
<img src="{$logo}" alt="{l s='Pay with PayPal' mod='paypal'}" style="float:left;" />
<br />
{if $integral}
{l s='Pay with your PayPal account, credit card (CB, Visa, Mastercard...), or private credit card' mod='paypal'}
{else}
{l s='Pay with your PayPal account' mod='paypal'}
{/if}
<br style="clear:both" />
</a>
</p>
-88
View File
@@ -1,88 +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 PaypalPayment extends Paypal
{
protected $_logs = array();
public function getAuthorisation()
{
global $cookie, $cart;
// Getting cart informations
$currency = new Currency((int)($cart->id_currency));
if (!Validate::isLoadedObject($currency))
$this->_logs[] = $this->l('Not a valid currency');
if (sizeof($this->_logs))
return false;
// Making request
$vars = '?fromPayPal=1';
$returnURL = Tools::getShopDomainSsl(true, true).__PS_BASE_URI__.'modules/paypal/payment/submit.php'.$vars;
$cancelURL = Tools::getShopDomainSsl(true, true).__PS_BASE_URI__.'order.php';
$paymentAmount = (float)($cart->getOrderTotal());
$currencyCodeType = strval($currency->iso_code);
$paymentType = Configuration::get('PAYPAL_CAPTURE') == 1 ? 'Authorization' : 'Sale';
$request = '&Amt='.urlencode($paymentAmount).'&PAYMENTACTION='.urlencode($paymentType).'&ReturnUrl='.urlencode($returnURL).'&CANCELURL='.urlencode($cancelURL).'&CURRENCYCODE='.urlencode($currencyCodeType).'&NOSHIPPING=1';
if (Configuration::get('PAYPAL_PAYMENT_METHOD') == 0)
$request .= '&SOLUTIONTYPE=Sole&LANDINGPAGE=Billing';
else
$request .= '&SOLUTIONTYPE=Mark&LANDINGPAGE=Login';
$request .= '&LOCALECODE='.strtoupper(Language::getIsoById($cart->id_lang));
if (Configuration::get('PAYPAL_HEADER'))
$request .= '&HDRIMG='.urlencode(Configuration::get('PAYPAL_HEADER'));
// Customer informations
$customer = new Customer((int)$cart->id_customer);
$request .= '&EMAIL='.urlencode($customer->email);//customer
// address of delivery
$address = new Address((int)$cart->id_address_delivery);
$country = new Country((int)$address->id_country);
if ($address->id_state)
$state = new State((int)$address->id_state);
$request .= '&SHIPTONAME='.urlencode($address->firstname.' '.$address->lastname);
$request .= '&SHIPTOSTREET='.urlencode($address->address1);
$request .= '&SHIPTOSTREET2='.urlencode($address->address2);
$request .= '&SHIPTOCITY='.urlencode($address->city);
$request .= '&SHIPTOSTATE='.($address->id_state ? $state->iso_code : $country->iso_code);
$request .= '&SHIPTOZIP='.urlencode($address->postcode);
$request .= '&SHIPTOCOUNTRY='.urlencode($country->iso_code);
$request .= '&SHIPTOPHONENUM='.urlencode($address->phone);
$request .= '&ADDROVERRIDE=1';
// Calling PayPal API
include(_PS_MODULE_DIR_.'paypal/api/paypallib.php');
$ppAPI = new PaypalLib();
$result = $ppAPI->makeCall($this->getAPIURL(), $this->getAPIScript(), 'SetExpressCheckout', $request);
$this->_logs = array_merge($this->_logs, $ppAPI->getLogs());
return $result;
}
public function getLogs()
{
return $this->_logs;
}
}
-144
View File
@@ -1,144 +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
*/
$useSSL = true;
include_once(dirname(__FILE__).'/../../../config/config.inc.php');
include_once(dirname(__FILE__).'/../../../init.php');
include_once(_PS_MODULE_DIR_.'paypal/paypal.php');
include_once(_PS_MODULE_DIR_.'paypal/payment/paypalpayment.php');
$ppPayment = new PaypalPayment();
$errors = array();
// #####
// Functions
function getAuthorization()
{
global $ppPayment, $cookie, $cart;
$result = $ppPayment->getAuthorisation();
$logs = $ppPayment->getLogs();
if (is_array($result) AND sizeof($result))
{
if (strtoupper($result['ACK']) == 'SUCCESS')
{
if (isset($result['TOKEN']))
{
$cookie->paypal_token = strval($result['TOKEN']);
$cookie->paypal_token_date = time();
header('Location: https://'.$ppPayment->getPayPalURL().'/webscr&cmd=_express-checkout&token='.urldecode(strval($cookie->paypal_token)).'&useraction=commit');
exit;
}
else
$logs[] = '<b>'.$ppPayment->l('No token given by PayPal', 'submit').'</b>';
} else
$logs[] = '<b>'.$ppPayment->l('PayPal returned error', 'submit').'</b>';
}
$ppPayment->displayPayPalAPIError($ppPayment->l('Authorisation to PayPal failed', 'submit'), $logs);
}
function displayConfirm()
{
global $cookie, $smarty, $ppPayment, $cart;
if (!$cookie->isLogged(true))
die('Not logged');
unset($cookie->paypal_token);
if ($cart->id_currency != $ppPayment->getCurrency((int)$cart->id_currency)->id)
{
$cart->id_currency = (int)($ppPayment->getCurrency((int)$cart->id_currency)->id);
$cookie->id_currency = (int)($cart->id_currency);
$cart->update();
Tools::redirect('modules/'.$ppPayment->name.'/payment/submit.php');
}
// Display all and exit
include(_PS_ROOT_DIR_.'/header.php');
$smarty->assign(array(
'logo' => $ppPayment->getLogo(),
'cust_currency' => $cart->id_currency,
'currency' => $ppPayment->getCurrency((int)$cart->id_currency),
'total' => $cart->getOrderTotal(true, Cart::BOTH),
'this_path_ssl' => Tools::getShopDomainSsl(true, true).__PS_BASE_URI__.'modules/'. $ppPayment->name.'/',
'mode' => 'payment/'
));
echo $ppPayment->display('paypal.php', 'confirm.tpl');
include(_PS_ROOT_DIR_.'/footer.php');
die ;
}
function submitConfirm()
{
global $cookie, $smarty, $ppPayment, $cart;
if (!$cookie->isLogged(true))
die('Not logged');
elseif (!$id_currency = (int)(Tools::getValue('currency_payement')))
die('No currency');
elseif (!$cart->getOrderTotal(true, Cart::BOTH))
die('Empty cart');
$currency = new Currency((int)($id_currency));
if (!Validate::isLoadedObject($currency))
die('Invalid currency');
$cookie->id_currency = (int)($id_currency);
getAuthorization();
}
function validOrder()
{
global $cookie, $cart, $ppPayment;
if (!$cookie->isLogged(true))
die('Not logged');
elseif (!$cart->getOrderTotal(true, Cart::BOTH))
die('Empty cart');
if (!$token = Tools::htmlentitiesUTF8(strval(Tools::getValue('token'))))
die('Invalid token');
if ($token != strval($cookie->paypal_token))
die('Invalid cookie token');
if (!$payerID = Tools::htmlentitiesUTF8(strval(Tools::getValue('PayerID'))))
die('Invalid payerID');
$ppPayment->makePayPalAPIValidation($cookie, $cart, $cart->id_currency, $payerID, 'payment');
}
// #####
// Process !!
// No submit, confirmation page
if (!Tools::isSubmit('submitPayment') AND !Tools::getValue('fromPayPal'))
displayConfirm();
else
{
if (!isset($cookie->paypal_token) OR !$cookie->paypal_token)
submitConfirm();
validOrder();
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

File diff suppressed because it is too large Load Diff
Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

-32
View File
@@ -1,32 +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
*}
<p class="payment_module">
<a href="modules/paypal/standard/redirect.php" title="{l s='Pay with PayPal' mod='paypal'}">
<img src="{$base_dir_ssl}modules/paypal/paypal.gif" alt="{l s='Pay with PayPal' mod='paypal'}" />
{l s='Pay with PayPal' mod='paypal'}
</a>
</p>
-89
View File
@@ -1,89 +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__).'/../paypal.php');
$paypal = new Paypal();
$cart = new Cart((int)($cookie->id_cart));
$address = new Address((int)($cart->id_address_delivery));
$country = new Country((int)($address->id_country));
$state = NULL;
if ($address->id_state)
$state = new State((int)($address->id_state));
$customer = new Customer((int)($cart->id_customer));
$business = Configuration::get('PAYPAL_BUSINESS');
$header = Configuration::get('PAYPAL_HEADER');
$currency_order = new Currency((int)($cart->id_currency));
$currency_module = $paypal->getCurrency((int)($cart->id_currency));
if (empty($business) OR !Validate::isEmail($business))
die($paypal->getL('Paypal error: (invalid or undefined business account email)'));
if (!Validate::isLoadedObject($address) OR !Validate::isLoadedObject($customer) OR !Validate::isLoadedObject($currency_module))
die($paypal->getL('Paypal error: (invalid address or customer)'));
// check currency of payment
if ($currency_order->id != $currency_module->id)
{
$cookie->id_currency = $currency_module->id;
$cart->id_currency = $currency_module->id;
$cart->update();
}
$smarty->assign(array(
'redirect_text' => $paypal->getL('Please wait, redirecting to Paypal... Thanks.'),
'cancel_text' => $paypal->getL('Cancel'),
'cart_text' => $paypal->getL('My cart'),
'return_text' => $paypal->getL('Return to shop'),
'paypal_url' => $paypal->getPaypalStandardUrl(),
'address' => $address,
'country' => $country,
'state' => $state,
'amount' => (float)($cart->getOrderTotal(true, Cart::BOTH_WITHOUT_SHIPPING)),
'customer' => $customer,
'total' => (float)($cart->getOrderTotal(true, Cart::BOTH)),
'shipping' => Tools::ps_round((float)($cart->getOrderShippingCost()) + (float)($cart->getOrderTotal(true, Cart::ONLY_WRAPPING)), 2),
'discount' => $cart->getOrderTotal(true, Cart::ONLY_DISCOUNTS),
'business' => $business,
'currency_module' => $currency_module,
'cart_id' => (int)($cart->id).'_'.pSQL($cart->secure_key),
'products' => $cart->getProducts(),
'paypal_id' => (int)($paypal->id),
'header' => $header,
'url' => Tools::getShopDomain(true, true).__PS_BASE_URI__
));
if (is_file(_PS_THEME_DIR_.'modules/paypal/standard/redirect.tpl'))
$smarty->display(_PS_THEME_DIR_.'modules/'.$paypal->name.'/standard/redirect.tpl');
else
$smarty->display(_PS_MODULE_DIR_.$paypal->name.'/standard/redirect.tpl');
-90
View File
@@ -1,90 +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
*}
<html>
<head>
<title>PayPal</title>
<script type="text/javascript" src="{$url}js/jquery/jquery-1.4.4.min.js"></script>
</head>
<body>
<p>{$redirect_text}<br /><a href="javascript:history.go(-1);">{$cancel_text}</a></p>
<form action="{$paypal_url}" method="post" id="paypal_form" class="hidden">
<input type="hidden" name="upload" value="1" />
<input type="hidden" name="address_override" value="0" />
<input type="hidden" name="first_name" value="{$address->firstname|escape:'htmlall':'UTF-8'}" />
<input type="hidden" name="last_name" value="{$address->lastname|escape:'htmlall':'UTF-8'}" />
<input type="hidden" name="address1" value="{$address->address1|escape:'htmlall':'UTF-8'}" />
{if $address->address2 != NULL}
<input type="hidden" name="address2" value="{$address->address2|escape:'htmlall':'UTF-8'}" />
{/if}
<input type="hidden" name="city" value="{$address->city|escape:'htmlall':'UTF-8'}" />
<input type="hidden" name="zip" value="{$address->postcode}" />
<input type="hidden" name="country" value="{$country->iso_code}" />
{if $state != NULL}
<input type="hidden" name="state" value="{$state->iso_code}" />
{/if}
<input type="hidden" name="amount" value="{$amount}" />
<input type="hidden" name="email" value="{$customer->email}" />
{if !$discount}
{foreach from=$products key=k item=product}
<input type="hidden" name="item_name_{$k+1}" value="{$product.name|escape:'htmlall':'UTF-8'}{if isset($product.attributes)} - {$product.attributes|escape:'htmlall':'UTF-8'}{/if}" />
<input type="hidden" name="amount_{$k+1}" value="{$product.price_wt}" />
<input type="hidden" name="quantity_{$k+1}" value="{$product.cart_quantity}" />
{/foreach}
<input type="hidden" name="shipping_1" value="{$shipping}" />
{else}
<input type="hidden" name="item_name_1" value="{$cart_text}" />
<input type="hidden" name="amount_1" value="{$total}" />
<input type="hidden" name="quantity_1" value="1" />
{/if}
<input type="hidden" name="business" value="{$business}" />
<input type="hidden" name="receiver_email" value="{$business}" />
<input type="hidden" name="cmd" value="_cart" />
<input type="hidden" name="charset" value="utf-8" />
<input type="hidden" name="currency_code" value="{$currency_module->iso_code}" />
<input type="hidden" name="payer_id" value="{$customer->id}" />
<input type="hidden" name="payer_email" value="{$customer->email}" />
<input type="hidden" name="custom" value="{$cart_id}" />
<input type="hidden" name="return" value="{$url}order-confirmation.php?key={$customer->secure_key}&amp;id_cart={$cart_id}&amp;id_module={$paypal_id}&amp;slowvalidation" />
<input type="hidden" name="cancel_return" value="{$url}" />
<input type="hidden" name="notify_url" value="{$url}modules/paypal/validation.php" />
{if $header != NULL}
<input type="hidden" name="cpp_header_image" value="{$header}" />
{/if}
<input type="hidden" name="rm" value="2" />
<input type="hidden" name="bn" value="PRESTASHOP_WPS" />
<input type="hidden" name="cbt" value="{$return_text}" />
<input type="hidden" name="image_url" value="{$url}img/logo.jpg" />
</form>
<script type="text/javascript">
{literal}
$(document).ready(function() {
$('#paypal_form').submit();
});
{/literal}
</script>
</body>
</html>
-139
View File
@@ -1,139 +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__).'/paypal.php');
$errors = '';
$result = false;
$paypal = new Paypal();
// Fill params
$params = 'cmd=_notify-validate';
foreach ($_POST AS $key => $value)
$params .= '&'.$key.'='.urlencode(stripslashes($value));
// PayPal Server
$paypalServer = 'www.'.(Configuration::get('PAYPAL_SANDBOX') ? 'sandbox.' : '').'paypal.com';
// Getting PayPal data...
if (function_exists('curl_exec'))
{
// curl ready
$ch = curl_init('https://' . $paypalServer . '/cgi-bin/webscr');
// If the above fails, then try the url with a trailing slash (fixes problems on some servers)
if (!$ch)
$ch = curl_init('https://' . $paypalServer . '/cgi-bin/webscr/');
if (!$ch)
$errors .= $paypal->getL('connect').' '.$paypal->getL('curlmethodfailed');
else
{
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
if (strtoupper($result) != 'VERIFIED')
$errors .= $paypal->getL('curlmethod').$result.' cURL error:'.curl_error($ch);
curl_close($ch);
}
}
elseif (($fp = @fsockopen('ssl://' . $paypalServer, 443, $errno, $errstr, 30)) || ($fp = @fsockopen($paypalServer, 80, $errno, $errstr, 30)))
{
// fsockopen ready
$header = 'POST /cgi-bin/webscr HTTP/1.0'."\r\n" .
'Host: '.$paypalServer."\r\n".
'Content-Type: application/x-www-form-urlencoded'."\r\n".
'Content-Length: '.Tools::strlen($params)."\r\n".
'Connection: close'."\r\n\r\n";
fputs($fp, $header.$params);
$read = '';
while (!feof($fp))
{
$reading = trim(fgets($fp, 1024));
$read .= $reading;
if (strtoupper($reading) == 'VERIFIED' OR strtoupper($reading) == 'INVALID')
{
$result = $reading;
break;
}
}
if (strtoupper($result) != 'VERIFIED')
$errors .= $paypal->getL('socketmethod').$result;
fclose($fp);
}
else
$errors = $paypal->getL('connect').$paypal->getL('nomethod');
if (isset($_POST['custom']))
$cart_secure = explode('_', $_POST['custom']);
else
$cart_secure = array();
// Printing errors...
if (strtoupper($result) == 'VERIFIED')
{
if (!isset($_POST['mc_gross']))
$errors .= $paypal->getL('mc_gross').'<br />';
if (!isset($_POST['payment_status']))
$errors .= $paypal->getL('payment_status').'<br />';
elseif (strtoupper($_POST['payment_status']) != 'COMPLETED')
$errors .= $paypal->getL('payment').$_POST['payment_status'].'<br />';
if (!isset($_POST['custom']))
$errors .= $paypal->getL('custom').'<br />';
if (!isset($_POST['txn_id']))
$errors .= $paypal->getL('txn_id').'<br />';
if (!isset($_POST['mc_currency']))
$errors .= $paypal->getL('mc_currency').'<br />';
if (empty($errors))
{
$cart = new Cart((int)($cart_secure[0]));
if (!$cart->id)
$errors = $paypal->getL('cart').'<br />';
elseif (Order::getOrderByCartId((int)($cart_secure[0])))
$errors = $paypal->getL('order').'<br />';
else
$paypal->validateOrder((int)$cart_secure[0], _PS_OS_PAYMENT_, (float)($_POST['mc_gross']), $paypal->displayName, $paypal->getL('transaction').$_POST['txn_id'], array('transaction_id' => $_POST['txn_id'], 'payment_status' => $_POST['payment_status']), NULL, false, $cart_secure[1]);
}
}
else
$errors .= $paypal->getL('verified');
if (!empty($errors) AND isset($_POST['custom']))
{
if (strtoupper($_POST['payment_status']) == 'PENDING')
$paypal->validateOrder((int)$cart_secure[0], _PS_OS_PAYPAL_, (float)($_POST['mc_gross']), $paypal->displayName, $paypal->getL('transaction').$_POST['txn_id'].'<br />'.$errors, array('transaction_id' => $_POST['txn_id'], 'payment_status' => $_POST['payment_status']), NULL, false, $cart_secure[1]);
else
$paypal->validateOrder((int)$cart_secure[0], _PS_OS_ERROR_, 0, $paypal->displayName, $errors.'<br />', array(), NULL, false, $cart_secure[1]);
}