Version Notes
# Improvements
- Support for France, Italy and Spain
- Support for PHP 7
- Configurable store name in API calls
# Changes
- `Amazon Payments` re-branding
# Fixes
- Fixed legacy payment method bug when trying to list all payment methods
- Fixed missing `original_price` and `base_original_price` item's attributes after order is placed
- Added missing return statement to the IPN controller
Download this release
Release Info
Developer | creativestyle GmbH |
Extension | Creativestyle_AmazonPayments |
Version | 1.8.4 |
Comparing to | |
See all releases |
Code changes from version 1.8.2 to 1.8.4
- app/code/community/Creativestyle/AmazonPayments/Block/Abstract.php +5 -1
- app/code/community/Creativestyle/AmazonPayments/Block/Adminhtml/Log/Api.php +1 -1
- app/code/community/Creativestyle/AmazonPayments/Block/Adminhtml/Log/Api/View.php +1 -1
- app/code/community/Creativestyle/AmazonPayments/Block/Adminhtml/Log/Exception.php +1 -1
- app/code/community/Creativestyle/AmazonPayments/Block/Adminhtml/Log/Exception/View.php +2 -2
- app/code/community/Creativestyle/AmazonPayments/Block/Adminhtml/Register.php +1 -1
- app/code/community/Creativestyle/AmazonPayments/Block/Js.php +1 -1
- app/code/community/Creativestyle/AmazonPayments/Block/Onepage/Button.php +8 -0
- app/code/community/Creativestyle/AmazonPayments/Block/Pay/Abstract.php +1 -1
- app/code/community/Creativestyle/AmazonPayments/Helper/Debug.php +2 -2
- app/code/community/Creativestyle/AmazonPayments/Model/Checkout.php +16 -0
- app/code/community/Creativestyle/AmazonPayments/Model/Config.php +25 -0
- app/code/community/Creativestyle/AmazonPayments/Model/Logger.php +3 -3
- app/code/community/Creativestyle/AmazonPayments/Model/Lookup/Design/Button/Type/Pay.php +1 -1
- app/code/community/Creativestyle/AmazonPayments/Model/Lookup/Language.php +6 -6
- app/code/community/Creativestyle/AmazonPayments/Model/Payment/Abstract.php +3 -4
- app/code/community/Creativestyle/AmazonPayments/Model/Payment/Legacy.php +2 -4
- app/code/community/Creativestyle/AmazonPayments/Model/Processor/Ipn.php +2 -1
- app/code/community/Creativestyle/AmazonPayments/Model/Processor/Payment.php +11 -2
- app/code/community/Creativestyle/AmazonPayments/controllers/Adminhtml/Amazonpayments/DebugController.php +1 -1
- app/code/community/Creativestyle/AmazonPayments/controllers/Adminhtml/Amazonpayments/Log/ApiController.php +3 -3
- app/code/community/Creativestyle/AmazonPayments/controllers/Adminhtml/Amazonpayments/Log/ExceptionController.php +3 -3
- app/code/community/Creativestyle/AmazonPayments/controllers/Adminhtml/Amazonpayments/Log/IpnController.php +3 -3
- app/code/community/Creativestyle/AmazonPayments/controllers/Advanced/CheckoutController.php +4 -1
- app/code/community/Creativestyle/AmazonPayments/controllers/Advanced/IpnController.php +1 -0
- app/code/community/Creativestyle/AmazonPayments/etc/adminhtml.xml +3 -3
- app/code/community/Creativestyle/AmazonPayments/etc/config.xml +11 -9
- app/code/community/Creativestyle/AmazonPayments/etc/system.xml +26 -10
- app/design/adminhtml/default/default/template/creativestyle/amazonpayments/info.phtml +7 -7
- app/design/adminhtml/default/default/template/creativestyle/amazonpayments/notifications.phtml +1 -1
- app/design/frontend/base/default/template/creativestyle/amazonpayments/button/js.phtml +2 -2
- app/design/frontend/base/default/template/creativestyle/amazonpayments/checkout.phtml +1 -1
- app/design/frontend/base/default/template/creativestyle/amazonpayments/login/button/account_login.phtml +2 -2
- app/design/frontend/base/default/template/creativestyle/amazonpayments/onepage/button.phtml +3 -3
- app/locale/de_DE/Creativestyle_AmazonPayments.csv +22 -19
- app/locale/en_GB/Creativestyle_AmazonPayments.csv +23 -20
- app/locale/en_US/Creativestyle_AmazonPayments.csv +22 -19
- app/locale/es_ES/Creativestyle_AmazonPayments.csv +23 -20
- app/locale/fr_FR/Creativestyle_AmazonPayments.csv +22 -19
- app/locale/it_IT/Creativestyle_AmazonPayments.csv +22 -19
- js/creativestyle/adminhtml/amazonpayments.min.js +1 -1
- package.xml +13 -11
app/code/community/Creativestyle/AmazonPayments/Block/Abstract.php
CHANGED
@@ -128,7 +128,11 @@ abstract class Creativestyle_AmazonPayments_Block_Abstract extends Mage_Core_Blo
|
|
128 |
}
|
129 |
|
130 |
public function isLoginActive() {
|
131 |
-
return
|
|
|
|
|
|
|
|
|
132 |
}
|
133 |
|
134 |
public function isLive() {
|
128 |
}
|
129 |
|
130 |
public function isLoginActive() {
|
131 |
+
return $this->_getConfig()->isLoginActive();
|
132 |
+
}
|
133 |
+
|
134 |
+
public function isPayActive() {
|
135 |
+
return $this->_getConfig()->isPayActive();
|
136 |
}
|
137 |
|
138 |
public function isLive() {
|
app/code/community/Creativestyle/AmazonPayments/Block/Adminhtml/Log/Api.php
CHANGED
@@ -20,7 +20,7 @@ class Creativestyle_AmazonPayments_Block_Adminhtml_Log_Api extends Creativestyle
|
|
20 |
public function __construct() {
|
21 |
parent::__construct();
|
22 |
$this->_controller = 'adminhtml_log_api';
|
23 |
-
$this->_headerText = Mage::helper('amazonpayments')->__('Pay
|
24 |
}
|
25 |
|
26 |
}
|
20 |
public function __construct() {
|
21 |
parent::__construct();
|
22 |
$this->_controller = 'adminhtml_log_api';
|
23 |
+
$this->_headerText = Mage::helper('amazonpayments')->__('Amazon Pay API Calls');
|
24 |
}
|
25 |
|
26 |
}
|
app/code/community/Creativestyle/AmazonPayments/Block/Adminhtml/Log/Api/View.php
CHANGED
@@ -18,7 +18,7 @@ class Creativestyle_AmazonPayments_Block_Adminhtml_Log_Api_View extends Creative
|
|
18 |
public function __construct() {
|
19 |
parent::__construct();
|
20 |
$this->_controller = 'adminhtml_log_api';
|
21 |
-
$this->_headerText = $this->__('Pay
|
22 |
$this->setTemplate('creativestyle/amazonpayments/advanced/log/api/view.phtml');
|
23 |
}
|
24 |
|
18 |
public function __construct() {
|
19 |
parent::__construct();
|
20 |
$this->_controller = 'adminhtml_log_api';
|
21 |
+
$this->_headerText = $this->__('Amazon Pay API Call');
|
22 |
$this->setTemplate('creativestyle/amazonpayments/advanced/log/api/view.phtml');
|
23 |
}
|
24 |
|
app/code/community/Creativestyle/AmazonPayments/Block/Adminhtml/Log/Exception.php
CHANGED
@@ -20,7 +20,7 @@ class Creativestyle_AmazonPayments_Block_Adminhtml_Log_Exception extends Creativ
|
|
20 |
public function __construct() {
|
21 |
parent::__construct();
|
22 |
$this->_controller = 'adminhtml_log_exception';
|
23 |
-
$this->_headerText = Mage::helper('amazonpayments')->__('Pay
|
24 |
}
|
25 |
|
26 |
}
|
20 |
public function __construct() {
|
21 |
parent::__construct();
|
22 |
$this->_controller = 'adminhtml_log_exception';
|
23 |
+
$this->_headerText = Mage::helper('amazonpayments')->__('Amazon Pay Exceptions');
|
24 |
}
|
25 |
|
26 |
}
|
app/code/community/Creativestyle/AmazonPayments/Block/Adminhtml/Log/Exception/View.php
CHANGED
@@ -18,14 +18,14 @@ class Creativestyle_AmazonPayments_Block_Adminhtml_Log_Exception_View extends Cr
|
|
18 |
public function __construct() {
|
19 |
parent::__construct();
|
20 |
$this->_controller = 'adminhtml_log_exception';
|
21 |
-
$this->_headerText = $this->__('Pay
|
22 |
$this->setTemplate('creativestyle/amazonpayments/advanced/log/exception/view.phtml');
|
23 |
}
|
24 |
|
25 |
public function setLog($model) {
|
26 |
parent::setLog($model);
|
27 |
if (is_object($model) && $model->getId()) {
|
28 |
-
$this->_headerText = $this->__('Pay
|
29 |
$this->getTimestamp()
|
30 |
);
|
31 |
}
|
18 |
public function __construct() {
|
19 |
parent::__construct();
|
20 |
$this->_controller = 'adminhtml_log_exception';
|
21 |
+
$this->_headerText = $this->__('Amazon Pay Exception');
|
22 |
$this->setTemplate('creativestyle/amazonpayments/advanced/log/exception/view.phtml');
|
23 |
}
|
24 |
|
25 |
public function setLog($model) {
|
26 |
parent::setLog($model);
|
27 |
if (is_object($model) && $model->getId()) {
|
28 |
+
$this->_headerText = $this->__('Amazon Pay Exception | %s',
|
29 |
$this->getTimestamp()
|
30 |
);
|
31 |
}
|
app/code/community/Creativestyle/AmazonPayments/Block/Adminhtml/Register.php
CHANGED
@@ -43,7 +43,7 @@ class Creativestyle_AmazonPayments_Block_Adminhtml_Register extends Mage_Adminht
|
|
43 |
}
|
44 |
|
45 |
public function getDefaultLanguage() {
|
46 |
-
return Mage::getSingleton('amazonpayments/lookup_language')->getLanguageByLocale(Mage::app()->getLocale()->getLocaleCode());
|
47 |
}
|
48 |
|
49 |
public function getState() {
|
43 |
}
|
44 |
|
45 |
public function getDefaultLanguage() {
|
46 |
+
return Mage::getSingleton('amazonpayments/lookup_language')->getLanguageByLocale(Mage::app()->getLocale()->getLocaleCode(), false);
|
47 |
}
|
48 |
|
49 |
public function getState() {
|
app/code/community/Creativestyle/AmazonPayments/Block/Js.php
CHANGED
@@ -63,7 +63,7 @@ class Creativestyle_AmazonPayments_Block_Js extends Creativestyle_AmazonPayments
|
|
63 |
foreach ($this->_callbacks as $callbackName => $callbackFunctions) {
|
64 |
if (is_array($callbackFunctions)) {
|
65 |
array_unshift($callbackFunctions, $callbackName . ' = function() {');
|
66 |
-
array_push($callbackFunctions, '}');
|
67 |
$output .= implode("\n", $callbackFunctions) . "\n\n";
|
68 |
}
|
69 |
}
|
63 |
foreach ($this->_callbacks as $callbackName => $callbackFunctions) {
|
64 |
if (is_array($callbackFunctions)) {
|
65 |
array_unshift($callbackFunctions, $callbackName . ' = function() {');
|
66 |
+
array_push($callbackFunctions, '};');
|
67 |
$output .= implode("\n", $callbackFunctions) . "\n\n";
|
68 |
}
|
69 |
}
|
app/code/community/Creativestyle/AmazonPayments/Block/Onepage/Button.php
CHANGED
@@ -15,6 +15,14 @@
|
|
15 |
*/
|
16 |
class Creativestyle_AmazonPayments_Block_Onepage_Button extends Creativestyle_AmazonPayments_Block_Abstract {
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
/**
|
19 |
* Render Amazon Payments button
|
20 |
*
|
15 |
*/
|
16 |
class Creativestyle_AmazonPayments_Block_Onepage_Button extends Creativestyle_AmazonPayments_Block_Abstract {
|
17 |
|
18 |
+
/**
|
19 |
+
* @return bool
|
20 |
+
*/
|
21 |
+
protected function _isActive()
|
22 |
+
{
|
23 |
+
return $this->isPayActive();
|
24 |
+
}
|
25 |
+
|
26 |
/**
|
27 |
* Render Amazon Payments button
|
28 |
*
|
app/code/community/Creativestyle/AmazonPayments/Block/Pay/Abstract.php
CHANGED
@@ -18,7 +18,7 @@ abstract class Creativestyle_AmazonPayments_Block_Pay_Abstract extends Creatives
|
|
18 |
protected $_widgetHtmlIdPrefix = 'payButtonWidget';
|
19 |
|
20 |
protected function _isActive() {
|
21 |
-
if (($this->_getConfig()->
|
22 |
&& $this->_getConfig()->isCurrentIpAllowed()
|
23 |
&& $this->_getConfig()->isCurrentLocaleAllowed()
|
24 |
&& ($this->_isConnectionSecure() || !$this->isPopup()))
|
18 |
protected $_widgetHtmlIdPrefix = 'payButtonWidget';
|
19 |
|
20 |
protected function _isActive() {
|
21 |
+
if (($this->_getConfig()->isPayActive())
|
22 |
&& $this->_getConfig()->isCurrentIpAllowed()
|
23 |
&& $this->_getConfig()->isCurrentLocaleAllowed()
|
24 |
&& ($this->_isConnectionSecure() || !$this->isPopup()))
|
app/code/community/Creativestyle/AmazonPayments/Helper/Debug.php
CHANGED
@@ -221,8 +221,8 @@ class Creativestyle_AmazonPayments_Helper_Debug extends Mage_Core_Helper_Abstrac
|
|
221 |
*/
|
222 |
protected function _getGeneralDebugData() {
|
223 |
return array(
|
224 |
-
'Pay
|
225 |
-
'Pay
|
226 |
? OffAmazonPaymentsService_Client::APPLICATION_LIBRARY_VERSION
|
227 |
: defined('OffAmazonPayments_OffAmazonPaymentsServiceUtils::APPLICATION_LIBRARY_VERSION')
|
228 |
? OffAmazonPayments_OffAmazonPaymentsServiceUtils::APPLICATION_LIBRARY_VERSION
|
221 |
*/
|
222 |
protected function _getGeneralDebugData() {
|
223 |
return array(
|
224 |
+
'Amazon Pay extension version' => (string)Mage::getConfig()->getNode('modules/Creativestyle_AmazonPayments/version'),
|
225 |
+
'Amazon Pay SDK library version' => defined('OffAmazonPaymentsService_Client::APPLICATION_LIBRARY_VERSION')
|
226 |
? OffAmazonPaymentsService_Client::APPLICATION_LIBRARY_VERSION
|
227 |
: defined('OffAmazonPayments_OffAmazonPaymentsServiceUtils::APPLICATION_LIBRARY_VERSION')
|
228 |
? OffAmazonPayments_OffAmazonPaymentsServiceUtils::APPLICATION_LIBRARY_VERSION
|
app/code/community/Creativestyle/AmazonPayments/Model/Checkout.php
CHANGED
@@ -34,6 +34,19 @@ class Creativestyle_AmazonPayments_Model_Checkout extends Mage_Checkout_Model_Ty
|
|
34 |
return $addressData;
|
35 |
}
|
36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
public function savePayment($data) {
|
38 |
$data = $this->_getPaymentMethod();
|
39 |
if ($this->getQuote()->isVirtual()) {
|
@@ -94,6 +107,8 @@ class Creativestyle_AmazonPayments_Model_Checkout extends Mage_Checkout_Model_Ty
|
|
94 |
$this->getCheckout()->setStepData('shipping', 'complete', true);
|
95 |
}
|
96 |
|
|
|
|
|
97 |
$this->getQuote()->collectTotals();
|
98 |
$this->getQuote()->save();
|
99 |
|
@@ -129,6 +144,7 @@ class Creativestyle_AmazonPayments_Model_Checkout extends Mage_Checkout_Model_Ty
|
|
129 |
}
|
130 |
|
131 |
public function saveOrder() {
|
|
|
132 |
$this->validate();
|
133 |
$isNewCustomer = false;
|
134 |
switch ($this->getCheckoutMethod()) {
|
34 |
return $addressData;
|
35 |
}
|
36 |
|
37 |
+
/**
|
38 |
+
* Sets cart coupon code from checkout to quote
|
39 |
+
*
|
40 |
+
* @return $this
|
41 |
+
*/
|
42 |
+
protected function _setCartCouponCode()
|
43 |
+
{
|
44 |
+
if ($couponCode = $this->getCheckout()->getCartCouponCode()) {
|
45 |
+
$this->getQuote()->setCouponCode($couponCode);
|
46 |
+
}
|
47 |
+
return $this;
|
48 |
+
}
|
49 |
+
|
50 |
public function savePayment($data) {
|
51 |
$data = $this->_getPaymentMethod();
|
52 |
if ($this->getQuote()->isVirtual()) {
|
107 |
$this->getCheckout()->setStepData('shipping', 'complete', true);
|
108 |
}
|
109 |
|
110 |
+
$this->_setCartCouponCode();
|
111 |
+
|
112 |
$this->getQuote()->collectTotals();
|
113 |
$this->getQuote()->save();
|
114 |
|
144 |
}
|
145 |
|
146 |
public function saveOrder() {
|
147 |
+
$this->getQuote()->collectTotals();
|
148 |
$this->validate();
|
149 |
$isNewCustomer = false;
|
150 |
switch ($this->getCheckoutMethod()) {
|
app/code/community/Creativestyle/AmazonPayments/Model/Config.php
CHANGED
@@ -35,6 +35,8 @@ class Creativestyle_AmazonPayments_Model_Config {
|
|
35 |
const XML_PATH_LOGIN_LANGUAGE = 'amazonpayments/general/language';
|
36 |
const XML_PATH_LOGIN_AUTHENTICATION = 'amazonpayments/general/authentication';
|
37 |
|
|
|
|
|
38 |
const XML_PATH_EMAIL_ORDER_CONFIRMATION = 'amazonpayments/email/order_confirmation';
|
39 |
const XML_PATH_EMAIL_DECLINED_TEMPLATE = 'amazonpayments/email/authorization_declined_template';
|
40 |
const XML_PATH_EMAIL_DECLINED_IDENTITY = 'amazonpayments/email/authorization_declined_identity';
|
@@ -140,6 +142,14 @@ class Creativestyle_AmazonPayments_Model_Config {
|
|
140 |
return $active;
|
141 |
}
|
142 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
public function isIpnActive($store = null) {
|
144 |
return Mage::getStoreConfigFlag(self::XML_PATH_GENERAL_IPN_ACTIVE, $store);
|
145 |
}
|
@@ -399,4 +409,19 @@ class Creativestyle_AmazonPayments_Model_Config {
|
|
399 |
return '';
|
400 |
}
|
401 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
}
|
35 |
const XML_PATH_LOGIN_LANGUAGE = 'amazonpayments/general/language';
|
36 |
const XML_PATH_LOGIN_AUTHENTICATION = 'amazonpayments/general/authentication';
|
37 |
|
38 |
+
const XML_PATH_STORE_NAME = 'amazonpayments/store/name';
|
39 |
+
|
40 |
const XML_PATH_EMAIL_ORDER_CONFIRMATION = 'amazonpayments/email/order_confirmation';
|
41 |
const XML_PATH_EMAIL_DECLINED_TEMPLATE = 'amazonpayments/email/authorization_declined_template';
|
42 |
const XML_PATH_EMAIL_DECLINED_IDENTITY = 'amazonpayments/email/authorization_declined_identity';
|
142 |
return $active;
|
143 |
}
|
144 |
|
145 |
+
public function isPayActive($store = null) {
|
146 |
+
return Mage::getStoreConfigFlag(self::XML_PATH_GENERAL_ACTIVE, $store);
|
147 |
+
}
|
148 |
+
|
149 |
+
public function isLoginActive($store = null) {
|
150 |
+
return Mage::getStoreConfigFlag(self::XML_PATH_LOGIN_ACTIVE, $store);
|
151 |
+
}
|
152 |
+
|
153 |
public function isIpnActive($store = null) {
|
154 |
return Mage::getStoreConfigFlag(self::XML_PATH_GENERAL_IPN_ACTIVE, $store);
|
155 |
}
|
409 |
return '';
|
410 |
}
|
411 |
|
412 |
+
/**
|
413 |
+
* @param null|string|bool|int|Mage_Core_Model_Store $store
|
414 |
+
* @return string
|
415 |
+
*/
|
416 |
+
public function getStoreName($store = null) {
|
417 |
+
$storeName = Mage::getStoreConfig(self::XML_PATH_STORE_NAME, $store);
|
418 |
+
$storeName = $storeName
|
419 |
+
? $storeName
|
420 |
+
: sprintf(
|
421 |
+
'%s (%s)',
|
422 |
+
Mage::app()->getStore($store)->getFrontendName(),
|
423 |
+
Mage::app()->getStore($store)->getName()
|
424 |
+
);
|
425 |
+
return $storeName;
|
426 |
+
}
|
427 |
}
|
app/code/community/Creativestyle/AmazonPayments/Model/Logger.php
CHANGED
@@ -70,7 +70,7 @@ final class Creativestyle_AmazonPayments_Model_Logger {
|
|
70 |
fputcsv($fileHandle, $callData, self::_getConfig()->getLogDelimiter(), self::_getConfig()->getLogEnclosure());
|
71 |
fclose($fileHandle);
|
72 |
} else {
|
73 |
-
Mage::log('PAY
|
74 |
}
|
75 |
}
|
76 |
}
|
@@ -103,7 +103,7 @@ final class Creativestyle_AmazonPayments_Model_Logger {
|
|
103 |
fputcsv($fileHandle, $callData, self::_getConfig()->getLogDelimiter(), self::_getConfig()->getLogEnclosure());
|
104 |
fclose($fileHandle);
|
105 |
} else {
|
106 |
-
Mage::log('PAY
|
107 |
}
|
108 |
}
|
109 |
}
|
@@ -125,7 +125,7 @@ final class Creativestyle_AmazonPayments_Model_Logger {
|
|
125 |
fputcsv($fileHandle, $exceptionData, self::_getConfig()->getLogDelimiter(), self::_getConfig()->getLogEnclosure());
|
126 |
fclose($fileHandle);
|
127 |
} else {
|
128 |
-
Mage::log('PAY
|
129 |
}
|
130 |
}
|
131 |
}
|
70 |
fputcsv($fileHandle, $callData, self::_getConfig()->getLogDelimiter(), self::_getConfig()->getLogEnclosure());
|
71 |
fclose($fileHandle);
|
72 |
} else {
|
73 |
+
Mage::log('AMAZON PAY: unable to open ' . self::getAbsoluteLogFilePath('api') . ' for writing.');
|
74 |
}
|
75 |
}
|
76 |
}
|
103 |
fputcsv($fileHandle, $callData, self::_getConfig()->getLogDelimiter(), self::_getConfig()->getLogEnclosure());
|
104 |
fclose($fileHandle);
|
105 |
} else {
|
106 |
+
Mage::log('AMAZON PAY: unable to open ' . self::getAbsoluteLogFilePath('ipn') . ' for writing.');
|
107 |
}
|
108 |
}
|
109 |
}
|
125 |
fputcsv($fileHandle, $exceptionData, self::_getConfig()->getLogDelimiter(), self::_getConfig()->getLogEnclosure());
|
126 |
fclose($fileHandle);
|
127 |
} else {
|
128 |
+
Mage::log('AMAZON PAY: unable to open ' . self::getAbsoluteLogFilePath('exception') . ' for writing.');
|
129 |
}
|
130 |
}
|
131 |
}
|
app/code/community/Creativestyle/AmazonPayments/Model/Lookup/Design/Button/Type/Pay.php
CHANGED
@@ -22,7 +22,7 @@ class Creativestyle_AmazonPayments_Model_Lookup_Design_Button_Type_Pay extends C
|
|
22 |
public function toOptionArray() {
|
23 |
if (null === $this->_options) {
|
24 |
$this->_options = array(
|
25 |
-
array('value' => self::TYPE_FULL, 'label' => Mage::helper('amazonpayments')->__('Pay
|
26 |
array('value' => self::TYPE_SHORT, 'label' => Mage::helper('amazonpayments')->__('Pay')),
|
27 |
array('value' => self::TYPE_LOGO, 'label' => Mage::helper('amazonpayments')->__('Amazon logo'))
|
28 |
);
|
22 |
public function toOptionArray() {
|
23 |
if (null === $this->_options) {
|
24 |
$this->_options = array(
|
25 |
+
array('value' => self::TYPE_FULL, 'label' => Mage::helper('amazonpayments')->__('Amazon Pay')),
|
26 |
array('value' => self::TYPE_SHORT, 'label' => Mage::helper('amazonpayments')->__('Pay')),
|
27 |
array('value' => self::TYPE_LOGO, 'label' => Mage::helper('amazonpayments')->__('Amazon logo'))
|
28 |
);
|
app/code/community/Creativestyle/AmazonPayments/Model/Lookup/Language.php
CHANGED
@@ -53,16 +53,16 @@ class Creativestyle_AmazonPayments_Model_Lookup_Language extends Creativestyle_A
|
|
53 |
return $this->_options;
|
54 |
}
|
55 |
|
56 |
-
public function getLanguageByLocale($locale) {
|
57 |
$allowedLanguages = array(self::LANGUAGE_EN_GB, self::LANGUAGE_DE_DE, self::LANGUAGE_FR_FR, self::LANGUAGE_IT_IT, self::LANGUAGE_ES_ES);
|
58 |
-
$
|
59 |
-
if (in_array($
|
60 |
-
return $locale;
|
61 |
}
|
62 |
-
$localeLanguage = substr($
|
63 |
foreach ($allowedLanguages as $allowedLanguage) {
|
64 |
if (false !== strpos($allowedLanguage, $localeLanguage)) {
|
65 |
-
return $allowedLanguage;
|
66 |
}
|
67 |
}
|
68 |
return null;
|
53 |
return $this->_options;
|
54 |
}
|
55 |
|
56 |
+
public function getLanguageByLocale($locale, $normalize = true) {
|
57 |
$allowedLanguages = array(self::LANGUAGE_EN_GB, self::LANGUAGE_DE_DE, self::LANGUAGE_FR_FR, self::LANGUAGE_IT_IT, self::LANGUAGE_ES_ES);
|
58 |
+
$localeNormalize = str_replace('_', '-', $locale);
|
59 |
+
if (in_array($localeNormalize, $allowedLanguages)) {
|
60 |
+
return $normalize ? $localeNormalize : $locale;
|
61 |
}
|
62 |
+
$localeLanguage = substr($localeNormalize, 0, 2);
|
63 |
foreach ($allowedLanguages as $allowedLanguage) {
|
64 |
if (false !== strpos($allowedLanguage, $localeLanguage)) {
|
65 |
+
return $normalize ? $allowedLanguage : str_replace('-', '_', $allowedLanguage);
|
66 |
}
|
67 |
}
|
68 |
return null;
|
app/code/community/Creativestyle/AmazonPayments/Model/Payment/Abstract.php
CHANGED
@@ -217,15 +217,16 @@ abstract class Creativestyle_AmazonPayments_Model_Payment_Abstract extends Mage_
|
|
217 |
* @param Mage_Payment_Model_Info $payment
|
218 |
* @param string $transactionId
|
219 |
* @param bool $shouldSave
|
220 |
-
*
|
221 |
* @return array|bool
|
|
|
222 |
*/
|
223 |
public function fetchTransactionInfo(Mage_Payment_Model_Info $payment, $transactionId, $shouldSave = true) {
|
224 |
$this->_initInfoInstance($payment);
|
225 |
if ($transaction = $payment->lookupTransaction($transactionId)) {
|
226 |
$transactionAdapter = $this->_getPaymentProcessor()->importTransactionDetails($transaction);
|
227 |
if ($transactionAdapter->getStatusChange()) {
|
228 |
-
$
|
|
|
229 |
if ($shouldSave) $this->_getOrderProcessor()->saveOrder();
|
230 |
} else {
|
231 |
$transactionAdapter->processRelatedObjects($this->getInfoInstance()->getOrder());
|
@@ -479,7 +480,6 @@ abstract class Creativestyle_AmazonPayments_Model_Payment_Abstract extends Mage_
|
|
479 |
* @return Mage_Payment_Model_Abstract
|
480 |
*/
|
481 |
public function cancel(Varien_Object $payment) {
|
482 |
-
Mage::log('cancel() method', null, 'apa_devel.log', true);
|
483 |
$this->_initInfoInstance($payment);
|
484 |
if ($orderTransaction = $payment->lookupTransaction(false, Mage_Sales_Model_Order_Payment_Transaction::TYPE_ORDER)) {
|
485 |
if (!$orderTransaction->getIsClosed()) {
|
@@ -499,7 +499,6 @@ abstract class Creativestyle_AmazonPayments_Model_Payment_Abstract extends Mage_
|
|
499 |
* @return Mage_Payment_Model_Abstract
|
500 |
*/
|
501 |
public function void(Varien_Object $payment) {
|
502 |
-
Mage::log('void() method', null, 'apa_devel.log', true);
|
503 |
$this->_initInfoInstance($payment);
|
504 |
if ($orderTransaction = $payment->lookupTransaction(false, Mage_Sales_Model_Order_Payment_Transaction::TYPE_ORDER)) {
|
505 |
if (!$orderTransaction->getIsClosed()) {
|
217 |
* @param Mage_Payment_Model_Info $payment
|
218 |
* @param string $transactionId
|
219 |
* @param bool $shouldSave
|
|
|
220 |
* @return array|bool
|
221 |
+
* @throws Creativestyle_AmazonPayments_Exception
|
222 |
*/
|
223 |
public function fetchTransactionInfo(Mage_Payment_Model_Info $payment, $transactionId, $shouldSave = true) {
|
224 |
$this->_initInfoInstance($payment);
|
225 |
if ($transaction = $payment->lookupTransaction($transactionId)) {
|
226 |
$transactionAdapter = $this->_getPaymentProcessor()->importTransactionDetails($transaction);
|
227 |
if ($transactionAdapter->getStatusChange()) {
|
228 |
+
$stateObject = new Varien_Object();
|
229 |
+
$this->_getOrderProcessor()->importTransactionDetails($transactionAdapter, $stateObject);
|
230 |
if ($shouldSave) $this->_getOrderProcessor()->saveOrder();
|
231 |
} else {
|
232 |
$transactionAdapter->processRelatedObjects($this->getInfoInstance()->getOrder());
|
480 |
* @return Mage_Payment_Model_Abstract
|
481 |
*/
|
482 |
public function cancel(Varien_Object $payment) {
|
|
|
483 |
$this->_initInfoInstance($payment);
|
484 |
if ($orderTransaction = $payment->lookupTransaction(false, Mage_Sales_Model_Order_Payment_Transaction::TYPE_ORDER)) {
|
485 |
if (!$orderTransaction->getIsClosed()) {
|
499 |
* @return Mage_Payment_Model_Abstract
|
500 |
*/
|
501 |
public function void(Varien_Object $payment) {
|
|
|
502 |
$this->_initInfoInstance($payment);
|
503 |
if ($orderTransaction = $payment->lookupTransaction(false, Mage_Sales_Model_Order_Payment_Transaction::TYPE_ORDER)) {
|
504 |
if (!$orderTransaction->getIsClosed()) {
|
app/code/community/Creativestyle/AmazonPayments/Model/Payment/Legacy.php
CHANGED
@@ -41,9 +41,7 @@ class Creativestyle_AmazonPayments_Model_Payment_Legacy extends Mage_Payment_Mod
|
|
41 |
}
|
42 |
|
43 |
public function getCode() {
|
44 |
-
|
45 |
-
return $this->getInfoInstance()->getMethod();
|
46 |
-
}
|
47 |
-
return $this->_code;
|
48 |
}
|
|
|
49 |
}
|
41 |
}
|
42 |
|
43 |
public function getCode() {
|
44 |
+
return $this->getId();
|
|
|
|
|
|
|
45 |
}
|
46 |
+
|
47 |
}
|
app/code/community/Creativestyle/AmazonPayments/Model/Processor/Ipn.php
CHANGED
@@ -119,9 +119,10 @@ class Creativestyle_AmazonPayments_Model_Processor_Ipn {
|
|
119 |
if ($payment && $transaction) {
|
120 |
$transactionAdapter = $this->_getPaymentProcessor($payment)->importTransactionDetails($transaction);
|
121 |
if ($transactionAdapter->getStatusChange()) {
|
|
|
122 |
$transactionAdapter->saveTransaction();
|
123 |
$this->_getOrderProcessor($payment->getOrder())
|
124 |
-
->importTransactionDetails($transactionAdapter,
|
125 |
->saveOrder();
|
126 |
} else {
|
127 |
$relatedTransactionAdapter = $transactionAdapter->processRelatedObjects($payment->getOrder());
|
119 |
if ($payment && $transaction) {
|
120 |
$transactionAdapter = $this->_getPaymentProcessor($payment)->importTransactionDetails($transaction);
|
121 |
if ($transactionAdapter->getStatusChange()) {
|
122 |
+
$stateObject = new Varien_Object();
|
123 |
$transactionAdapter->saveTransaction();
|
124 |
$this->_getOrderProcessor($payment->getOrder())
|
125 |
+
->importTransactionDetails($transactionAdapter, $stateObject)
|
126 |
->saveOrder();
|
127 |
} else {
|
128 |
$relatedTransactionAdapter = $transactionAdapter->processRelatedObjects($payment->getOrder());
|
app/code/community/Creativestyle/AmazonPayments/Model/Processor/Payment.php
CHANGED
@@ -44,8 +44,8 @@ class Creativestyle_AmazonPayments_Model_Processor_Payment {
|
|
44 |
|
45 |
/**
|
46 |
* TODO: [getPayment description]
|
47 |
-
*
|
48 |
* @return Mage_Sales_Model_Order_Payment
|
|
|
49 |
*/
|
50 |
public function getPayment() {
|
51 |
if (null === $this->_payment) {
|
@@ -63,6 +63,15 @@ class Creativestyle_AmazonPayments_Model_Processor_Payment {
|
|
63 |
return Mage::getSingleton('amazonpayments/api_advanced')->setStore($this->_store);
|
64 |
}
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
/**
|
67 |
* Import transaction details to the Magento order and its related objects
|
68 |
*
|
@@ -92,7 +101,7 @@ class Creativestyle_AmazonPayments_Model_Processor_Payment {
|
|
92 |
$amount,
|
93 |
$this->getPayment()->getOrder()->getBaseCurrencyCode(),
|
94 |
$this->getPayment()->getOrder()->getIncrementId(),
|
95 |
-
$this->
|
96 |
);
|
97 |
}
|
98 |
$this->_getApi()->confirmOrderReference($transactionSequenceId);
|
44 |
|
45 |
/**
|
46 |
* TODO: [getPayment description]
|
|
|
47 |
* @return Mage_Sales_Model_Order_Payment
|
48 |
+
* @throws Creativestyle_AmazonPayments_Exception
|
49 |
*/
|
50 |
public function getPayment() {
|
51 |
if (null === $this->_payment) {
|
63 |
return Mage::getSingleton('amazonpayments/api_advanced')->setStore($this->_store);
|
64 |
}
|
65 |
|
66 |
+
/**
|
67 |
+
* Return Amazon Payments config model instance
|
68 |
+
*
|
69 |
+
* @return Creativestyle_AmazonPayments_Model_Config
|
70 |
+
*/
|
71 |
+
protected function _getConfig() {
|
72 |
+
return Mage::getSingleton('amazonpayments/config');
|
73 |
+
}
|
74 |
+
|
75 |
/**
|
76 |
* Import transaction details to the Magento order and its related objects
|
77 |
*
|
101 |
$amount,
|
102 |
$this->getPayment()->getOrder()->getBaseCurrencyCode(),
|
103 |
$this->getPayment()->getOrder()->getIncrementId(),
|
104 |
+
$this->_getConfig()->getStoreName()
|
105 |
);
|
106 |
}
|
107 |
$this->_getApi()->confirmOrderReference($transactionSequenceId);
|
app/code/community/Creativestyle/AmazonPayments/controllers/Adminhtml/Amazonpayments/DebugController.php
CHANGED
@@ -26,7 +26,7 @@ class Creativestyle_AmazonPayments_Adminhtml_Amazonpayments_DebugController exte
|
|
26 |
|
27 |
public function indexAction() {
|
28 |
$this->loadLayout()
|
29 |
-
->_initAction('debug', array('
|
30 |
->renderLayout();
|
31 |
}
|
32 |
|
26 |
|
27 |
public function indexAction() {
|
28 |
$this->loadLayout()
|
29 |
+
->_initAction('debug', array('Amazon Pay and Login with Amazon', 'Debug data'))
|
30 |
->renderLayout();
|
31 |
}
|
32 |
|
app/code/community/Creativestyle/AmazonPayments/controllers/Adminhtml/Amazonpayments/Log/ApiController.php
CHANGED
@@ -26,14 +26,14 @@ class Creativestyle_AmazonPayments_Adminhtml_Amazonpayments_Log_ApiController ex
|
|
26 |
protected function _initAction() {
|
27 |
$this->loadLayout()
|
28 |
->_setActiveMenu('creativestyle/amazonpayments/log/api')
|
29 |
-
->_addBreadcrumb($this->__('Pay
|
30 |
->_addBreadcrumb($this->__('Log preview'), $this->__('Log preview'))
|
31 |
->_addBreadcrumb($this->__('API calls'), $this->__('API calls'));
|
32 |
return $this;
|
33 |
}
|
34 |
|
35 |
public function indexAction() {
|
36 |
-
$this->_title($this->__('Pay
|
37 |
$this->_initAction()
|
38 |
->renderLayout();
|
39 |
}
|
@@ -42,7 +42,7 @@ class Creativestyle_AmazonPayments_Adminhtml_Amazonpayments_Log_ApiController ex
|
|
42 |
$id = $this->getRequest()->getParam('id');
|
43 |
$log = $this->_getCollection()->getItemById($id);
|
44 |
if (is_object($log) && $log->getId()) {
|
45 |
-
$this->_title($this->__('Pay
|
46 |
$this->_initAction();
|
47 |
$this->_addContent($this->getLayout()->createBlock('amazonpayments/adminhtml_log_api_view')->setLog($log));
|
48 |
$this->renderLayout();
|
26 |
protected function _initAction() {
|
27 |
$this->loadLayout()
|
28 |
->_setActiveMenu('creativestyle/amazonpayments/log/api')
|
29 |
+
->_addBreadcrumb($this->__('Amazon Pay'), $this->__('Amazon Pay'))
|
30 |
->_addBreadcrumb($this->__('Log preview'), $this->__('Log preview'))
|
31 |
->_addBreadcrumb($this->__('API calls'), $this->__('API calls'));
|
32 |
return $this;
|
33 |
}
|
34 |
|
35 |
public function indexAction() {
|
36 |
+
$this->_title($this->__('Amazon Pay'))->_title($this->__('Log preview'))->_title($this->__('API calls'));
|
37 |
$this->_initAction()
|
38 |
->renderLayout();
|
39 |
}
|
42 |
$id = $this->getRequest()->getParam('id');
|
43 |
$log = $this->_getCollection()->getItemById($id);
|
44 |
if (is_object($log) && $log->getId()) {
|
45 |
+
$this->_title($this->__('Amazon Pay'))->_title($this->__('Log preview'))->_title($this->__('API calls'))->_title($this->__('Preview'));
|
46 |
$this->_initAction();
|
47 |
$this->_addContent($this->getLayout()->createBlock('amazonpayments/adminhtml_log_api_view')->setLog($log));
|
48 |
$this->renderLayout();
|
app/code/community/Creativestyle/AmazonPayments/controllers/Adminhtml/Amazonpayments/Log/ExceptionController.php
CHANGED
@@ -26,14 +26,14 @@ class Creativestyle_AmazonPayments_Adminhtml_Amazonpayments_Log_ExceptionControl
|
|
26 |
protected function _initAction() {
|
27 |
$this->loadLayout()
|
28 |
->_setActiveMenu('creativestyle/amazonpayments/log/exception')
|
29 |
-
->_addBreadcrumb($this->__('Pay
|
30 |
->_addBreadcrumb($this->__('Log preview'), $this->__('Log preview'))
|
31 |
->_addBreadcrumb($this->__('Exceptions'), $this->__('Exceptions'));
|
32 |
return $this;
|
33 |
}
|
34 |
|
35 |
public function indexAction() {
|
36 |
-
$this->_title($this->__('Pay
|
37 |
$this->_initAction()
|
38 |
->renderLayout();
|
39 |
}
|
@@ -42,7 +42,7 @@ class Creativestyle_AmazonPayments_Adminhtml_Amazonpayments_Log_ExceptionControl
|
|
42 |
$id = $this->getRequest()->getParam('id');
|
43 |
$log = $this->_getCollection()->getItemById($id);
|
44 |
if (is_object($log) && $log->getId()) {
|
45 |
-
$this->_title($this->__('Pay
|
46 |
$this->_initAction();
|
47 |
$this->_addContent($this->getLayout()->createBlock('amazonpayments/adminhtml_log_exception_view')->setLog($log));
|
48 |
$this->renderLayout();
|
26 |
protected function _initAction() {
|
27 |
$this->loadLayout()
|
28 |
->_setActiveMenu('creativestyle/amazonpayments/log/exception')
|
29 |
+
->_addBreadcrumb($this->__('Amazon Pay'), $this->__('Amazon Pay'))
|
30 |
->_addBreadcrumb($this->__('Log preview'), $this->__('Log preview'))
|
31 |
->_addBreadcrumb($this->__('Exceptions'), $this->__('Exceptions'));
|
32 |
return $this;
|
33 |
}
|
34 |
|
35 |
public function indexAction() {
|
36 |
+
$this->_title($this->__('Amazon Pay'))->_title($this->__('Log preview'))->_title($this->__('Exceptions'));
|
37 |
$this->_initAction()
|
38 |
->renderLayout();
|
39 |
}
|
42 |
$id = $this->getRequest()->getParam('id');
|
43 |
$log = $this->_getCollection()->getItemById($id);
|
44 |
if (is_object($log) && $log->getId()) {
|
45 |
+
$this->_title($this->__('Amazon Pay'))->_title($this->__('Log preview'))->_title($this->__('Exceptions'))->_title($this->__('Preview'));
|
46 |
$this->_initAction();
|
47 |
$this->_addContent($this->getLayout()->createBlock('amazonpayments/adminhtml_log_exception_view')->setLog($log));
|
48 |
$this->renderLayout();
|
app/code/community/Creativestyle/AmazonPayments/controllers/Adminhtml/Amazonpayments/Log/IpnController.php
CHANGED
@@ -26,14 +26,14 @@ class Creativestyle_AmazonPayments_Adminhtml_Amazonpayments_Log_IpnController ex
|
|
26 |
protected function _initAction() {
|
27 |
$this->loadLayout()
|
28 |
->_setActiveMenu('creativestyle/amazonpayments/log/ipn')
|
29 |
-
->_addBreadcrumb($this->__('Pay
|
30 |
->_addBreadcrumb($this->__('Log preview'), $this->__('Log preview'))
|
31 |
->_addBreadcrumb($this->__('Notifications'), $this->__('Notifications'));
|
32 |
return $this;
|
33 |
}
|
34 |
|
35 |
public function indexAction() {
|
36 |
-
$this->_title($this->__('Pay
|
37 |
$this->_initAction()
|
38 |
->renderLayout();
|
39 |
}
|
@@ -42,7 +42,7 @@ class Creativestyle_AmazonPayments_Adminhtml_Amazonpayments_Log_IpnController ex
|
|
42 |
$id = $this->getRequest()->getParam('id');
|
43 |
$log = $this->_getCollection()->getItemById($id);
|
44 |
if (is_object($log) && $log->getId()) {
|
45 |
-
$this->_title($this->__('Pay
|
46 |
$this->_initAction();
|
47 |
$this->_addContent($this->getLayout()->createBlock('amazonpayments/adminhtml_log_ipn_view')->setLog($log));
|
48 |
$this->renderLayout();
|
26 |
protected function _initAction() {
|
27 |
$this->loadLayout()
|
28 |
->_setActiveMenu('creativestyle/amazonpayments/log/ipn')
|
29 |
+
->_addBreadcrumb($this->__('Amazon Pay'), $this->__('Amazon Pay'))
|
30 |
->_addBreadcrumb($this->__('Log preview'), $this->__('Log preview'))
|
31 |
->_addBreadcrumb($this->__('Notifications'), $this->__('Notifications'));
|
32 |
return $this;
|
33 |
}
|
34 |
|
35 |
public function indexAction() {
|
36 |
+
$this->_title($this->__('Amazon Pay'))->_title($this->__('Log preview'))->_title($this->__('Notifications'));
|
37 |
$this->_initAction()
|
38 |
->renderLayout();
|
39 |
}
|
42 |
$id = $this->getRequest()->getParam('id');
|
43 |
$log = $this->_getCollection()->getItemById($id);
|
44 |
if (is_object($log) && $log->getId()) {
|
45 |
+
$this->_title($this->__('Amazon Pay'))->_title($this->__('Log preview'))->_title($this->__('Notifications'))->_title($this->__('Preview'));
|
46 |
$this->_initAction();
|
47 |
$this->_addContent($this->getLayout()->createBlock('amazonpayments/adminhtml_log_ipn_view')->setLog($log));
|
48 |
$this->renderLayout();
|
app/code/community/Creativestyle/AmazonPayments/controllers/Advanced/CheckoutController.php
CHANGED
@@ -19,6 +19,9 @@ class Creativestyle_AmazonPayments_Advanced_CheckoutController extends Mage_Core
|
|
19 |
|
20 |
protected $_accessToken = null;
|
21 |
|
|
|
|
|
|
|
22 |
protected function _getCheckout() {
|
23 |
return Mage::getSingleton('amazonpayments/checkout');
|
24 |
}
|
@@ -166,7 +169,7 @@ class Creativestyle_AmazonPayments_Advanced_CheckoutController extends Mage_Core
|
|
166 |
$this->_getCheckout()->savePayment(null);
|
167 |
|
168 |
$this->loadLayout();
|
169 |
-
$this->getLayout()->getBlock('head')->setTitle($this->__('Pay
|
170 |
$this->renderLayout();
|
171 |
} catch (Exception $e) {
|
172 |
Creativestyle_AmazonPayments_Model_Logger::logException($e);
|
19 |
|
20 |
protected $_accessToken = null;
|
21 |
|
22 |
+
/**
|
23 |
+
* @return Creativestyle_AmazonPayments_Model_Checkout
|
24 |
+
*/
|
25 |
protected function _getCheckout() {
|
26 |
return Mage::getSingleton('amazonpayments/checkout');
|
27 |
}
|
169 |
$this->_getCheckout()->savePayment(null);
|
170 |
|
171 |
$this->loadLayout();
|
172 |
+
$this->getLayout()->getBlock('head')->setTitle($this->__('Amazon Pay'));
|
173 |
$this->renderLayout();
|
174 |
} catch (Exception $e) {
|
175 |
Creativestyle_AmazonPayments_Model_Logger::logException($e);
|
app/code/community/Creativestyle/AmazonPayments/controllers/Advanced/IpnController.php
CHANGED
@@ -73,6 +73,7 @@ class Creativestyle_AmazonPayments_Advanced_IpnController extends Mage_Core_Cont
|
|
73 |
Creativestyle_AmazonPayments_Model_Logger::logException($e);
|
74 |
$this->_sendResponse(503, $e->getMessage());
|
75 |
}
|
|
|
76 |
} else {
|
77 |
$this->_forward('noRoute');
|
78 |
}
|
73 |
Creativestyle_AmazonPayments_Model_Logger::logException($e);
|
74 |
$this->_sendResponse(503, $e->getMessage());
|
75 |
}
|
76 |
+
return;
|
77 |
} else {
|
78 |
$this->_forward('noRoute');
|
79 |
}
|
app/code/community/Creativestyle/AmazonPayments/etc/adminhtml.xml
CHANGED
@@ -21,7 +21,7 @@
|
|
21 |
<sort_order>99</sort_order>
|
22 |
<children>
|
23 |
<amazonpayments translate="title" module="amazonpayments">
|
24 |
-
<title>
|
25 |
<sort_order>1</sort_order>
|
26 |
<children>
|
27 |
<debug translate="title">
|
@@ -72,7 +72,7 @@
|
|
72 |
<title>creativestyle Extensions</title>
|
73 |
<children>
|
74 |
<amazonpayments translate="title" module="amazonpayments">
|
75 |
-
<title>
|
76 |
<children>
|
77 |
<debug translate="title">
|
78 |
<title>Debug data</title>
|
@@ -115,7 +115,7 @@
|
|
115 |
<config>
|
116 |
<children>
|
117 |
<amazonpayments translate="title" module="amazonpayments">
|
118 |
-
<title>
|
119 |
</amazonpayments>
|
120 |
</children>
|
121 |
</config>
|
21 |
<sort_order>99</sort_order>
|
22 |
<children>
|
23 |
<amazonpayments translate="title" module="amazonpayments">
|
24 |
+
<title>Amazon Pay and Login with Amazon</title>
|
25 |
<sort_order>1</sort_order>
|
26 |
<children>
|
27 |
<debug translate="title">
|
72 |
<title>creativestyle Extensions</title>
|
73 |
<children>
|
74 |
<amazonpayments translate="title" module="amazonpayments">
|
75 |
+
<title>Amazon Pay and Login with Amazon</title>
|
76 |
<children>
|
77 |
<debug translate="title">
|
78 |
<title>Debug data</title>
|
115 |
<config>
|
116 |
<children>
|
117 |
<amazonpayments translate="title" module="amazonpayments">
|
118 |
+
<title>Amazon Pay and Login with Amazon settings</title>
|
119 |
</amazonpayments>
|
120 |
</children>
|
121 |
</config>
|
app/code/community/Creativestyle/AmazonPayments/etc/config.xml
CHANGED
@@ -10,14 +10,14 @@
|
|
10 |
*
|
11 |
* @category Creativestyle
|
12 |
* @package Creativestyle_AmazonPayments
|
13 |
-
* @copyright Copyright (c) 2014 -
|
14 |
* @author Marek Zabrowarny / creativestyle GmbH <amazon@creativestyle.de>
|
15 |
*/
|
16 |
-->
|
17 |
<config>
|
18 |
<modules>
|
19 |
<Creativestyle_AmazonPayments>
|
20 |
-
<version>1.8.
|
21 |
</Creativestyle_AmazonPayments>
|
22 |
</modules>
|
23 |
<global>
|
@@ -116,6 +116,7 @@
|
|
116 |
<payment>
|
117 |
<groups>
|
118 |
<amazonpayments>Amazon Payments</amazonpayments>
|
|
|
119 |
</groups>
|
120 |
</payment>
|
121 |
<template>
|
@@ -408,7 +409,7 @@
|
|
408 |
<default>
|
409 |
<payment>
|
410 |
<amazonpayments_advanced>
|
411 |
-
<title>Pay
|
412 |
<model>amazonpayments/payment_advanced</model>
|
413 |
<payment_action>order</payment_action>
|
414 |
<order_status>pending</order_status>
|
@@ -416,7 +417,7 @@
|
|
416 |
<active>1</active>
|
417 |
</amazonpayments_advanced>
|
418 |
<amazonpayments_advanced_sandbox>
|
419 |
-
<title>Pay
|
420 |
<model>amazonpayments/payment_advanced_sandbox</model>
|
421 |
<payment_action>order</payment_action>
|
422 |
<order_status>pending</order_status>
|
@@ -426,20 +427,23 @@
|
|
426 |
<checkoutbyamazon>
|
427 |
<title>Checkout by Amazon</title>
|
428 |
<model>amazonpayments/payment_legacy</model>
|
|
|
429 |
<active>0</active>
|
430 |
</checkoutbyamazon>
|
431 |
<checkoutbyamazon_sandbox>
|
432 |
<title>Checkout by Amazon (Sandbox)</title>
|
433 |
<model>amazonpayments/payment_legacy</model>
|
|
|
434 |
<active>0</active>
|
435 |
</checkoutbyamazon_sandbox>
|
436 |
</payment>
|
437 |
<amazonpayments>
|
438 |
<account>
|
439 |
-
<region>
|
440 |
</account>
|
441 |
<general>
|
442 |
<active>0</active>
|
|
|
443 |
<sandbox>1</sandbox>
|
444 |
<sandbox_toolbox>0</sandbox_toolbox>
|
445 |
<ipn_active>1</ipn_active>
|
@@ -447,11 +451,9 @@
|
|
447 |
<authorization_mode>asynchronous</authorization_mode>
|
448 |
<new_order_status>pending</new_order_status>
|
449 |
<authorized_order_status>processing</authorized_order_status>
|
450 |
-
|
451 |
-
<login>
|
452 |
-
<active>0</active>
|
453 |
<authentication>auto</authentication>
|
454 |
-
</
|
455 |
<email>
|
456 |
<order_confirmation>1</order_confirmation>
|
457 |
<authorization_declined_template>amazonpayments_advanced_authorization_declined</authorization_declined_template>
|
10 |
*
|
11 |
* @category Creativestyle
|
12 |
* @package Creativestyle_AmazonPayments
|
13 |
+
* @copyright Copyright (c) 2014 - 2017 creativestyle GmbH
|
14 |
* @author Marek Zabrowarny / creativestyle GmbH <amazon@creativestyle.de>
|
15 |
*/
|
16 |
-->
|
17 |
<config>
|
18 |
<modules>
|
19 |
<Creativestyle_AmazonPayments>
|
20 |
+
<version>1.8.4</version>
|
21 |
</Creativestyle_AmazonPayments>
|
22 |
</modules>
|
23 |
<global>
|
116 |
<payment>
|
117 |
<groups>
|
118 |
<amazonpayments>Amazon Payments</amazonpayments>
|
119 |
+
<amazonpayments_legacy>Amazon Payments (Legacy)</amazonpayments_legacy>
|
120 |
</groups>
|
121 |
</payment>
|
122 |
<template>
|
409 |
<default>
|
410 |
<payment>
|
411 |
<amazonpayments_advanced>
|
412 |
+
<title>Amazon Pay</title>
|
413 |
<model>amazonpayments/payment_advanced</model>
|
414 |
<payment_action>order</payment_action>
|
415 |
<order_status>pending</order_status>
|
417 |
<active>1</active>
|
418 |
</amazonpayments_advanced>
|
419 |
<amazonpayments_advanced_sandbox>
|
420 |
+
<title>Amazon Pay (Sandbox)</title>
|
421 |
<model>amazonpayments/payment_advanced_sandbox</model>
|
422 |
<payment_action>order</payment_action>
|
423 |
<order_status>pending</order_status>
|
427 |
<checkoutbyamazon>
|
428 |
<title>Checkout by Amazon</title>
|
429 |
<model>amazonpayments/payment_legacy</model>
|
430 |
+
<group>amazonpayments_legacy</group>
|
431 |
<active>0</active>
|
432 |
</checkoutbyamazon>
|
433 |
<checkoutbyamazon_sandbox>
|
434 |
<title>Checkout by Amazon (Sandbox)</title>
|
435 |
<model>amazonpayments/payment_legacy</model>
|
436 |
+
<group>amazonpayments_legacy</group>
|
437 |
<active>0</active>
|
438 |
</checkoutbyamazon_sandbox>
|
439 |
</payment>
|
440 |
<amazonpayments>
|
441 |
<account>
|
442 |
+
<region>EUR</region>
|
443 |
</account>
|
444 |
<general>
|
445 |
<active>0</active>
|
446 |
+
<login_active>0</login_active>
|
447 |
<sandbox>1</sandbox>
|
448 |
<sandbox_toolbox>0</sandbox_toolbox>
|
449 |
<ipn_active>1</ipn_active>
|
451 |
<authorization_mode>asynchronous</authorization_mode>
|
452 |
<new_order_status>pending</new_order_status>
|
453 |
<authorized_order_status>processing</authorized_order_status>
|
454 |
+
<language></language>
|
|
|
|
|
455 |
<authentication>auto</authentication>
|
456 |
+
</general>
|
457 |
<email>
|
458 |
<order_confirmation>1</order_confirmation>
|
459 |
<authorization_declined_template>amazonpayments_advanced_authorization_declined</authorization_declined_template>
|
app/code/community/Creativestyle/AmazonPayments/etc/system.xml
CHANGED
@@ -23,7 +23,7 @@
|
|
23 |
</tabs>
|
24 |
<sections>
|
25 |
<amazonpayments translate="label" module="amazonpayments">
|
26 |
-
<label>Pay with Amazon</label>
|
27 |
<comment>This extension was developed by creativestyle GmbH</comment>
|
28 |
<class>amazon-payments-advanced-section</class>
|
29 |
<header_css>amazon-payments-advanced-header</header_css>
|
@@ -103,7 +103,7 @@
|
|
103 |
<show_in_store>1</show_in_store>
|
104 |
<fields>
|
105 |
<active translate="label">
|
106 |
-
<label>Enable Pay
|
107 |
<frontend_type>select</frontend_type>
|
108 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
109 |
<sort_order>10</sort_order>
|
@@ -287,9 +287,25 @@
|
|
287 |
</authentication>
|
288 |
</fields>
|
289 |
</login>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
<email translate="label">
|
291 |
<label>Email Options</label>
|
292 |
-
<frontend_type>text</frontend_type>
|
293 |
<sort_order>300</sort_order>
|
294 |
<show_in_default>1</show_in_default>
|
295 |
<show_in_website>1</show_in_website>
|
@@ -388,7 +404,7 @@
|
|
388 |
</fields>
|
389 |
</design>
|
390 |
<design_login>
|
391 |
-
<label>Appearance Settings for
|
392 |
<sort_order>420</sort_order>
|
393 |
<show_in_default>1</show_in_default>
|
394 |
<show_in_website>1</show_in_website>
|
@@ -422,7 +438,7 @@
|
|
422 |
<show_in_store>1</show_in_store>
|
423 |
</login_button_color>
|
424 |
<pay_button_type translate="label">
|
425 |
-
<label>"Pay
|
426 |
<frontend_type>select</frontend_type>
|
427 |
<source_model>amazonpayments/lookup_design_button_type_pay</source_model>
|
428 |
<sort_order>40</sort_order>
|
@@ -431,7 +447,7 @@
|
|
431 |
<show_in_store>1</show_in_store>
|
432 |
</pay_button_type>
|
433 |
<pay_button_size translate="label">
|
434 |
-
<label>"Pay
|
435 |
<frontend_type>select</frontend_type>
|
436 |
<source_model>amazonpayments/lookup_design_button_size_loginPay</source_model>
|
437 |
<sort_order>50</sort_order>
|
@@ -440,7 +456,7 @@
|
|
440 |
<show_in_store>1</show_in_store>
|
441 |
</pay_button_size>
|
442 |
<pay_button_color translate="label">
|
443 |
-
<label>"Pay
|
444 |
<frontend_type>select</frontend_type>
|
445 |
<source_model>amazonpayments/lookup_design_button_color_loginPay</source_model>
|
446 |
<sort_order>60</sort_order>
|
@@ -451,14 +467,14 @@
|
|
451 |
</fields>
|
452 |
</design_login>
|
453 |
<design_pay>
|
454 |
-
<label>Appearance Settings for standalone Pay
|
455 |
<sort_order>440</sort_order>
|
456 |
<show_in_default>1</show_in_default>
|
457 |
<show_in_website>1</show_in_website>
|
458 |
<show_in_store>1</show_in_store>
|
459 |
<fields>
|
460 |
<button_size translate="label">
|
461 |
-
<label>"Pay
|
462 |
<frontend_type>select</frontend_type>
|
463 |
<source_model>amazonpayments/lookup_design_button_size</source_model>
|
464 |
<sort_order>10</sort_order>
|
@@ -467,7 +483,7 @@
|
|
467 |
<show_in_store>1</show_in_store>
|
468 |
</button_size>
|
469 |
<button_color translate="label">
|
470 |
-
<label>"Pay
|
471 |
<frontend_type>select</frontend_type>
|
472 |
<source_model>amazonpayments/lookup_design_button_color</source_model>
|
473 |
<sort_order>20</sort_order>
|
23 |
</tabs>
|
24 |
<sections>
|
25 |
<amazonpayments translate="label" module="amazonpayments">
|
26 |
+
<label>Amazon Pay and Login with Amazon</label>
|
27 |
<comment>This extension was developed by creativestyle GmbH</comment>
|
28 |
<class>amazon-payments-advanced-section</class>
|
29 |
<header_css>amazon-payments-advanced-header</header_css>
|
103 |
<show_in_store>1</show_in_store>
|
104 |
<fields>
|
105 |
<active translate="label">
|
106 |
+
<label>Enable Amazon Pay</label>
|
107 |
<frontend_type>select</frontend_type>
|
108 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
109 |
<sort_order>10</sort_order>
|
287 |
</authentication>
|
288 |
</fields>
|
289 |
</login>
|
290 |
+
<store translate="label">
|
291 |
+
<label>Store Options</label>
|
292 |
+
<sort_order>250</sort_order>
|
293 |
+
<show_in_default>0</show_in_default>
|
294 |
+
<show_in_website>0</show_in_website>
|
295 |
+
<show_in_store>1</show_in_store>
|
296 |
+
<fields>
|
297 |
+
<name translate="label">
|
298 |
+
<label>Store name</label>
|
299 |
+
<frontend_type>text</frontend_type>
|
300 |
+
<sort_order>10</sort_order>
|
301 |
+
<show_in_default>0</show_in_default>
|
302 |
+
<show_in_website>0</show_in_website>
|
303 |
+
<show_in_store>1</show_in_store>
|
304 |
+
</name>
|
305 |
+
</fields>
|
306 |
+
</store>
|
307 |
<email translate="label">
|
308 |
<label>Email Options</label>
|
|
|
309 |
<sort_order>300</sort_order>
|
310 |
<show_in_default>1</show_in_default>
|
311 |
<show_in_website>1</show_in_website>
|
404 |
</fields>
|
405 |
</design>
|
406 |
<design_login>
|
407 |
+
<label>Appearance Settings for Amazon Pay and Login with Amazon</label>
|
408 |
<sort_order>420</sort_order>
|
409 |
<show_in_default>1</show_in_default>
|
410 |
<show_in_website>1</show_in_website>
|
438 |
<show_in_store>1</show_in_store>
|
439 |
</login_button_color>
|
440 |
<pay_button_type translate="label">
|
441 |
+
<label>"Amazon Pay" button type</label>
|
442 |
<frontend_type>select</frontend_type>
|
443 |
<source_model>amazonpayments/lookup_design_button_type_pay</source_model>
|
444 |
<sort_order>40</sort_order>
|
447 |
<show_in_store>1</show_in_store>
|
448 |
</pay_button_type>
|
449 |
<pay_button_size translate="label">
|
450 |
+
<label>"Amazon Pay" button size</label>
|
451 |
<frontend_type>select</frontend_type>
|
452 |
<source_model>amazonpayments/lookup_design_button_size_loginPay</source_model>
|
453 |
<sort_order>50</sort_order>
|
456 |
<show_in_store>1</show_in_store>
|
457 |
</pay_button_size>
|
458 |
<pay_button_color translate="label">
|
459 |
+
<label>"Amazon Pay" button color</label>
|
460 |
<frontend_type>select</frontend_type>
|
461 |
<source_model>amazonpayments/lookup_design_button_color_loginPay</source_model>
|
462 |
<sort_order>60</sort_order>
|
467 |
</fields>
|
468 |
</design_login>
|
469 |
<design_pay>
|
470 |
+
<label>Appearance Settings for standalone Amazon Pay</label>
|
471 |
<sort_order>440</sort_order>
|
472 |
<show_in_default>1</show_in_default>
|
473 |
<show_in_website>1</show_in_website>
|
474 |
<show_in_store>1</show_in_store>
|
475 |
<fields>
|
476 |
<button_size translate="label">
|
477 |
+
<label>"Amazon Pay" button size</label>
|
478 |
<frontend_type>select</frontend_type>
|
479 |
<source_model>amazonpayments/lookup_design_button_size</source_model>
|
480 |
<sort_order>10</sort_order>
|
483 |
<show_in_store>1</show_in_store>
|
484 |
</button_size>
|
485 |
<button_color translate="label">
|
486 |
+
<label>"Amazon Pay" button color</label>
|
487 |
<frontend_type>select</frontend_type>
|
488 |
<source_model>amazonpayments/lookup_design_button_color</source_model>
|
489 |
<sort_order>20</sort_order>
|
app/design/adminhtml/default/default/template/creativestyle/amazonpayments/info.phtml
CHANGED
@@ -22,8 +22,8 @@
|
|
22 |
</div>
|
23 |
<div class="fieldset config">
|
24 |
<img class="creativestyle-logo" src="<?php echo $this->getSkinUrl('creativestyle/images/amazon-payments-advanced-creativestyle-logo.png'); ?>" alt="Amazon Payments" />
|
25 |
-
<h3><?php echo $this->__('
|
26 |
-
<p style="clear:both;"><?php echo $this->__('This extension integrates easily your Magento shop with Pay
|
27 |
</div>
|
28 |
</div>
|
29 |
<?php echo $this->getSellerCentralConfigHtml(); ?>
|
@@ -71,11 +71,11 @@
|
|
71 |
save_button: $('simple-path-validation-save-button'),
|
72 |
cancel_button: $('simple-path-validation-cancel-button'),
|
73 |
placeholder: '{\n' +
|
74 |
-
' merchant_id": "YOUR SELLER ID",\n' +
|
75 |
-
' access_key": "YOUR ACCESS KEY ID",\n' +
|
76 |
-
' secret_key": "YOUR SECRET ACCESS KEY",\n' +
|
77 |
-
' client_id": "YOUR CLIENT ID",\n' +
|
78 |
-
' client_secret": "YOUR CLIENT SECRET"\n' +
|
79 |
'}'
|
80 |
}
|
81 |
});
|
22 |
</div>
|
23 |
<div class="fieldset config">
|
24 |
<img class="creativestyle-logo" src="<?php echo $this->getSkinUrl('creativestyle/images/amazon-payments-advanced-creativestyle-logo.png'); ?>" alt="Amazon Payments" />
|
25 |
+
<h3><?php echo $this->__('Amazon Pay and Login with Amazon'); ?><small> (v. <?php echo $this->getExtensionVersion(); ?>)</small></h3>
|
26 |
+
<p style="clear:both;"><?php echo $this->__('This extension integrates easily your Magento shop with Amazon Pay service.'); ?></p>
|
27 |
</div>
|
28 |
</div>
|
29 |
<?php echo $this->getSellerCentralConfigHtml(); ?>
|
71 |
save_button: $('simple-path-validation-save-button'),
|
72 |
cancel_button: $('simple-path-validation-cancel-button'),
|
73 |
placeholder: '{\n' +
|
74 |
+
' "merchant_id": "YOUR SELLER ID",\n' +
|
75 |
+
' "access_key": "YOUR ACCESS KEY ID",\n' +
|
76 |
+
' "secret_key": "YOUR SECRET ACCESS KEY",\n' +
|
77 |
+
' "client_id": "YOUR CLIENT ID",\n' +
|
78 |
+
' "client_secret": "YOUR CLIENT SECRET"\n' +
|
79 |
'}'
|
80 |
}
|
81 |
});
|
app/design/adminhtml/default/default/template/creativestyle/amazonpayments/notifications.phtml
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
?>
|
16 |
<?php if ($this->isLegacyAccount()): ?>
|
17 |
<div class="notification-global">
|
18 |
-
<strong><?php echo $this->helper('amazonpayments')->__('
|
19 |
<?php echo $this->helper('amazonpayments')->__('From the next version of the extension, your shop needs to have a valid SSL certificate and you need to configure a Login with Amazon application in <a href="%s" target="_blank">Seller Central</a>', 'https://sellercentral-europe.amazon.com/hz/me/integration/details') ?>
|
20 |
</div>
|
21 |
<?php endif; ?>
|
15 |
?>
|
16 |
<?php if ($this->isLegacyAccount()): ?>
|
17 |
<div class="notification-global">
|
18 |
+
<strong><?php echo $this->helper('amazonpayments')->__('Amazon Pay and Login with Amazon'); ?></strong>:
|
19 |
<?php echo $this->helper('amazonpayments')->__('From the next version of the extension, your shop needs to have a valid SSL certificate and you need to configure a Login with Amazon application in <a href="%s" target="_blank">Seller Central</a>', 'https://sellercentral-europe.amazon.com/hz/me/integration/details') ?>
|
20 |
</div>
|
21 |
<?php endif; ?>
|
app/design/frontend/base/default/template/creativestyle/amazonpayments/button/js.phtml
CHANGED
@@ -14,9 +14,9 @@
|
|
14 |
*/
|
15 |
?>
|
16 |
<?php if ($this->isVirtual()): ?>
|
17 |
-
var amazonButtonTooltip = '<img src="<?php echo $this->getSkinUrl('creativestyle/images/logo_a-glyph_1x.png'); ?>" alt="<?php echo $this->__('Pay
|
18 |
<?php else: ?>
|
19 |
-
var amazonButtonTooltip = '<img src="<?php echo $this->getSkinUrl('creativestyle/images/logo_a-glyph_1x.png'); ?>" alt="<?php echo $this->__('Pay
|
20 |
<?php endif; ?>
|
21 |
|
22 |
APA.setup('<?php echo $this->getMerchantId(); ?>', {
|
14 |
*/
|
15 |
?>
|
16 |
<?php if ($this->isVirtual()): ?>
|
17 |
+
var amazonButtonTooltip = '<img src="<?php echo $this->getSkinUrl('creativestyle/images/logo_a-glyph_1x.png'); ?>" alt="<?php echo $this->__('Amazon Pay'); ?>"/><?php echo $this->__('<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details.'); ?>';
|
18 |
<?php else: ?>
|
19 |
+
var amazonButtonTooltip = '<img src="<?php echo $this->getSkinUrl('creativestyle/images/logo_a-glyph_1x.png'); ?>" alt="<?php echo $this->__('Amazon Pay'); ?>"/><?php echo $this->__('<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee.'); ?>';
|
20 |
<?php endif; ?>
|
21 |
|
22 |
APA.setup('<?php echo $this->getMerchantId(); ?>', {
|
app/design/frontend/base/default/template/creativestyle/amazonpayments/checkout.phtml
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
*/
|
15 |
?>
|
16 |
<div class="page-title">
|
17 |
-
<h1><?php echo $this->__('Pay
|
18 |
</div>
|
19 |
<?php echo $this->getChildHtml('capture_notice'); ?>
|
20 |
<ol class="apa<?php if ($this->isVirtual()): ?> apa-virtual-checkout<?php endif; ?>" id="checkoutSteps">
|
14 |
*/
|
15 |
?>
|
16 |
<div class="page-title">
|
17 |
+
<h1><?php echo $this->__('Amazon Pay'); ?></h1>
|
18 |
</div>
|
19 |
<?php echo $this->getChildHtml('capture_notice'); ?>
|
20 |
<ol class="apa<?php if ($this->isVirtual()): ?> apa-virtual-checkout<?php endif; ?>" id="checkoutSteps">
|
app/design/frontend/base/default/template/creativestyle/amazonpayments/login/button/account_login.phtml
CHANGED
@@ -18,8 +18,8 @@
|
|
18 |
<div class="content">
|
19 |
<h2><?php echo $this->helper('amazonpayments')->__('Use your Amazon Account') ?></h2>
|
20 |
<p>
|
21 |
-
<?php echo $this->helper('amazonpayments')->__('With Amazon
|
22 |
-
<?php echo $this->helper('amazonpayments')->__('By selecting Amazon
|
23 |
</p>
|
24 |
</div>
|
25 |
</div>
|
18 |
<div class="content">
|
19 |
<h2><?php echo $this->helper('amazonpayments')->__('Use your Amazon Account') ?></h2>
|
20 |
<p>
|
21 |
+
<?php echo $this->helper('amazonpayments')->__('With Amazon Pay, you can use the shipping and payment information stored in your Amazon account to place an order on this website. It\'s a convenient and trusted way to pay that\'s enjoyed by millions of people.'); ?>
|
22 |
+
<?php echo $this->helper('amazonpayments')->__('By selecting Login with Amazon, you will be asked to sign-in securely to your Amazon account without leaving the shop.'); ?>
|
23 |
</p>
|
24 |
</div>
|
25 |
</div>
|
app/design/frontend/base/default/template/creativestyle/amazonpayments/onepage/button.phtml
CHANGED
@@ -14,11 +14,11 @@
|
|
14 |
*/
|
15 |
?>
|
16 |
<div class="pay-with-amazon-onepage-shortcut">
|
17 |
-
<h3><?php echo $this->__('Pay
|
18 |
<?php if ($this->isVirtual()): ?>
|
19 |
-
<p><?php echo $this->__('<strong>Amazon
|
20 |
<?php else: ?>
|
21 |
-
<p><?php echo $this->__('<strong>Amazon
|
22 |
<?php endif; ?>
|
23 |
<div id="<?php echo $this->getWidgetHtmlId(); ?>" class="<?php echo $this->getWidgetClass(); ?>">
|
24 |
<?php if ($buttonImgUrl = $this->getButtonWidgetUrl()): ?>
|
14 |
*/
|
15 |
?>
|
16 |
<div class="pay-with-amazon-onepage-shortcut">
|
17 |
+
<h3><?php echo $this->__('Amazon Pay'); ?></h3>
|
18 |
<?php if ($this->isVirtual()): ?>
|
19 |
+
<p><?php echo $this->__('<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details.'); ?></p>
|
20 |
<?php else: ?>
|
21 |
+
<p><?php echo $this->__('<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee.'); ?></p>
|
22 |
<?php endif; ?>
|
23 |
<div id="<?php echo $this->getWidgetHtmlId(); ?>" class="<?php echo $this->getWidgetClass(); ?>">
|
24 |
<?php if ($buttonImgUrl = $this->getButtonWidgetUrl()): ?>
|
app/locale/de_DE/Creativestyle_AmazonPayments.csv
CHANGED
@@ -2,20 +2,20 @@
|
|
2 |
"--- Select reason code ---","--- Reason code auswählen ---"
|
3 |
"--- Select state to simulate ---","--- Simulationsstatus auswählen ---"
|
4 |
"-OR-","-ODER-"
|
|
|
|
|
|
|
5 |
"""Login with Amazon"" button color","""Login mit Amazon""-Button Farbe"
|
6 |
"""Login with Amazon"" button size","""Login mit Amazon""-Button Größe"
|
7 |
"""Login with Amazon"" button type","""Login mit Amazon""-Button Typ"
|
8 |
-
"""Pay with Amazon"" button color","""Bezahlen mit Amazon""-Button Farbe"
|
9 |
-
"""Pay with Amazon"" button size","""Bezahlen mit Amazon""-Button Größe"
|
10 |
-
"""Pay with Amazon"" button type","""Bezahlen mit Amazon""-Button Typ"
|
11 |
"%s API Call | %s","%s API Aufruf | %s"
|
12 |
"* Required Fields","* Pflichtfelder"
|
13 |
"... or enter your Amazon Payments account information manually","... oder geben Sie die Details zu Ihrem Amazon Payments Konto manuell ein"
|
14 |
"<div id=""creative-system-config"">creativestyle Extensions</div>","<div id=""creative-system-config"">creativestyle Erweiterungen</div>"
|
15 |
"<span class=""close"">Click to reveal config for </span>%s","<span class=""close"">Hier klicken, um Ihre Konfiguration für </span>%s<span class=""close""> anzuzeigen</span>"
|
16 |
"<span class=""close"">Click to reveal your </span>Amazon Seller Central config","<span class=""close"">Hier klicken, um Ihre </span>Konfiguration für Amazon Seller Central<span class=""close""> anzuzeigen</span>"
|
17 |
-
"<strong>Amazon
|
18 |
-
"<strong>Amazon
|
19 |
"1 day","1 Tag"
|
20 |
"1 hour","1 Stunde"
|
21 |
"10 minutes","10 Minuten"
|
@@ -47,14 +47,23 @@
|
|
47 |
"Amazon logo","Amazon-Logo"
|
48 |
"Amazon Order Reference ID: %s","Amazon Bestellreferenz: %s"
|
49 |
"Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>","Amazon Bestellreferenz: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
"Amazon Payments Account","Amazon Payments Konto"
|
51 |
"Amazon Seller Central","Amazon Seller Central"
|
52 |
"An authorization of %s has been processed by Amazon Payments (%s). The new status is %s.","Eine Autorisierung über %s wurde von Amazon Payments bearbeitet (%s). Der neue Status ist %s."
|
53 |
"An order of %s has been processed by Amazon Payments (%s). The new status is %s.","Eine Bestellung über %s wurde von Amazon Payments bearbeitet (%s). Der neue Status ist %s."
|
54 |
"API Call details","API-Aufrufdetails"
|
55 |
"Appearance Settings","Gestaltungseinstellungen"
|
56 |
-
"Appearance Settings for
|
57 |
-
"Appearance Settings for standalone Pay
|
58 |
"Asynchronous","Asynchron"
|
59 |
"Authentication Experience","Login Experience"
|
60 |
"Authorization Processing Mode","Autorisierungsmodus"
|
@@ -62,7 +71,7 @@
|
|
62 |
"Authorize & capture","Autorisieren & erfassen"
|
63 |
"Auto","Auto"
|
64 |
"Back","Zurück"
|
65 |
-
"By selecting Amazon
|
66 |
"Cancel","Abbrechen"
|
67 |
"Choose your payment region and click to quick-register.","Bitte wählen Sie, für welche Region Sie den Shop bzw. den Amazon Payments Account nutzen wollen. Diese Wahl legt auch die Währung (EUR oder GBP) fest, die Sie von den Kunden einziehen können."
|
68 |
"Client ID","Client ID"
|
@@ -84,10 +93,10 @@
|
|
84 |
"Download as CSV","Herunterladen als CSV"
|
85 |
"Each logfile will be rotated when it exceeds size of 8 Megabytes","Sobald 8 Megabyte überschritten werden, wird eine neue Datei erstellt."
|
86 |
"Email Options","Email Optionen"
|
|
|
87 |
"Enable Instant Payment Notifications","Instant Payment Notifications aktiviert"
|
88 |
"Enable logging","Logging einschalten"
|
89 |
"Enable Login with Amazon","Login mit Amazon aktivieren"
|
90 |
-
"Enable Pay with Amazon","Bezahlen mit Amazon aktivieren"
|
91 |
"English","Englisch"
|
92 |
"Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400.","Geben Sie einen Wert zwischen 200 und 600 Pixel. Für ein einspaltiges Widget geben Sie bitte ein Breite von weniger als 400 ein."
|
93 |
"Enter a value between 228 and 400 pixels","Geben Sie einen Wert zwischen 228 und 400 Pixel"
|
@@ -120,7 +129,6 @@
|
|
120 |
"Leave empty for access from any location","Leer lassen für den Zugriff von jedem beliebigen Standort"
|
121 |
"Light gray","Hellgrau"
|
122 |
"Login","Login"
|
123 |
-
"Login and Pay with Amazon","Login und Bezahlen mit Amazon"
|
124 |
"Login with Amazon","Login mit Amazon"
|
125 |
"Magento Settings","Magento-Einstellungen"
|
126 |
"Manual authorization","Manuel autorisieren"
|
@@ -138,13 +146,6 @@
|
|
138 |
"Order status on authorization","Status der Bestellung nach der Autorisierung"
|
139 |
"Page","Seite"
|
140 |
"Pay","Bezahlen"
|
141 |
-
"Pay with Amazon","Bezahlen mit Amazon"
|
142 |
-
"Pay with Amazon (Sandbox)","Bezahlen mit Amazon (Sandbox)"
|
143 |
-
"Pay with Amazon API Call","Bezahlen mit Amazon API Aufruf"
|
144 |
-
"Pay with Amazon API Calls","Bezahlen mit Amazon API Aufrufe"
|
145 |
-
"Pay with Amazon Exception","Bezahlen mit Amazon Exception"
|
146 |
-
"Pay with Amazon Exception | %s","Bezahlen mit Amazon Exception | %s"
|
147 |
-
"Pay with Amazon Exceptions","Bezahlen mit Amazon Exceptions"
|
148 |
"Payment Action","Zahlungsvorgang"
|
149 |
"Payment Region","Zahlungsregion"
|
150 |
"per page","pro Seite"
|
@@ -178,13 +179,15 @@
|
|
178 |
"Small","Klein"
|
179 |
"Spanish","Spanisch"
|
180 |
"Stack trace","Stack trace"
|
|
|
|
|
181 |
"Stores","Stores"
|
182 |
"Synchronous","Synchron"
|
183 |
"Tan","Beige"
|
184 |
"There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method.","Es gab ein Problem mit der ausgewählten Zahlungsart aus ihrem Amazon Konto. Bitte wählen Sie eine andere Zahlungsart aus Ihrem Amazon Konto oder wählen Sie einen anderen Checkout im Warenkorb."
|
185 |
"There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one.","Es gab ein Problem mit der ausgewählten Zahlungsart aus ihrem Amazon Konto. Bitte ändern Sie die gewünschte Zahlungsart oder legen Sie eine neue Zahlungsart an."
|
186 |
"There was an error processing your order. Please contact us or try again later.","Bei der Verarbeitung Ihrer Bestellung ist ein Fehler aufgetreten. Kontaktieren Sie uns oder probieren Sie es bitte später erneut."
|
187 |
-
"This extension integrates easily your Magento shop with Pay
|
188 |
"This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted.","Diese Funktion erfordert die Installation eines gültigen SSL-Zertifikats auf Ihrem Server. Achten Sie darauf, dass das SSL-Zertifikat von einer vertrauenswürdigen Zertifizierungsstelle ausgestellt wird. Selbst signierte Zertifikate sind nicht gestattet."
|
189 |
"This is not valid Seller Central configuration JSON","Das ist keine gültige Konfiguration für Seller Central (JSON)"
|
190 |
"Total %d records found","Total %d Einträge gefunden"
|
@@ -204,7 +207,7 @@
|
|
204 |
"Whoops! Your Access Key ID seems to be invalid.","Whoops! Ihre Access Key ID ist nicht korrekt."
|
205 |
"Whoops! Your Merchant ID seems to be invalid.","Whoops! Ihre Händlernummer ist nicht korrekt."
|
206 |
"Whoops! Your Secret Access Key seems to be invalid.","Whoops! Ihr Secret Access Key ist nicht korrekt."
|
207 |
-
"With Amazon
|
208 |
"X-Large","Sehr groß"
|
209 |
"You have aborted the login with Amazon. Please contact us or try again.","Sie haben den Login mit Amazon abgebrochen. Kontaktieren Sie uns oder probieren Sie es bitte später erneut."
|
210 |
"Your language","Ihre Sprache"
|
2 |
"--- Select reason code ---","--- Reason code auswählen ---"
|
3 |
"--- Select state to simulate ---","--- Simulationsstatus auswählen ---"
|
4 |
"-OR-","-ODER-"
|
5 |
+
"""Amazon Pay"" button color","""Amazon Pay""-Button Farbe"
|
6 |
+
"""Amazon Pay"" button size","""Amazon Pay""-Button Größe"
|
7 |
+
"""Amazon Pay"" button type","""Amazon Pay""-Button Typ"
|
8 |
"""Login with Amazon"" button color","""Login mit Amazon""-Button Farbe"
|
9 |
"""Login with Amazon"" button size","""Login mit Amazon""-Button Größe"
|
10 |
"""Login with Amazon"" button type","""Login mit Amazon""-Button Typ"
|
|
|
|
|
|
|
11 |
"%s API Call | %s","%s API Aufruf | %s"
|
12 |
"* Required Fields","* Pflichtfelder"
|
13 |
"... or enter your Amazon Payments account information manually","... oder geben Sie die Details zu Ihrem Amazon Payments Konto manuell ein"
|
14 |
"<div id=""creative-system-config"">creativestyle Extensions</div>","<div id=""creative-system-config"">creativestyle Erweiterungen</div>"
|
15 |
"<span class=""close"">Click to reveal config for </span>%s","<span class=""close"">Hier klicken, um Ihre Konfiguration für </span>%s<span class=""close""> anzuzeigen</span>"
|
16 |
"<span class=""close"">Click to reveal your </span>Amazon Seller Central config","<span class=""close"">Hier klicken, um Ihre </span>Konfiguration für Amazon Seller Central<span class=""close""> anzuzeigen</span>"
|
17 |
+
"<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details.","Mit <strong>Amazon Pay</strong> können Sie die in Ihrem Amazon-Account hinterlegten Zahlungs- und Versandinformationen nutzen, um schnell und sicher einzukaufen."
|
18 |
+
"<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee.","Mit <strong>Amazon Pay</strong> können Sie die in Ihrem Amazon-Account hinterlegten Zahlungs- und Versandinformationen nutzen, um schnell und sicher einzukaufen. Zudem genießen Sie den Käuferschutz, den Amazon mit der A-bis-z-Garantie bietet."
|
19 |
"1 day","1 Tag"
|
20 |
"1 hour","1 Stunde"
|
21 |
"10 minutes","10 Minuten"
|
47 |
"Amazon logo","Amazon-Logo"
|
48 |
"Amazon Order Reference ID: %s","Amazon Bestellreferenz: %s"
|
49 |
"Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>","Amazon Bestellreferenz: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>"
|
50 |
+
"Amazon Pay","Amazon Pay"
|
51 |
+
"Amazon Pay (Sandbox)","Amazon Pay (Sandbox)"
|
52 |
+
"Amazon Pay and Login with Amazon","Amazon Pay und Login mit Amazon"
|
53 |
+
"Amazon Pay and Login with Amazon settings","Einstellungen für Amazon Pay und Login mit Amazon"
|
54 |
+
"Amazon Pay API Call","Amazon Pay API Aufruf"
|
55 |
+
"Amazon Pay API Calls","Amazon Pay API Aufrufe"
|
56 |
+
"Amazon Pay Exception","Amazon Pay Exception"
|
57 |
+
"Amazon Pay Exception | %s","Amazon Pay Exception | %s"
|
58 |
+
"Amazon Pay Exceptions","Amazon Pay Exceptions"
|
59 |
"Amazon Payments Account","Amazon Payments Konto"
|
60 |
"Amazon Seller Central","Amazon Seller Central"
|
61 |
"An authorization of %s has been processed by Amazon Payments (%s). The new status is %s.","Eine Autorisierung über %s wurde von Amazon Payments bearbeitet (%s). Der neue Status ist %s."
|
62 |
"An order of %s has been processed by Amazon Payments (%s). The new status is %s.","Eine Bestellung über %s wurde von Amazon Payments bearbeitet (%s). Der neue Status ist %s."
|
63 |
"API Call details","API-Aufrufdetails"
|
64 |
"Appearance Settings","Gestaltungseinstellungen"
|
65 |
+
"Appearance Settings for Amazon Pay and Login with Amazon","Gestaltungseinstellungen für Amazon Pay und Login mit Amazon"
|
66 |
+
"Appearance Settings for standalone Amazon Pay","Gestaltungseinstellungen nur für Amazon Pay"
|
67 |
"Asynchronous","Asynchron"
|
68 |
"Authentication Experience","Login Experience"
|
69 |
"Authorization Processing Mode","Autorisierungsmodus"
|
71 |
"Authorize & capture","Autorisieren & erfassen"
|
72 |
"Auto","Auto"
|
73 |
"Back","Zurück"
|
74 |
+
"By selecting Login with Amazon, you will be asked to sign-in securely to your Amazon account without leaving the shop.","Wenn Sie Login mit Amazon nutzen, müssen Sie im Webshop kein Kundenkonto einrichten, sondern können sich direkt mit den Daten aus Ihrem Amazon-Konto anmelden."
|
75 |
"Cancel","Abbrechen"
|
76 |
"Choose your payment region and click to quick-register.","Bitte wählen Sie, für welche Region Sie den Shop bzw. den Amazon Payments Account nutzen wollen. Diese Wahl legt auch die Währung (EUR oder GBP) fest, die Sie von den Kunden einziehen können."
|
77 |
"Client ID","Client ID"
|
93 |
"Download as CSV","Herunterladen als CSV"
|
94 |
"Each logfile will be rotated when it exceeds size of 8 Megabytes","Sobald 8 Megabyte überschritten werden, wird eine neue Datei erstellt."
|
95 |
"Email Options","Email Optionen"
|
96 |
+
"Enable Amazon Pay","Amazon Pay aktivieren"
|
97 |
"Enable Instant Payment Notifications","Instant Payment Notifications aktiviert"
|
98 |
"Enable logging","Logging einschalten"
|
99 |
"Enable Login with Amazon","Login mit Amazon aktivieren"
|
|
|
100 |
"English","Englisch"
|
101 |
"Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400.","Geben Sie einen Wert zwischen 200 und 600 Pixel. Für ein einspaltiges Widget geben Sie bitte ein Breite von weniger als 400 ein."
|
102 |
"Enter a value between 228 and 400 pixels","Geben Sie einen Wert zwischen 228 und 400 Pixel"
|
129 |
"Leave empty for access from any location","Leer lassen für den Zugriff von jedem beliebigen Standort"
|
130 |
"Light gray","Hellgrau"
|
131 |
"Login","Login"
|
|
|
132 |
"Login with Amazon","Login mit Amazon"
|
133 |
"Magento Settings","Magento-Einstellungen"
|
134 |
"Manual authorization","Manuel autorisieren"
|
146 |
"Order status on authorization","Status der Bestellung nach der Autorisierung"
|
147 |
"Page","Seite"
|
148 |
"Pay","Bezahlen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
"Payment Action","Zahlungsvorgang"
|
150 |
"Payment Region","Zahlungsregion"
|
151 |
"per page","pro Seite"
|
179 |
"Small","Klein"
|
180 |
"Spanish","Spanisch"
|
181 |
"Stack trace","Stack trace"
|
182 |
+
"Store Options","Store Options"
|
183 |
+
"Store name","Store name"
|
184 |
"Stores","Stores"
|
185 |
"Synchronous","Synchron"
|
186 |
"Tan","Beige"
|
187 |
"There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method.","Es gab ein Problem mit der ausgewählten Zahlungsart aus ihrem Amazon Konto. Bitte wählen Sie eine andere Zahlungsart aus Ihrem Amazon Konto oder wählen Sie einen anderen Checkout im Warenkorb."
|
188 |
"There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one.","Es gab ein Problem mit der ausgewählten Zahlungsart aus ihrem Amazon Konto. Bitte ändern Sie die gewünschte Zahlungsart oder legen Sie eine neue Zahlungsart an."
|
189 |
"There was an error processing your order. Please contact us or try again later.","Bei der Verarbeitung Ihrer Bestellung ist ein Fehler aufgetreten. Kontaktieren Sie uns oder probieren Sie es bitte später erneut."
|
190 |
+
"This extension integrates easily your Magento shop with Amazon Pay service.","Die Erweiterun integriert den ""Amazon Pay und Login mit Amazon"" Service in ihren Magento Shop."
|
191 |
"This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted.","Diese Funktion erfordert die Installation eines gültigen SSL-Zertifikats auf Ihrem Server. Achten Sie darauf, dass das SSL-Zertifikat von einer vertrauenswürdigen Zertifizierungsstelle ausgestellt wird. Selbst signierte Zertifikate sind nicht gestattet."
|
192 |
"This is not valid Seller Central configuration JSON","Das ist keine gültige Konfiguration für Seller Central (JSON)"
|
193 |
"Total %d records found","Total %d Einträge gefunden"
|
207 |
"Whoops! Your Access Key ID seems to be invalid.","Whoops! Ihre Access Key ID ist nicht korrekt."
|
208 |
"Whoops! Your Merchant ID seems to be invalid.","Whoops! Ihre Händlernummer ist nicht korrekt."
|
209 |
"Whoops! Your Secret Access Key seems to be invalid.","Whoops! Ihr Secret Access Key ist nicht korrekt."
|
210 |
+
"With Amazon Pay, you can use the shipping and payment information stored in your Amazon account to place an order on this website. It's a convenient and trusted way to pay that's enjoyed by millions of people.","Mit Amazon Pay können Sie im Webshop mit den Zahlungs- und Versandinformationen aus Ihrem Amazon-Kundenkonto bezahlen. Das macht Einkaufen bei uns schnell, einfach und sicher."
|
211 |
"X-Large","Sehr groß"
|
212 |
"You have aborted the login with Amazon. Please contact us or try again.","Sie haben den Login mit Amazon abgebrochen. Kontaktieren Sie uns oder probieren Sie es bitte später erneut."
|
213 |
"Your language","Ihre Sprache"
|
app/locale/en_GB/Creativestyle_AmazonPayments.csv
CHANGED
@@ -2,20 +2,20 @@
|
|
2 |
"--- Select reason code ---","--- Select reason code ---"
|
3 |
"--- Select state to simulate ---","--- Select state to simulate ---"
|
4 |
"-OR-","-OR-"
|
|
|
|
|
|
|
5 |
"""Login with Amazon"" button color","""Login with Amazon"" button colour"
|
6 |
"""Login with Amazon"" button size","""Login with Amazon"" button size"
|
7 |
"""Login with Amazon"" button type","""Login with Amazon"" button type"
|
8 |
-
"""Pay with Amazon"" button color","""Pay with Amazon"" button colour"
|
9 |
-
"""Pay with Amazon"" button size","""Pay with Amazon"" button size"
|
10 |
-
"""Pay with Amazon"" button type","""Pay with Amazon"" button type"
|
11 |
"%s API Call | %s","%s API Call | %s"
|
12 |
"* Required Fields","* Required Fields"
|
13 |
"... or enter your Amazon Payments account information manually","... or enter your Amazon Payments account information manually"
|
14 |
"<div id=""creative-system-config"">creativestyle Extensions</div>","<div id=""creative-system-config"">creativestyle Extensions</div>"
|
15 |
-
"<span class=""close">Click to reveal config for </span>%s","<span class=""close"">Click to reveal config for </span>%s"
|
16 |
"<span class=""close"">Click to reveal your </span>Amazon Seller Central config","<span class=""close"">Click to reveal your </span>Amazon Seller Central config"
|
17 |
-
"<strong>Amazon
|
18 |
-
"<strong>Amazon
|
19 |
"1 day","1 day"
|
20 |
"1 hour","1 hour"
|
21 |
"10 minutes","10 minutes"
|
@@ -47,14 +47,23 @@
|
|
47 |
"Amazon logo","Amazon logo"
|
48 |
"Amazon Order Reference ID: %s","Amazon Order Reference ID: %s"
|
49 |
"Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>","Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
"Amazon Payments Account","Amazon Payments Account"
|
51 |
"Amazon Seller Central","Amazon Seller Central"
|
52 |
"An authorization of %s has been processed by Amazon Payments (%s). The new status is %s.","An authorization of %s has been processed by Amazon Payments (%s). The new status is %s."
|
53 |
"An order of %s has been processed by Amazon Payments (%s). The new status is %s.","An order of %s has been processed by Amazon Payments (%s). The new status is %s."
|
54 |
"API Call details","API Call details"
|
55 |
"Appearance Settings","Appearance Settings"
|
56 |
-
"Appearance Settings for
|
57 |
-
"Appearance Settings for standalone Pay
|
58 |
"Asynchronous","Asynchronous"
|
59 |
"Authentication Experience","Authentication Experience"
|
60 |
"Authorization Processing Mode","Authorization Processing Mode"
|
@@ -62,7 +71,7 @@
|
|
62 |
"Authorize & capture","Authorize & capture"
|
63 |
"Auto","Auto"
|
64 |
"Back","Back"
|
65 |
-
"By selecting Amazon
|
66 |
"Cancel","Cancel"
|
67 |
"Choose your payment region and click to quick-register.","Choose your payment region and click to quick-register."
|
68 |
"Client ID","Client ID"
|
@@ -84,10 +93,10 @@
|
|
84 |
"Download as CSV","Download as CSV"
|
85 |
"Each logfile will be rotated when it exceeds size of 8 Megabytes","Each logfile will be rotated when it exceeds size of 8 Megabytes"
|
86 |
"Email Options","Email Options"
|
|
|
87 |
"Enable Instant Payment Notifications","Enable Instant Payment Notifications"
|
88 |
"Enable logging","Enable logging"
|
89 |
"Enable Login with Amazon","Enable Login with Amazon"
|
90 |
-
"Enable Pay with Amazon","Enable Pay with Amazon"
|
91 |
"English","English"
|
92 |
"Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400.","Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400."
|
93 |
"Enter a value between 228 and 400 pixels","Enter a value between 228 and 400 pixels"
|
@@ -120,7 +129,6 @@
|
|
120 |
"Leave empty for access from any location","Leave empty for access from any location"
|
121 |
"Light gray","Light gray"
|
122 |
"Login","Login"
|
123 |
-
"Login and Pay with Amazon","Login and Pay with Amazon"
|
124 |
"Login with Amazon","Login with Amazon"
|
125 |
"Magento Settings","Magento Settings"
|
126 |
"Manual authorization","Manual authorization"
|
@@ -138,13 +146,6 @@
|
|
138 |
"Order status on authorization","Order status on authorization"
|
139 |
"Page","Page"
|
140 |
"Pay","Pay"
|
141 |
-
"Pay with Amazon","Pay with Amazon"
|
142 |
-
"Pay with Amazon (Sandbox)","Pay with Amazon (Sandbox)"
|
143 |
-
"Pay with Amazon API Call","Pay with Amazon API Call"
|
144 |
-
"Pay with Amazon API Calls","Pay with Amazon API Calls"
|
145 |
-
"Pay with Amazon Exception","Pay with Amazon Exception"
|
146 |
-
"Pay with Amazon Exception | %s","Pay with Amazon Exception | %s"
|
147 |
-
"Pay with Amazon Exceptions","Pay with Amazon Exceptions"
|
148 |
"Payment Action","Payment Action"
|
149 |
"Payment Region","Payment Region"
|
150 |
"per page","per page"
|
@@ -178,13 +179,15 @@
|
|
178 |
"Small","Small"
|
179 |
"Spanish","Spanish"
|
180 |
"Stack trace","Stack trace"
|
|
|
|
|
181 |
"Stores","Stores"
|
182 |
"Synchronous","Synchronous"
|
183 |
"Tan","Tan"
|
184 |
"There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method.","There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method."
|
185 |
"There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one.","There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one."
|
186 |
"There was an error processing your order. Please contact us or try again later.","There was an error processing your order. Please contact us or try again later."
|
187 |
-
"This extension integrates easily your Magento shop with Pay
|
188 |
"This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted.","This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted."
|
189 |
"This is not valid Seller Central configuration JSON","This is not valid Seller Central configuration JSON"
|
190 |
"Total %d records found","Total %d records found"
|
@@ -204,7 +207,7 @@
|
|
204 |
"Whoops! Your Access Key ID seems to be invalid.","Whoops! Your Access Key ID seems to be invalid."
|
205 |
"Whoops! Your Merchant ID seems to be invalid.","Whoops! Your Merchant ID seems to be invalid."
|
206 |
"Whoops! Your Secret Access Key seems to be invalid.","Whoops! Your Secret Access Key seems to be invalid."
|
207 |
-
"With Amazon
|
208 |
"X-Large","X-Large"
|
209 |
"You have aborted the login with Amazon. Please contact us or try again.","You have aborted the login with Amazon. Please contact us or try again."
|
210 |
"Your language","Your language"
|
2 |
"--- Select reason code ---","--- Select reason code ---"
|
3 |
"--- Select state to simulate ---","--- Select state to simulate ---"
|
4 |
"-OR-","-OR-"
|
5 |
+
"""Amazon Pay"" button color","""Amazon Pay"" button colour"
|
6 |
+
"""Amazon Pay"" button size","""Amazon Pay"" button size"
|
7 |
+
"""Amazon Pay"" button type","""Amazon Pay"" button type"
|
8 |
"""Login with Amazon"" button color","""Login with Amazon"" button colour"
|
9 |
"""Login with Amazon"" button size","""Login with Amazon"" button size"
|
10 |
"""Login with Amazon"" button type","""Login with Amazon"" button type"
|
|
|
|
|
|
|
11 |
"%s API Call | %s","%s API Call | %s"
|
12 |
"* Required Fields","* Required Fields"
|
13 |
"... or enter your Amazon Payments account information manually","... or enter your Amazon Payments account information manually"
|
14 |
"<div id=""creative-system-config"">creativestyle Extensions</div>","<div id=""creative-system-config"">creativestyle Extensions</div>"
|
15 |
+
"<span class=""close"">Click to reveal config for </span>%s","<span class=""close"">Click to reveal config for </span>%s"
|
16 |
"<span class=""close"">Click to reveal your </span>Amazon Seller Central config","<span class=""close"">Click to reveal your </span>Amazon Seller Central config"
|
17 |
+
"<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details.","<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details."
|
18 |
+
"<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee.","<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee."
|
19 |
"1 day","1 day"
|
20 |
"1 hour","1 hour"
|
21 |
"10 minutes","10 minutes"
|
47 |
"Amazon logo","Amazon logo"
|
48 |
"Amazon Order Reference ID: %s","Amazon Order Reference ID: %s"
|
49 |
"Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>","Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>"
|
50 |
+
"Amazon Pay","Amazon Pay"
|
51 |
+
"Amazon Pay (Sandbox)","Amazon Pay (Sandbox)"
|
52 |
+
"Amazon Pay and Login with Amazon","Amazon Pay and Login with Amazon"
|
53 |
+
"Amazon Pay and Login with Amazon settings","Amazon Pay and Login with Amazon settings"
|
54 |
+
"Amazon Pay API Call","Amazon Pay API Call"
|
55 |
+
"Amazon Pay API Calls","Amazon Pay API Calls"
|
56 |
+
"Amazon Pay Exception","Amazon Pay Exception"
|
57 |
+
"Amazon Pay Exception | %s","Amazon Pay Exception | %s"
|
58 |
+
"Amazon Pay Exceptions","Amazon Pay Exceptions"
|
59 |
"Amazon Payments Account","Amazon Payments Account"
|
60 |
"Amazon Seller Central","Amazon Seller Central"
|
61 |
"An authorization of %s has been processed by Amazon Payments (%s). The new status is %s.","An authorization of %s has been processed by Amazon Payments (%s). The new status is %s."
|
62 |
"An order of %s has been processed by Amazon Payments (%s). The new status is %s.","An order of %s has been processed by Amazon Payments (%s). The new status is %s."
|
63 |
"API Call details","API Call details"
|
64 |
"Appearance Settings","Appearance Settings"
|
65 |
+
"Appearance Settings for Amazon Pay and Login with Amazon","Appearance Settings for Amazon Pay and Login with Amazon"
|
66 |
+
"Appearance Settings for standalone Amazon Pay","Appearance Settings for standalone Amazon Pay"
|
67 |
"Asynchronous","Asynchronous"
|
68 |
"Authentication Experience","Authentication Experience"
|
69 |
"Authorization Processing Mode","Authorization Processing Mode"
|
71 |
"Authorize & capture","Authorize & capture"
|
72 |
"Auto","Auto"
|
73 |
"Back","Back"
|
74 |
+
"By selecting Login with Amazon, you will be asked to sign-in securely to your Amazon account without leaving the shop.","By selecting Login with Amazon, you will be asked to sign-in securely to your Amazon account without leaving the shop."
|
75 |
"Cancel","Cancel"
|
76 |
"Choose your payment region and click to quick-register.","Choose your payment region and click to quick-register."
|
77 |
"Client ID","Client ID"
|
93 |
"Download as CSV","Download as CSV"
|
94 |
"Each logfile will be rotated when it exceeds size of 8 Megabytes","Each logfile will be rotated when it exceeds size of 8 Megabytes"
|
95 |
"Email Options","Email Options"
|
96 |
+
"Enable Amazon Pay","Enable Amazon Pay"
|
97 |
"Enable Instant Payment Notifications","Enable Instant Payment Notifications"
|
98 |
"Enable logging","Enable logging"
|
99 |
"Enable Login with Amazon","Enable Login with Amazon"
|
|
|
100 |
"English","English"
|
101 |
"Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400.","Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400."
|
102 |
"Enter a value between 228 and 400 pixels","Enter a value between 228 and 400 pixels"
|
129 |
"Leave empty for access from any location","Leave empty for access from any location"
|
130 |
"Light gray","Light gray"
|
131 |
"Login","Login"
|
|
|
132 |
"Login with Amazon","Login with Amazon"
|
133 |
"Magento Settings","Magento Settings"
|
134 |
"Manual authorization","Manual authorization"
|
146 |
"Order status on authorization","Order status on authorization"
|
147 |
"Page","Page"
|
148 |
"Pay","Pay"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
"Payment Action","Payment Action"
|
150 |
"Payment Region","Payment Region"
|
151 |
"per page","per page"
|
179 |
"Small","Small"
|
180 |
"Spanish","Spanish"
|
181 |
"Stack trace","Stack trace"
|
182 |
+
"Store Options","Store Options"
|
183 |
+
"Store name","Store name"
|
184 |
"Stores","Stores"
|
185 |
"Synchronous","Synchronous"
|
186 |
"Tan","Tan"
|
187 |
"There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method.","There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method."
|
188 |
"There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one.","There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one."
|
189 |
"There was an error processing your order. Please contact us or try again later.","There was an error processing your order. Please contact us or try again later."
|
190 |
+
"This extension integrates easily your Magento shop with Amazon Pay service.","This extension integrates easily your Magento shop with Amazon Pay service."
|
191 |
"This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted.","This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted."
|
192 |
"This is not valid Seller Central configuration JSON","This is not valid Seller Central configuration JSON"
|
193 |
"Total %d records found","Total %d records found"
|
207 |
"Whoops! Your Access Key ID seems to be invalid.","Whoops! Your Access Key ID seems to be invalid."
|
208 |
"Whoops! Your Merchant ID seems to be invalid.","Whoops! Your Merchant ID seems to be invalid."
|
209 |
"Whoops! Your Secret Access Key seems to be invalid.","Whoops! Your Secret Access Key seems to be invalid."
|
210 |
+
"With Amazon Pay, you can use the shipping and payment information stored in your Amazon account to place an order on this website. It's a convenient and trusted way to pay that's enjoyed by millions of people.","With Amazon Pay, you can use the shipping and payment information stored in your Amazon account to place an order on this website. It's a convenient and trusted way to pay that's enjoyed by millions of people."
|
211 |
"X-Large","X-Large"
|
212 |
"You have aborted the login with Amazon. Please contact us or try again.","You have aborted the login with Amazon. Please contact us or try again."
|
213 |
"Your language","Your language"
|
app/locale/en_US/Creativestyle_AmazonPayments.csv
CHANGED
@@ -2,20 +2,20 @@
|
|
2 |
"--- Select reason code ---","--- Select reason code ---"
|
3 |
"--- Select state to simulate ---","--- Select state to simulate ---"
|
4 |
"-OR-","-OR-"
|
|
|
|
|
|
|
5 |
"""Login with Amazon"" button color","""Login with Amazon"" button color"
|
6 |
"""Login with Amazon"" button size","""Login with Amazon"" button size"
|
7 |
"""Login with Amazon"" button type","""Login with Amazon"" button type"
|
8 |
-
"""Pay with Amazon"" button color","""Pay with Amazon"" button color"
|
9 |
-
"""Pay with Amazon"" button size","""Pay with Amazon"" button size"
|
10 |
-
"""Pay with Amazon"" button type","""Pay with Amazon"" button type"
|
11 |
"%s API Call | %s","%s API Call | %s"
|
12 |
"* Required Fields","* Required Fields"
|
13 |
"... or enter your Amazon Payments account information manually","... or enter your Amazon Payments account information manually"
|
14 |
"<div id=""creative-system-config"">creativestyle Extensions</div>","<div id=""creative-system-config"">creativestyle Extensions</div>"
|
15 |
"<span class=""close"">Click to reveal config for </span>%s","<span class=""close"">Click to reveal config for </span>%s"
|
16 |
"<span class=""close"">Click to reveal your </span>Amazon Seller Central config","<span class=""close"">Click to reveal your </span>Amazon Seller Central config"
|
17 |
-
"<strong>Amazon
|
18 |
-
"<strong>Amazon
|
19 |
"1 day","1 day"
|
20 |
"1 hour","1 hour"
|
21 |
"10 minutes","10 minutes"
|
@@ -47,14 +47,23 @@
|
|
47 |
"Amazon logo","Amazon logo"
|
48 |
"Amazon Order Reference ID: %s","Amazon Order Reference ID: %s"
|
49 |
"Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>","Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
"Amazon Payments Account","Amazon Payments Account"
|
51 |
"Amazon Seller Central","Amazon Seller Central"
|
52 |
"An authorization of %s has been processed by Amazon Payments (%s). The new status is %s.","An authorization of %s has been processed by Amazon Payments (%s). The new status is %s."
|
53 |
"An order of %s has been processed by Amazon Payments (%s). The new status is %s.","An order of %s has been processed by Amazon Payments (%s). The new status is %s."
|
54 |
"API Call details","API Call details"
|
55 |
"Appearance Settings","Appearance Settings"
|
56 |
-
"Appearance Settings for
|
57 |
-
"Appearance Settings for standalone Pay
|
58 |
"Asynchronous","Asynchronous"
|
59 |
"Authentication Experience","Authentication Experience"
|
60 |
"Authorization Processing Mode","Authorization Processing Mode"
|
@@ -62,7 +71,7 @@
|
|
62 |
"Authorize & capture","Authorize & capture"
|
63 |
"Auto","Auto"
|
64 |
"Back","Back"
|
65 |
-
"By selecting Amazon
|
66 |
"Cancel","Cancel"
|
67 |
"Choose your payment region and click to quick-register.","Choose your payment region and click to quick-register."
|
68 |
"Client ID","Client ID"
|
@@ -84,10 +93,10 @@
|
|
84 |
"Download as CSV","Download as CSV"
|
85 |
"Each logfile will be rotated when it exceeds size of 8 Megabytes","Each logfile will be rotated when it exceeds size of 8 Megabytes"
|
86 |
"Email Options","Email Options"
|
|
|
87 |
"Enable Instant Payment Notifications","Enable Instant Payment Notifications"
|
88 |
"Enable logging","Enable logging"
|
89 |
"Enable Login with Amazon","Enable Login with Amazon"
|
90 |
-
"Enable Pay with Amazon","Enable Pay with Amazon"
|
91 |
"English","English"
|
92 |
"Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400.","Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400."
|
93 |
"Enter a value between 228 and 400 pixels","Enter a value between 228 and 400 pixels"
|
@@ -120,7 +129,6 @@
|
|
120 |
"Leave empty for access from any location","Leave empty for access from any location"
|
121 |
"Light gray","Light gray"
|
122 |
"Login","Login"
|
123 |
-
"Login and Pay with Amazon","Login and Pay with Amazon"
|
124 |
"Login with Amazon","Login with Amazon"
|
125 |
"Magento Settings","Magento Settings"
|
126 |
"Manual authorization","Manual authorization"
|
@@ -138,13 +146,6 @@
|
|
138 |
"Order status on authorization","Order status on authorization"
|
139 |
"Page","Page"
|
140 |
"Pay","Pay"
|
141 |
-
"Pay with Amazon","Pay with Amazon"
|
142 |
-
"Pay with Amazon (Sandbox)","Pay with Amazon (Sandbox)"
|
143 |
-
"Pay with Amazon API Call","Pay with Amazon API Call"
|
144 |
-
"Pay with Amazon API Calls","Pay with Amazon API Calls"
|
145 |
-
"Pay with Amazon Exception","Pay with Amazon Exception"
|
146 |
-
"Pay with Amazon Exception | %s","Pay with Amazon Exception | %s"
|
147 |
-
"Pay with Amazon Exceptions","Pay with Amazon Exceptions"
|
148 |
"Payment Action","Payment Action"
|
149 |
"Payment Region","Payment Region"
|
150 |
"per page","per page"
|
@@ -178,13 +179,15 @@
|
|
178 |
"Small","Small"
|
179 |
"Spanish","Spanish"
|
180 |
"Stack trace","Stack trace"
|
|
|
|
|
181 |
"Stores","Stores"
|
182 |
"Synchronous","Synchronous"
|
183 |
"Tan","Tan"
|
184 |
"There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method.","There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method."
|
185 |
"There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one.","There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one."
|
186 |
"There was an error processing your order. Please contact us or try again later.","There was an error processing your order. Please contact us or try again later."
|
187 |
-
"This extension integrates easily your Magento shop with Pay
|
188 |
"This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted.","This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted."
|
189 |
"This is not valid Seller Central configuration JSON","This is not valid Seller Central configuration JSON"
|
190 |
"Total %d records found","Total %d records found"
|
@@ -204,7 +207,7 @@
|
|
204 |
"Whoops! Your Access Key ID seems to be invalid.","Whoops! Your Access Key ID seems to be invalid."
|
205 |
"Whoops! Your Merchant ID seems to be invalid.","Whoops! Your Merchant ID seems to be invalid."
|
206 |
"Whoops! Your Secret Access Key seems to be invalid.","Whoops! Your Secret Access Key seems to be invalid."
|
207 |
-
"With Amazon
|
208 |
"X-Large","X-Large"
|
209 |
"You have aborted the login with Amazon. Please contact us or try again.","You have aborted the login with Amazon. Please contact us or try again."
|
210 |
"Your language","Your language"
|
2 |
"--- Select reason code ---","--- Select reason code ---"
|
3 |
"--- Select state to simulate ---","--- Select state to simulate ---"
|
4 |
"-OR-","-OR-"
|
5 |
+
"""Amazon Pay"" button color","""Amazon Pay"" button color"
|
6 |
+
"""Amazon Pay"" button size","""Amazon Pay"" button size"
|
7 |
+
"""Amazon Pay"" button type","""Amazon Pay"" button type"
|
8 |
"""Login with Amazon"" button color","""Login with Amazon"" button color"
|
9 |
"""Login with Amazon"" button size","""Login with Amazon"" button size"
|
10 |
"""Login with Amazon"" button type","""Login with Amazon"" button type"
|
|
|
|
|
|
|
11 |
"%s API Call | %s","%s API Call | %s"
|
12 |
"* Required Fields","* Required Fields"
|
13 |
"... or enter your Amazon Payments account information manually","... or enter your Amazon Payments account information manually"
|
14 |
"<div id=""creative-system-config"">creativestyle Extensions</div>","<div id=""creative-system-config"">creativestyle Extensions</div>"
|
15 |
"<span class=""close"">Click to reveal config for </span>%s","<span class=""close"">Click to reveal config for </span>%s"
|
16 |
"<span class=""close"">Click to reveal your </span>Amazon Seller Central config","<span class=""close"">Click to reveal your </span>Amazon Seller Central config"
|
17 |
+
"<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details.","<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details."
|
18 |
+
"<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee.","<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee."
|
19 |
"1 day","1 day"
|
20 |
"1 hour","1 hour"
|
21 |
"10 minutes","10 minutes"
|
47 |
"Amazon logo","Amazon logo"
|
48 |
"Amazon Order Reference ID: %s","Amazon Order Reference ID: %s"
|
49 |
"Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>","Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>"
|
50 |
+
"Amazon Pay","Amazon Pay"
|
51 |
+
"Amazon Pay (Sandbox)","Amazon Pay (Sandbox)"
|
52 |
+
"Amazon Pay and Login with Amazon","Amazon Pay and Login with Amazon"
|
53 |
+
"Amazon Pay and Login with Amazon settings","Amazon Pay and Login with Amazon settings"
|
54 |
+
"Amazon Pay API Call","Amazon Pay API Call"
|
55 |
+
"Amazon Pay API Calls","Amazon Pay API Calls"
|
56 |
+
"Amazon Pay Exception","Amazon Pay Exception"
|
57 |
+
"Amazon Pay Exception | %s","Amazon Pay Exception | %s"
|
58 |
+
"Amazon Pay Exceptions","Amazon Pay Exceptions"
|
59 |
"Amazon Payments Account","Amazon Payments Account"
|
60 |
"Amazon Seller Central","Amazon Seller Central"
|
61 |
"An authorization of %s has been processed by Amazon Payments (%s). The new status is %s.","An authorization of %s has been processed by Amazon Payments (%s). The new status is %s."
|
62 |
"An order of %s has been processed by Amazon Payments (%s). The new status is %s.","An order of %s has been processed by Amazon Payments (%s). The new status is %s."
|
63 |
"API Call details","API Call details"
|
64 |
"Appearance Settings","Appearance Settings"
|
65 |
+
"Appearance Settings for Amazon Pay and Login with Amazon","Appearance Settings for Amazon Pay and Login with Amazon"
|
66 |
+
"Appearance Settings for standalone Amazon Pay","Appearance Settings for standalone Amazon Pay"
|
67 |
"Asynchronous","Asynchronous"
|
68 |
"Authentication Experience","Authentication Experience"
|
69 |
"Authorization Processing Mode","Authorization Processing Mode"
|
71 |
"Authorize & capture","Authorize & capture"
|
72 |
"Auto","Auto"
|
73 |
"Back","Back"
|
74 |
+
"By selecting Login with Amazon, you will be asked to sign-in securely to your Amazon account without leaving the shop.","By selecting Login with Amazon, you will be asked to sign-in securely to your Amazon account without leaving the shop."
|
75 |
"Cancel","Cancel"
|
76 |
"Choose your payment region and click to quick-register.","Choose your payment region and click to quick-register."
|
77 |
"Client ID","Client ID"
|
93 |
"Download as CSV","Download as CSV"
|
94 |
"Each logfile will be rotated when it exceeds size of 8 Megabytes","Each logfile will be rotated when it exceeds size of 8 Megabytes"
|
95 |
"Email Options","Email Options"
|
96 |
+
"Enable Amazon Pay","Enable Amazon Pay"
|
97 |
"Enable Instant Payment Notifications","Enable Instant Payment Notifications"
|
98 |
"Enable logging","Enable logging"
|
99 |
"Enable Login with Amazon","Enable Login with Amazon"
|
|
|
100 |
"English","English"
|
101 |
"Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400.","Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400."
|
102 |
"Enter a value between 228 and 400 pixels","Enter a value between 228 and 400 pixels"
|
129 |
"Leave empty for access from any location","Leave empty for access from any location"
|
130 |
"Light gray","Light gray"
|
131 |
"Login","Login"
|
|
|
132 |
"Login with Amazon","Login with Amazon"
|
133 |
"Magento Settings","Magento Settings"
|
134 |
"Manual authorization","Manual authorization"
|
146 |
"Order status on authorization","Order status on authorization"
|
147 |
"Page","Page"
|
148 |
"Pay","Pay"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
"Payment Action","Payment Action"
|
150 |
"Payment Region","Payment Region"
|
151 |
"per page","per page"
|
179 |
"Small","Small"
|
180 |
"Spanish","Spanish"
|
181 |
"Stack trace","Stack trace"
|
182 |
+
"Store Options","Store Options"
|
183 |
+
"Store name","Store name"
|
184 |
"Stores","Stores"
|
185 |
"Synchronous","Synchronous"
|
186 |
"Tan","Tan"
|
187 |
"There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method.","There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method."
|
188 |
"There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one.","There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one."
|
189 |
"There was an error processing your order. Please contact us or try again later.","There was an error processing your order. Please contact us or try again later."
|
190 |
+
"This extension integrates easily your Magento shop with Amazon Pay service.","This extension integrates easily your Magento shop with Amazon Pay service."
|
191 |
"This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted.","This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted."
|
192 |
"This is not valid Seller Central configuration JSON","This is not valid Seller Central configuration JSON"
|
193 |
"Total %d records found","Total %d records found"
|
207 |
"Whoops! Your Access Key ID seems to be invalid.","Whoops! Your Access Key ID seems to be invalid."
|
208 |
"Whoops! Your Merchant ID seems to be invalid.","Whoops! Your Merchant ID seems to be invalid."
|
209 |
"Whoops! Your Secret Access Key seems to be invalid.","Whoops! Your Secret Access Key seems to be invalid."
|
210 |
+
"With Amazon Pay, you can use the shipping and payment information stored in your Amazon account to place an order on this website. It's a convenient and trusted way to pay that's enjoyed by millions of people.","With Amazon Pay, you can use the shipping and payment information stored in your Amazon account to place an order on this website. It's a convenient and trusted way to pay that's enjoyed by millions of people."
|
211 |
"X-Large","X-Large"
|
212 |
"You have aborted the login with Amazon. Please contact us or try again.","You have aborted the login with Amazon. Please contact us or try again."
|
213 |
"Your language","Your language"
|
app/locale/es_ES/Creativestyle_AmazonPayments.csv
CHANGED
@@ -2,20 +2,20 @@
|
|
2 |
"--- Select reason code ---","--- Seleccionar razón de rechazo ---"
|
3 |
"--- Select state to simulate ---","--- Seleccionar estado a simular ---"
|
4 |
"-OR-","-O BIEN-"
|
|
|
|
|
|
|
5 |
"""Login with Amazon"" button color","""Login con Amazon""-Color del botón"
|
6 |
"""Login with Amazon"" button size","""Login con Amazon""-Tamaño del botón"
|
7 |
"""Login with Amazon"" button type","""Login con Amazon""-Tipo de botón"
|
8 |
-
"""Pay with Amazon"" button color","""Pagar con Amazon""-Color del botón"
|
9 |
-
"""Pay with Amazon"" button size","""Pagar con Amazon""-Tamaño del botón"
|
10 |
-
"""Pay with Amazon"" button type","""Pagar con Amazon""-Tipo de botón"
|
11 |
"%s API Call | %s","%s Llamada API | %s"
|
12 |
"* Required Fields","* Campos obligatorios"
|
13 |
"... or enter your Amazon Payments account information manually","... o introduce los datos de tu cuenta de Amazon Payments manualmente"
|
14 |
"<div id=""creative-system-config"">creativestyle Extensions</div>","<div id=""creative-system-config"">creativestyle Extensions</div>"
|
15 |
"<span class=""close"">Click to reveal config for </span>%s","<span class=""close"">Haz clic para revelar la configuración de </span>%s"
|
16 |
-
"<span class=""close"">Click to reveal your </span>Amazon Seller Central config","<span class=""close"">Haz clic para revelar tu</span>configuración de Amazon Seller Central"
|
17 |
-
"<strong>Amazon
|
18 |
-
"<strong>Amazon
|
19 |
"1 day","1 día"
|
20 |
"1 hour","1 hora"
|
21 |
"10 minutes","10 minutos"
|
@@ -47,14 +47,23 @@
|
|
47 |
"Amazon logo","Logo de Amazon"
|
48 |
"Amazon Order Reference ID: %s","Numero de orden de referencia de Amazon: %s"
|
49 |
"Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>","Numero de orden de referencia de Amazon: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
"Amazon Payments Account","Cuenta de Amazon Payments"
|
51 |
"Amazon Seller Central","Amazon Seller Central"
|
52 |
"An authorization of %s has been processed by Amazon Payments (%s). The new status is %s.","Una autorización de %s ha sido procesada por Amazon Payments (%s). El nuevo estado es %s."
|
53 |
"An order of %s has been processed by Amazon Payments (%s). The new status is %s.","Un pedido de %s ha sido procesada por Amazon Payments (%s). El nuevo estado es %s."
|
54 |
"API Call details","Detalles de las llamadas API"
|
55 |
"Appearance Settings","Configuración de apariencia"
|
56 |
-
"Appearance Settings for
|
57 |
-
"Appearance Settings for standalone Pay
|
58 |
"Asynchronous","Asíncrono"
|
59 |
"Authentication Experience","Experiencia de autentificación"
|
60 |
"Authorization Processing Mode","Modo de procesado de la autorización"
|
@@ -62,7 +71,7 @@
|
|
62 |
"Authorize & capture","Autorizar & capturar"
|
63 |
"Auto","Automático"
|
64 |
"Back","Atrás"
|
65 |
-
"By selecting Amazon
|
66 |
"Cancel","Cancelar"
|
67 |
"Choose your payment region and click to quick-register.","Elige tu regigión de pago y haz click para registrarse rápidamente."
|
68 |
"Client ID","Client ID"
|
@@ -84,10 +93,10 @@
|
|
84 |
"Download as CSV","Descargar en formato CSV"
|
85 |
"Each logfile will be rotated when it exceeds size of 8 Megabytes","Un nuevo archivo se generará al sobrepasar 8 Megabytes"
|
86 |
"Email Options","Opciones de email"
|
|
|
87 |
"Enable Instant Payment Notifications","Activar IPNs - Instant Payment Notifications"
|
88 |
"Enable logging","Activar Logs"
|
89 |
"Enable Login with Amazon","Activar Login con Amazon"
|
90 |
-
"Enable Pay with Amazon","Activar Pagar con Amazon"
|
91 |
"English","Inglés"
|
92 |
"Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400.","Introduce un valor entre 200 y 600 píxels. Para widgets de una única columna, introduce una anchura menor que 400 píxels."
|
93 |
"Enter a value between 228 and 400 pixels","Introduce un valor entre 228 y 400 píxels"
|
@@ -120,7 +129,6 @@
|
|
120 |
"Leave empty for access from any location","Dejar vacío para permitir acceso desde cualquier lugar"
|
121 |
"Light gray","Gris claro"
|
122 |
"Login","Login"
|
123 |
-
"Login and Pay with Amazon","Login y Pagar con Amazon"
|
124 |
"Login with Amazon","Login con Amazon"
|
125 |
"Magento Settings","Configuración de Magento"
|
126 |
"Manual authorization","Autorización manual"
|
@@ -138,13 +146,6 @@
|
|
138 |
"Order status on authorization","Estado del pedido tras autorización"
|
139 |
"Page","Página"
|
140 |
"Pay","Pago"
|
141 |
-
"Pay with Amazon","Pagar con Amazon"
|
142 |
-
"Pay with Amazon (Sandbox)","Pagar con Amazon (Sandbox)"
|
143 |
-
"Pay with Amazon API Call","Pagar con Amazon - llamada API"
|
144 |
-
"Pay with Amazon API Calls","Pagar con Amazon - llamadas API"
|
145 |
-
"Pay with Amazon Exception","Pagar con Amazon - Excepción"
|
146 |
-
"Pay with Amazon Exception | %s","Pagar con Amazon - Excepción | %s"
|
147 |
-
"Pay with Amazon Exceptions","Pagar con Amazon - Excepciones"
|
148 |
"Payment Action","Acción de pago"
|
149 |
"Payment Region","Región de pago"
|
150 |
"per page","por página"
|
@@ -178,13 +179,15 @@
|
|
178 |
"Small","Pequeño"
|
179 |
"Spanish","Español"
|
180 |
"Stack trace","Stack trace"
|
|
|
|
|
181 |
"Stores","Tiendas"
|
182 |
"Synchronous","Síncrono"
|
183 |
"Tan","Tan"
|
184 |
"There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method.","Se ha producido un problema con el método de pago seleccionado en tu cuenta de Amazon. Selecciona otro método de pago o vuelve a la cesta para seleccionar otro método de finalización de la compra."
|
185 |
"There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one.","Se ha producido un problema con el método de pago seleccionado en tu cuenta de Amazon. Actualiza el método de pago o selecciona otro."
|
186 |
"There was an error processing your order. Please contact us or try again later.","Se ha producido un error al procesar su pedido. Por favor, contáctenos o inténtelo de nuevo más tarde."
|
187 |
-
"This extension integrates easily your Magento shop with Pay
|
188 |
"This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted.","Esta feature require que un certificado SSL esté instalado en el servidor. Asegúrate de que el certificado SSL sea expedido por una Certificate Authority de confianza. Los certificados autofirmados no están permitidos."
|
189 |
"This is not valid Seller Central configuration JSON","Esta configuración de Seller Central (JSON) no es válida"
|
190 |
"Total %d records found","Total %d entradas encontradas"
|
@@ -204,7 +207,7 @@
|
|
204 |
"Whoops! Your Access Key ID seems to be invalid.","¡Vaya! Parece que tu ID de clave de acceso no es válido."
|
205 |
"Whoops! Your Merchant ID seems to be invalid.","¡Vaya! Parece que tu ID de vendedor no es válido."
|
206 |
"Whoops! Your Secret Access Key seems to be invalid.","¡Vaya! Parece que tu ID de clave de acceso secreta no es válido."
|
207 |
-
"With Amazon
|
208 |
"X-Large","Muy grande"
|
209 |
"You have aborted the login with Amazon. Please contact us or try again.","Has cancelado el inicio de sesión con Amazon. Ponte en contacto con nosotros o inténtalo de nuevo."
|
210 |
"Your language","Tu idioma"
|
2 |
"--- Select reason code ---","--- Seleccionar razón de rechazo ---"
|
3 |
"--- Select state to simulate ---","--- Seleccionar estado a simular ---"
|
4 |
"-OR-","-O BIEN-"
|
5 |
+
"""Amazon Pay"" button color","""Amazon Pay""-Color del botón"
|
6 |
+
"""Amazon Pay"" button size","""Amazon Pay""-Tamaño del botón"
|
7 |
+
"""Amazon Pay"" button type","""Amazon Pay""-Tipo de botón"
|
8 |
"""Login with Amazon"" button color","""Login con Amazon""-Color del botón"
|
9 |
"""Login with Amazon"" button size","""Login con Amazon""-Tamaño del botón"
|
10 |
"""Login with Amazon"" button type","""Login con Amazon""-Tipo de botón"
|
|
|
|
|
|
|
11 |
"%s API Call | %s","%s Llamada API | %s"
|
12 |
"* Required Fields","* Campos obligatorios"
|
13 |
"... or enter your Amazon Payments account information manually","... o introduce los datos de tu cuenta de Amazon Payments manualmente"
|
14 |
"<div id=""creative-system-config"">creativestyle Extensions</div>","<div id=""creative-system-config"">creativestyle Extensions</div>"
|
15 |
"<span class=""close"">Click to reveal config for </span>%s","<span class=""close"">Haz clic para revelar la configuración de </span>%s"
|
16 |
+
"<span class=""close"">Click to reveal your </span>Amazon Seller Central config","<span class=""close"">Haz clic para revelar tu </span>configuración de Amazon Seller Central"
|
17 |
+
"<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details.","Con <strong>Amazon Pay</strong> puedes comprar rápido, de manera efectiva y segura. Puedes pagar en nuestra página sin tener que volver a introducir tu dirección y datos de pago."
|
18 |
+
"<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee.","Con <strong>Amazon Pay</strong> puedes comprar rápido, de manera efectiva y segura. Puedes pagar en nuestra página sin tener que volver a introducir tu dirección y datos de pago. Las transacciones con Amazon están protegidas por la Garantía de la A a"
|
19 |
"1 day","1 día"
|
20 |
"1 hour","1 hora"
|
21 |
"10 minutes","10 minutos"
|
47 |
"Amazon logo","Logo de Amazon"
|
48 |
"Amazon Order Reference ID: %s","Numero de orden de referencia de Amazon: %s"
|
49 |
"Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>","Numero de orden de referencia de Amazon: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>"
|
50 |
+
"Amazon Pay","Amazon Pay"
|
51 |
+
"Amazon Pay (Sandbox)","Amazon Pay (Sandbox)"
|
52 |
+
"Amazon Pay and Login with Amazon","Amazon Pay y Login con Amazon"
|
53 |
+
"Amazon Pay and Login with Amazon settings","Configuración de Amazon Pay y Login con Amazon"
|
54 |
+
"Amazon Pay API Call","Amazon Pay - llamada API"
|
55 |
+
"Amazon Pay API Calls","Amazon Pay - llamadas API"
|
56 |
+
"Amazon Pay Exception","Amazon Pay - Excepción"
|
57 |
+
"Amazon Pay Exception | %s","Amazon Pay - Excepción | %s"
|
58 |
+
"Amazon Pay Exceptions","Amazon Pay - Excepciones"
|
59 |
"Amazon Payments Account","Cuenta de Amazon Payments"
|
60 |
"Amazon Seller Central","Amazon Seller Central"
|
61 |
"An authorization of %s has been processed by Amazon Payments (%s). The new status is %s.","Una autorización de %s ha sido procesada por Amazon Payments (%s). El nuevo estado es %s."
|
62 |
"An order of %s has been processed by Amazon Payments (%s). The new status is %s.","Un pedido de %s ha sido procesada por Amazon Payments (%s). El nuevo estado es %s."
|
63 |
"API Call details","Detalles de las llamadas API"
|
64 |
"Appearance Settings","Configuración de apariencia"
|
65 |
+
"Appearance Settings for Amazon Pay and Login with Amazon","Configuración de apariencia de Amazon Pay y Login con Amazon"
|
66 |
+
"Appearance Settings for standalone Amazon Pay","Configuración de apariencia de Amazon Pay si Login con Amazon está desactivado"
|
67 |
"Asynchronous","Asíncrono"
|
68 |
"Authentication Experience","Experiencia de autentificación"
|
69 |
"Authorization Processing Mode","Modo de procesado de la autorización"
|
71 |
"Authorize & capture","Autorizar & capturar"
|
72 |
"Auto","Automático"
|
73 |
"Back","Atrás"
|
74 |
+
"By selecting Login with Amazon, you will be asked to sign-in securely to your Amazon account without leaving the shop.","Al seleccionar Login con Amazon, tendrás que iniciar sesión con seguridad en tu cuenta de Amazon sin salir de la tienda."
|
75 |
"Cancel","Cancelar"
|
76 |
"Choose your payment region and click to quick-register.","Elige tu regigión de pago y haz click para registrarse rápidamente."
|
77 |
"Client ID","Client ID"
|
93 |
"Download as CSV","Descargar en formato CSV"
|
94 |
"Each logfile will be rotated when it exceeds size of 8 Megabytes","Un nuevo archivo se generará al sobrepasar 8 Megabytes"
|
95 |
"Email Options","Opciones de email"
|
96 |
+
"Enable Amazon Pay","Activar Amazon Pay"
|
97 |
"Enable Instant Payment Notifications","Activar IPNs - Instant Payment Notifications"
|
98 |
"Enable logging","Activar Logs"
|
99 |
"Enable Login with Amazon","Activar Login con Amazon"
|
|
|
100 |
"English","Inglés"
|
101 |
"Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400.","Introduce un valor entre 200 y 600 píxels. Para widgets de una única columna, introduce una anchura menor que 400 píxels."
|
102 |
"Enter a value between 228 and 400 pixels","Introduce un valor entre 228 y 400 píxels"
|
129 |
"Leave empty for access from any location","Dejar vacío para permitir acceso desde cualquier lugar"
|
130 |
"Light gray","Gris claro"
|
131 |
"Login","Login"
|
|
|
132 |
"Login with Amazon","Login con Amazon"
|
133 |
"Magento Settings","Configuración de Magento"
|
134 |
"Manual authorization","Autorización manual"
|
146 |
"Order status on authorization","Estado del pedido tras autorización"
|
147 |
"Page","Página"
|
148 |
"Pay","Pago"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
"Payment Action","Acción de pago"
|
150 |
"Payment Region","Región de pago"
|
151 |
"per page","por página"
|
179 |
"Small","Pequeño"
|
180 |
"Spanish","Español"
|
181 |
"Stack trace","Stack trace"
|
182 |
+
"Store Options","Store Options"
|
183 |
+
"Store name","Store name"
|
184 |
"Stores","Tiendas"
|
185 |
"Synchronous","Síncrono"
|
186 |
"Tan","Tan"
|
187 |
"There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method.","Se ha producido un problema con el método de pago seleccionado en tu cuenta de Amazon. Selecciona otro método de pago o vuelve a la cesta para seleccionar otro método de finalización de la compra."
|
188 |
"There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one.","Se ha producido un problema con el método de pago seleccionado en tu cuenta de Amazon. Actualiza el método de pago o selecciona otro."
|
189 |
"There was an error processing your order. Please contact us or try again later.","Se ha producido un error al procesar su pedido. Por favor, contáctenos o inténtelo de nuevo más tarde."
|
190 |
+
"This extension integrates easily your Magento shop with Amazon Pay service.","Esta extensión integra de manera sencilla tu tienda Magento con el Servicio de Amazon Pay"
|
191 |
"This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted.","Esta feature require que un certificado SSL esté instalado en el servidor. Asegúrate de que el certificado SSL sea expedido por una Certificate Authority de confianza. Los certificados autofirmados no están permitidos."
|
192 |
"This is not valid Seller Central configuration JSON","Esta configuración de Seller Central (JSON) no es válida"
|
193 |
"Total %d records found","Total %d entradas encontradas"
|
207 |
"Whoops! Your Access Key ID seems to be invalid.","¡Vaya! Parece que tu ID de clave de acceso no es válido."
|
208 |
"Whoops! Your Merchant ID seems to be invalid.","¡Vaya! Parece que tu ID de vendedor no es válido."
|
209 |
"Whoops! Your Secret Access Key seems to be invalid.","¡Vaya! Parece que tu ID de clave de acceso secreta no es válido."
|
210 |
+
"With Amazon Pay, you can use the shipping and payment information stored in your Amazon account to place an order on this website. It's a convenient and trusted way to pay that's enjoyed by millions of people.","Con Amazon Pay podrás utilizar la información de envío y pago almacenada en tu cuenta de Amazon para realizar pedidos en la página web. Supone una forma de pago conveniente y fiable que ya disfrutan millones de compradores."
|
211 |
"X-Large","Muy grande"
|
212 |
"You have aborted the login with Amazon. Please contact us or try again.","Has cancelado el inicio de sesión con Amazon. Ponte en contacto con nosotros o inténtalo de nuevo."
|
213 |
"Your language","Tu idioma"
|
app/locale/fr_FR/Creativestyle_AmazonPayments.csv
CHANGED
@@ -2,20 +2,20 @@
|
|
2 |
"--- Select reason code ---","--- choisir une raison ---"
|
3 |
"--- Select state to simulate ---","--- Choisir l'état à simuler ---"
|
4 |
"-OR-","-OU-"
|
|
|
|
|
|
|
5 |
"""Login with Amazon"" button color","""Connectez-vous avec Amazon""-couleur bouton"
|
6 |
"""Login with Amazon"" button size","""Connectez-vous avec Amazon""-bouton taille"
|
7 |
"""Login with Amazon"" button type","""Connectez-vous avec Amazon""-bouton type"
|
8 |
-
"""Pay with Amazon"" button color","""Payez avec Amazon""-couleur bouton"
|
9 |
-
"""Pay with Amazon"" button size","""Payez avec Amazon""-bouton taille"
|
10 |
-
"""Pay with Amazon"" button type","""Payez avec Amazon""-bouton type"
|
11 |
"%s API Call | %s","%s API Call | %s"
|
12 |
"* Required Fields","* Champs requis"
|
13 |
"... or enter your Amazon Payments account information manually","... ou saisissez vos informations de compte Amazon Payments manuellement"
|
14 |
"<div id=""creative-system-config"">creativestyle Extensions</div>","<div id=""creative-system-config"">creativestyle Extensions</div>"
|
15 |
"<span class=""close"">Click to reveal config for </span>%s","<span class=""close"">Cliquez pour afficher la configuration pour </span>%s"
|
16 |
"<span class=""close"">Click to reveal your </span>Amazon Seller Central config","<span class=""close"">Cliquez pour faire apparaître votre </span>configuration Amazon Seller Central"
|
17 |
-
"<strong>Amazon
|
18 |
-
"<strong>Amazon
|
19 |
"1 day","1 jour"
|
20 |
"1 hour","1 heure"
|
21 |
"10 minutes","10 minutes"
|
@@ -47,14 +47,23 @@
|
|
47 |
"Amazon logo","Logo Amazon"
|
48 |
"Amazon Order Reference ID: %s","Référence de la commande Amazon: %s"
|
49 |
"Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>","Référence de la commande Amazon: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
"Amazon Payments Account","Compte Amazon Payments"
|
51 |
"Amazon Seller Central","Amazon Seller Central"
|
52 |
"An authorization of %s has been processed by Amazon Payments (%s). The new status is %s.","Une autorisation sur %s a été traité par Amazon Payments (%s). Le nouveau status est %s."
|
53 |
"An order of %s has been processed by Amazon Payments (%s). The new status is %s.","Une commande sur %s a été traité par Amazon Payments (%s). Le nouveau status est %s."
|
54 |
"API Call details","détails appel API"
|
55 |
"Appearance Settings","Configuration apparence"
|
56 |
-
"Appearance Settings for
|
57 |
-
"Appearance Settings for standalone Pay
|
58 |
"Asynchronous","Asynchrone"
|
59 |
"Authentication Experience","Idenfication"
|
60 |
"Authorization Processing Mode","Mode d'autorisation"
|
@@ -62,7 +71,7 @@
|
|
62 |
"Authorize & capture","Autoriser & capture"
|
63 |
"Auto","Auto"
|
64 |
"Back","Retour"
|
65 |
-
"By selecting Amazon
|
66 |
"Choose your payment region and click to quick-register.","Choisissez votre région de paiement et cliquez pour une inscription rapide."
|
67 |
"Client ID","ID client"
|
68 |
"Cancel","Annuler"
|
@@ -84,10 +93,10 @@
|
|
84 |
"Download as CSV","Télécharger sous forme CSV"
|
85 |
"Each logfile will be rotated when it exceeds size of 8 Megabytes","Si la taille du fichier dépasse 8 mégabyte, un nouveau fichier est créé."
|
86 |
"Email Options","Optiones emails"
|
|
|
87 |
"Enable Instant Payment Notifications","Activer Instant Payment Notifications"
|
88 |
"Enable logging","Activer Logging"
|
89 |
"Enable Login with Amazon","Activer Connectez-vous avec Amazon"
|
90 |
-
"Enable Pay with Amazon","Payez avec Amazon aktiviert"
|
91 |
"English","Anglais"
|
92 |
"Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400.","Entrer une valeur entre 200 et 600 pixels. Pour un widget avec une colonnes, utilisez une valeur de moins de 400."
|
93 |
"Enter a value between 228 and 400 pixels","Entrer une valeur entre 228 et 400 pixels"
|
@@ -120,7 +129,6 @@
|
|
120 |
"Leave empty for access from any location","Laisser vide pour un accès de n'importe quelle addresse"
|
121 |
"Light gray","Gris clair"
|
122 |
"Login","Connectez-vous"
|
123 |
-
"Login and Pay with Amazon","Connectez-vous et payez avec Amazon"
|
124 |
"Login with Amazon","Connectez-vous avec Amazon"
|
125 |
"Magento Settings","Configuration Magento"
|
126 |
"Manual authorization","Autoriser manuellement"
|
@@ -138,13 +146,6 @@
|
|
138 |
"Order status on authorization","Status de la commande après l'autorisation"
|
139 |
"Page","Page"
|
140 |
"Pay","Payer"
|
141 |
-
"Pay with Amazon","Payez avec Amazon"
|
142 |
-
"Pay with Amazon (Sandbox)","Payez avec Amazon (Sandbox)"
|
143 |
-
"Pay with Amazon API Call","Payez avec Amazon API Call"
|
144 |
-
"Pay with Amazon API Calls","Payez avec Amazon API Calls"
|
145 |
-
"Pay with Amazon Exception","Payez avec Amazon Exception"
|
146 |
-
"Pay with Amazon Exception | %s","Payez avec Amazon Exception | %s"
|
147 |
-
"Pay with Amazon Exceptions","Payez avec Amazon Exceptions"
|
148 |
"Payment Action","Action de paiement"
|
149 |
"Payment Region","Région de paiement"
|
150 |
"per page","par page"
|
@@ -178,13 +179,15 @@
|
|
178 |
"Small","Petit"
|
179 |
"Spanish","Espagnol"
|
180 |
"Stack trace","Stack trace"
|
|
|
|
|
181 |
"Stores","Boutiques"
|
182 |
"Synchronous","Synchrone"
|
183 |
"Tan","Beige"
|
184 |
"There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method.","Un problème est survenu avec le mode de paiement sélectionné sur votre compte Amazon. Accédez à votre compte Amazon ou retournez sur le panier pour sélectionner un autre mode de paiement."
|
185 |
"There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one.","Un problème est survenu avec le mode de paiement sélectionné sur votre compte Amazon. Mettez à jour le mode de paiement ou sélectionnez-en un autre."
|
186 |
"There was an error processing your order. Please contact us or try again later.","Lors du traitement de votre commande une erreur s'est produite. Veuillez nous contacter ou essayez de nouveau plus tard."
|
187 |
-
"This extension integrates easily your Magento shop with Pay
|
188 |
"This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted.","Cette fonctionalité exige l'installation d'un certificat SSL valide sur votre serveur. Faites attention que votre certificate SSL a été émis d'une autorité de certification reconnue. Les certificats de type self-signed ne sont pas acceptés."
|
189 |
"This is not valid Seller Central configuration JSON","Ce fichier n'est pas un fichier de configuration JSON pour Seller Central valide"
|
190 |
"Total %d records found","Total %d entrées trouvées"
|
@@ -204,7 +207,7 @@
|
|
204 |
"Whoops! Your Access Key ID seems to be invalid.","Désolé. Il semblerait que votre ID de clé d'accès ne soit pas valide."
|
205 |
"Whoops! Your Merchant ID seems to be invalid.","Désolé. Il semblerait que votre identifiant marchand ne soit pas valide."
|
206 |
"Whoops! Your Secret Access Key seems to be invalid.","Désolé. Il semblerait que votre clé d'accès secrète ne soit pas valide."
|
207 |
-
"With Amazon
|
208 |
"X-Large","Très grand"
|
209 |
"You have aborted the login with Amazon. Please contact us or try again.","Vous avez abandonné la connexion avec Amazon. Contactez-nous ou réessayez plus tard."
|
210 |
"Your language","Votre langue"
|
2 |
"--- Select reason code ---","--- choisir une raison ---"
|
3 |
"--- Select state to simulate ---","--- Choisir l'état à simuler ---"
|
4 |
"-OR-","-OU-"
|
5 |
+
"""Amazon Pay"" button color","""Amazon Pay""-couleur bouton"
|
6 |
+
"""Amazon Pay"" button size","""Amazon Pay""-bouton taille"
|
7 |
+
"""Amazon Pay"" button type","""Amazon Pay""-bouton type"
|
8 |
"""Login with Amazon"" button color","""Connectez-vous avec Amazon""-couleur bouton"
|
9 |
"""Login with Amazon"" button size","""Connectez-vous avec Amazon""-bouton taille"
|
10 |
"""Login with Amazon"" button type","""Connectez-vous avec Amazon""-bouton type"
|
|
|
|
|
|
|
11 |
"%s API Call | %s","%s API Call | %s"
|
12 |
"* Required Fields","* Champs requis"
|
13 |
"... or enter your Amazon Payments account information manually","... ou saisissez vos informations de compte Amazon Payments manuellement"
|
14 |
"<div id=""creative-system-config"">creativestyle Extensions</div>","<div id=""creative-system-config"">creativestyle Extensions</div>"
|
15 |
"<span class=""close"">Click to reveal config for </span>%s","<span class=""close"">Cliquez pour afficher la configuration pour </span>%s"
|
16 |
"<span class=""close"">Click to reveal your </span>Amazon Seller Central config","<span class=""close"">Cliquez pour faire apparaître votre </span>configuration Amazon Seller Central"
|
17 |
+
"<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details.","<strong>Amazon Pay</strong> vous permet d'effectuer des achats rapidement et en toute sécurité. Vous pouvez régler vos achats sur notre site Web sans saisir à nouveau vos informations de paiement et coordonnées."
|
18 |
+
"<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee.","Avec <strong>Amazon Pay</strong> vous pouvez utiliser les adresses et les informations de payments enregistrées dans votre compte Amazon pour accomplir vos achats de façon sûre et rapide. En plus vous profitez de la garantie A-z."
|
19 |
"1 day","1 jour"
|
20 |
"1 hour","1 heure"
|
21 |
"10 minutes","10 minutes"
|
47 |
"Amazon logo","Logo Amazon"
|
48 |
"Amazon Order Reference ID: %s","Référence de la commande Amazon: %s"
|
49 |
"Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>","Référence de la commande Amazon: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>"
|
50 |
+
"Amazon Pay","Amazon Pay"
|
51 |
+
"Amazon Pay (Sandbox)","Amazon Pay (Sandbox)"
|
52 |
+
"Amazon Pay and Login with Amazon","Amazon Pay et Connectez-vous avec Amazon"
|
53 |
+
"Amazon Pay and Login with Amazon settings","Configuration Amazon Pay et Connectez-vous avec Amazon"
|
54 |
+
"Amazon Pay API Call","Amazon Pay API Call"
|
55 |
+
"Amazon Pay API Calls","Amazon Pay API Calls"
|
56 |
+
"Amazon Pay Exception","Amazon Pay Exception"
|
57 |
+
"Amazon Pay Exception | %s","Amazon Pay Exception | %s"
|
58 |
+
"Amazon Pay Exceptions","Amazon Pay Exceptions"
|
59 |
"Amazon Payments Account","Compte Amazon Payments"
|
60 |
"Amazon Seller Central","Amazon Seller Central"
|
61 |
"An authorization of %s has been processed by Amazon Payments (%s). The new status is %s.","Une autorisation sur %s a été traité par Amazon Payments (%s). Le nouveau status est %s."
|
62 |
"An order of %s has been processed by Amazon Payments (%s). The new status is %s.","Une commande sur %s a été traité par Amazon Payments (%s). Le nouveau status est %s."
|
63 |
"API Call details","détails appel API"
|
64 |
"Appearance Settings","Configuration apparence"
|
65 |
+
"Appearance Settings for Amazon Pay and Login with Amazon","Configuration avec Amazon Pay et Connectez-vous avec Amazon"
|
66 |
+
"Appearance Settings for standalone Amazon Pay","Configuration avec Amazon Pay uniquement"
|
67 |
"Asynchronous","Asynchrone"
|
68 |
"Authentication Experience","Idenfication"
|
69 |
"Authorization Processing Mode","Mode d'autorisation"
|
71 |
"Authorize & capture","Autoriser & capture"
|
72 |
"Auto","Auto"
|
73 |
"Back","Retour"
|
74 |
+
"By selecting Login with Amazon, you will be asked to sign-in securely to your Amazon account without leaving the shop.","En sélectionnant Connectez-vous avec Amazon, vous serez invité à vous connecter de manière sécurisée à votre compte Amazon sans quitter la boutique."
|
75 |
"Choose your payment region and click to quick-register.","Choisissez votre région de paiement et cliquez pour une inscription rapide."
|
76 |
"Client ID","ID client"
|
77 |
"Cancel","Annuler"
|
93 |
"Download as CSV","Télécharger sous forme CSV"
|
94 |
"Each logfile will be rotated when it exceeds size of 8 Megabytes","Si la taille du fichier dépasse 8 mégabyte, un nouveau fichier est créé."
|
95 |
"Email Options","Optiones emails"
|
96 |
+
"Enable Amazon Pay","Amazon Pay activé"
|
97 |
"Enable Instant Payment Notifications","Activer Instant Payment Notifications"
|
98 |
"Enable logging","Activer Logging"
|
99 |
"Enable Login with Amazon","Activer Connectez-vous avec Amazon"
|
|
|
100 |
"English","Anglais"
|
101 |
"Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400.","Entrer une valeur entre 200 et 600 pixels. Pour un widget avec une colonnes, utilisez une valeur de moins de 400."
|
102 |
"Enter a value between 228 and 400 pixels","Entrer une valeur entre 228 et 400 pixels"
|
129 |
"Leave empty for access from any location","Laisser vide pour un accès de n'importe quelle addresse"
|
130 |
"Light gray","Gris clair"
|
131 |
"Login","Connectez-vous"
|
|
|
132 |
"Login with Amazon","Connectez-vous avec Amazon"
|
133 |
"Magento Settings","Configuration Magento"
|
134 |
"Manual authorization","Autoriser manuellement"
|
146 |
"Order status on authorization","Status de la commande après l'autorisation"
|
147 |
"Page","Page"
|
148 |
"Pay","Payer"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
"Payment Action","Action de paiement"
|
150 |
"Payment Region","Région de paiement"
|
151 |
"per page","par page"
|
179 |
"Small","Petit"
|
180 |
"Spanish","Espagnol"
|
181 |
"Stack trace","Stack trace"
|
182 |
+
"Store Options","Store Options"
|
183 |
+
"Store name","Store name"
|
184 |
"Stores","Boutiques"
|
185 |
"Synchronous","Synchrone"
|
186 |
"Tan","Beige"
|
187 |
"There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method.","Un problème est survenu avec le mode de paiement sélectionné sur votre compte Amazon. Accédez à votre compte Amazon ou retournez sur le panier pour sélectionner un autre mode de paiement."
|
188 |
"There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one.","Un problème est survenu avec le mode de paiement sélectionné sur votre compte Amazon. Mettez à jour le mode de paiement ou sélectionnez-en un autre."
|
189 |
"There was an error processing your order. Please contact us or try again later.","Lors du traitement de votre commande une erreur s'est produite. Veuillez nous contacter ou essayez de nouveau plus tard."
|
190 |
+
"This extension integrates easily your Magento shop with Amazon Pay service.","Cette extension intègre le service ""Amazon Pay et Connectez-vous avec Amazon"" dans votre shop Magento."
|
191 |
"This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted.","Cette fonctionalité exige l'installation d'un certificat SSL valide sur votre serveur. Faites attention que votre certificate SSL a été émis d'une autorité de certification reconnue. Les certificats de type self-signed ne sont pas acceptés."
|
192 |
"This is not valid Seller Central configuration JSON","Ce fichier n'est pas un fichier de configuration JSON pour Seller Central valide"
|
193 |
"Total %d records found","Total %d entrées trouvées"
|
207 |
"Whoops! Your Access Key ID seems to be invalid.","Désolé. Il semblerait que votre ID de clé d'accès ne soit pas valide."
|
208 |
"Whoops! Your Merchant ID seems to be invalid.","Désolé. Il semblerait que votre identifiant marchand ne soit pas valide."
|
209 |
"Whoops! Your Secret Access Key seems to be invalid.","Désolé. Il semblerait que votre clé d'accès secrète ne soit pas valide."
|
210 |
+
"With Amazon Pay, you can use the shipping and payment information stored in your Amazon account to place an order on this website. It's a convenient and trusted way to pay that's enjoyed by millions of people.","Amazon Pay vous permet d'utiliser les informations de paiement et d'expédition stockées dans votre compte Amazon pour passer une commande sur ce site Web. Des millions d'utilisateurs bénéficient déjà de ce mode de paiement simple et éprouvé."
|
211 |
"X-Large","Très grand"
|
212 |
"You have aborted the login with Amazon. Please contact us or try again.","Vous avez abandonné la connexion avec Amazon. Contactez-nous ou réessayez plus tard."
|
213 |
"Your language","Votre langue"
|
app/locale/it_IT/Creativestyle_AmazonPayments.csv
CHANGED
@@ -2,20 +2,20 @@
|
|
2 |
"--- Select reason code ---","--- Seleziona codice motivo ---"
|
3 |
"--- Select state to simulate ---","--- Seleziona stato da simulare ---"
|
4 |
"-OR-","-O-"
|
|
|
|
|
|
|
5 |
"""Login with Amazon"" button color","Colore pulsante-""Accedi con Amazon"""
|
6 |
"""Login with Amazon"" button size","Dimensione pulsante-""Accedi con Amazon"""
|
7 |
"""Login with Amazon"" button type","Tipo pulsante-""Accedi con Amazon"""
|
8 |
-
"""Pay with Amazon"" button color","Colore pulsante-""Pagare con Amazon"""
|
9 |
-
"""Pay with Amazon"" button size","Dimensione pulsante-""Pagare con Amazon"""
|
10 |
-
"""Pay with Amazon"" button type","Tipo pulsante-""Pagare con Amazon"""
|
11 |
"%s API Call | %s","%s Chiamata API | %s"
|
12 |
"* Required Fields","* Campi obbligatori"
|
13 |
"... or enter your Amazon Payments account information manually","... o inserisci manualmente i dati del tuo conto Amazon Payments"
|
14 |
"<div id=""creative-system-config"">creativestyle Extensions</div>","<div id=""creative-system-config"">Estensioni creativestyle</div>"
|
15 |
"<span class=""close"">Click to reveal config for </span>%s","<span class=""close"">Clicca per rivelare la configurazione di </span>%s"
|
16 |
"<span class=""close"">Click to reveal your </span>Amazon Seller Central config","<span class=""close"">Clicca per rivelare la tua </span>configurazione di Amazon Seller Central"
|
17 |
-
"<strong>Amazon
|
18 |
-
"<strong>Amazon
|
19 |
"1 day","1 giorno"
|
20 |
"1 hour","1 ora"
|
21 |
"10 minutes","10 minuti"
|
@@ -47,14 +47,23 @@
|
|
47 |
"Amazon logo","Logo Amazon"
|
48 |
"Amazon Order Reference ID: %s","N. di riferimento ordine Amazon: %s"
|
49 |
"Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>","N. di riferimento ordine Amazon: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
"Amazon Payments Account","Conto Amazon Payments"
|
51 |
"Amazon Seller Central","Amazon Seller Central"
|
52 |
"An authorization of %s has been processed by Amazon Payments (%s). The new status is %s.","Un'autorizzazione di %s è stata elaborata da Amazon Payments (%s). Il nuovo stato è %s."
|
53 |
"An order of %s has been processed by Amazon Payments (%s). The new status is %s.","Un ordine di %s è stato elaborato da Amazon Payments (%s). Il nuovo stato è %s."
|
54 |
"API Call details","Dettagli chiamata API"
|
55 |
"Appearance Settings","Impostazioni dell'aspetto"
|
56 |
-
"Appearance Settings for
|
57 |
-
"Appearance Settings for standalone Pay
|
58 |
"Asynchronous","Asincrono"
|
59 |
"Authentication Experience","Esperienza di autenticazione"
|
60 |
"Authorization Processing Mode","Modalità di elaborazione dell'autorizzazione"
|
@@ -62,7 +71,7 @@
|
|
62 |
"Authorize & capture","Autorizza e acquisisci"
|
63 |
"Auto","Automatico"
|
64 |
"Back","Indietro"
|
65 |
-
"By selecting Amazon
|
66 |
"Choose your payment region and click to quick-register.","Scegli la tua regione per i pagamenti e clicca per la registrazione veloce."
|
67 |
"Client ID","ID cliente"
|
68 |
"Cancel","Annulla"
|
@@ -84,10 +93,10 @@
|
|
84 |
"Download as CSV","Scarica come CSV"
|
85 |
"Each logfile will be rotated when it exceeds size of 8 Megabytes","Ogni file di log verrà ruotato quando supera le dimensioni di 8 Megabyte."
|
86 |
"Email Options","Opzioni e-mail"
|
|
|
87 |
"Enable Instant Payment Notifications","Abilita Instant Payment Notifications"
|
88 |
"Enable logging","Abilita registrazione"
|
89 |
"Enable Login with Amazon","Abilita Accedi con Amazon"
|
90 |
-
"Enable Pay with Amazon","Abilita Pagare con Amazon"
|
91 |
"English","Inglese"
|
92 |
"Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400.","Inserisci un valore compreso tra 200 e 600 pixel. Per widget di una sola colonna, inserisci una larghezza inferiore a 400."
|
93 |
"Enter a value between 228 and 400 pixels","Inserisci un valore compreso tra 228 e 400 pixel"
|
@@ -120,7 +129,6 @@
|
|
120 |
"Leave empty for access from any location","Lascia vuoto per consentire l'accesso da qualsiasi posizione"
|
121 |
"Light gray","Grigio chiaro"
|
122 |
"Login","Accesso"
|
123 |
-
"Login and Pay with Amazon","Accedi e Pagare con Amazon"
|
124 |
"Login with Amazon","Accedi con Amazon"
|
125 |
"Magento Settings","Impostazioni Magento"
|
126 |
"Manual authorization","Autorizzazione manuale"
|
@@ -138,13 +146,6 @@
|
|
138 |
"Order status on authorization","Stato ordine all'autorizzazione"
|
139 |
"Page","Pagina"
|
140 |
"Pay","Paga"
|
141 |
-
"Pay with Amazon","Pagare con Amazon"
|
142 |
-
"Pay with Amazon (Sandbox)","Pagare con Amazon (Sandbox)"
|
143 |
-
"Pay with Amazon API Call","Chiamata API Pagare con Amazon"
|
144 |
-
"Pay with Amazon API Calls","Chiamate API Pagare con Amazon"
|
145 |
-
"Pay with Amazon Exception","Eccezione Pagare con Amazon"
|
146 |
-
"Pay with Amazon Exception | %s","Eccezione Pagare con Amazon | %s"
|
147 |
-
"Pay with Amazon Exceptions","Eccezioni Pagare con Amazon"
|
148 |
"Payment Action","Azione pagamento"
|
149 |
"Payment Region","Area pagamento"
|
150 |
"per page","per pagina"
|
@@ -178,13 +179,15 @@
|
|
178 |
"Small","Piccolo"
|
179 |
"Spanish","Spagnolo"
|
180 |
"Stack trace","Stack trace"
|
|
|
|
|
181 |
"Stores","Negozi"
|
182 |
"Synchronous","Sincrono"
|
183 |
"Tan","Marrone chiaro"
|
184 |
"There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method.","Si è verificato un problema con il metodo di pagamento selezionato dal tuo account Amazon. Seleziona un altro metodo di pagamento dal tuo account Amazon o torna al carrello e scegli un modo diverso di completare l'acquisto."
|
185 |
"There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one.","Si è verificato un problema con il metodo di pagamento selezionato dal tuo account Amazon. Aggiorna il metodo di pagamento o scegline uno diverso."
|
186 |
"There was an error processing your order. Please contact us or try again later.","Si è verificato un errore durante l'elaborazione dell'ordine. Contattaci o riprova più tardi."
|
187 |
-
"This extension integrates easily your Magento shop with Pay
|
188 |
"This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted.","Questa funzione richiede che sul server sia installato un valido certificato SSL. Assicurati che il certificato SSL sia stato emesso da un'autorità di certificazione affidabile. Non sono ammesse autocertificazioni."
|
189 |
"This is not valid Seller Central configuration JSON","Questa non è una configurazione Seller Central JSON valida"
|
190 |
"Total %d records found","%d record totali trovati"
|
@@ -204,7 +207,7 @@
|
|
204 |
"Whoops! Your Access Key ID seems to be invalid.","Ops! Chiave d'accesso non valida."
|
205 |
"Whoops! Your Merchant ID seems to be invalid.","Ops! Numero venditore non valido."
|
206 |
"Whoops! Your Secret Access Key seems to be invalid.","Ops! Chiave d'accesso segreta non valida."
|
207 |
-
"With Amazon
|
208 |
"X-Large","Molto grande"
|
209 |
"You have aborted the login with Amazon. Please contact us or try again.","Hai interrotto l'accesso con Amazon. Contattaci o riprova."
|
210 |
"Your language","Lingua"
|
2 |
"--- Select reason code ---","--- Seleziona codice motivo ---"
|
3 |
"--- Select state to simulate ---","--- Seleziona stato da simulare ---"
|
4 |
"-OR-","-O-"
|
5 |
+
"""Amazon Pay"" button color","Colore pulsante-""Amazon Pay"""
|
6 |
+
"""Amazon Pay"" button size","Dimensione pulsante-""Amazon Pay"""
|
7 |
+
"""Amazon Pay"" button type","Tipo pulsante-""Amazon Pay"""
|
8 |
"""Login with Amazon"" button color","Colore pulsante-""Accedi con Amazon"""
|
9 |
"""Login with Amazon"" button size","Dimensione pulsante-""Accedi con Amazon"""
|
10 |
"""Login with Amazon"" button type","Tipo pulsante-""Accedi con Amazon"""
|
|
|
|
|
|
|
11 |
"%s API Call | %s","%s Chiamata API | %s"
|
12 |
"* Required Fields","* Campi obbligatori"
|
13 |
"... or enter your Amazon Payments account information manually","... o inserisci manualmente i dati del tuo conto Amazon Payments"
|
14 |
"<div id=""creative-system-config"">creativestyle Extensions</div>","<div id=""creative-system-config"">Estensioni creativestyle</div>"
|
15 |
"<span class=""close"">Click to reveal config for </span>%s","<span class=""close"">Clicca per rivelare la configurazione di </span>%s"
|
16 |
"<span class=""close"">Click to reveal your </span>Amazon Seller Central config","<span class=""close"">Clicca per rivelare la tua </span>configurazione di Amazon Seller Central"
|
17 |
+
"<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details.","<strong>Amazon Pay</strong> ti aiuta a fare acquisti in modo rapido e sicuro. Puoi pagare sul nostro sito web senza dover inserire nuovamente i tuoi dati."
|
18 |
+
"<strong>Amazon Pay</strong> helps you shop quickly, safely and securely. You can pay on our website without re-entering your payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee.","<strong>Amazon Pay</strong> ti aiuta a fare acquisti in modo rapido e sicuro. Puoi pagare sul nostro sito web senza dover inserire nuovamente i tuoi dati. Tutte le transazioni Amazon sono protette dalla garanzia dalla A alla Z di Amazon."
|
19 |
"1 day","1 giorno"
|
20 |
"1 hour","1 ora"
|
21 |
"10 minutes","10 minuti"
|
47 |
"Amazon logo","Logo Amazon"
|
48 |
"Amazon Order Reference ID: %s","N. di riferimento ordine Amazon: %s"
|
49 |
"Amazon Order Reference ID: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>","N. di riferimento ordine Amazon: <a target=""_blank"" href=""https://sellercentral-europe.amazon.com/hz/me/pmd/payment-details?orderReferenceId=%s"">%s</a>"
|
50 |
+
"Amazon Pay","Amazon Pay"
|
51 |
+
"Amazon Pay (Sandbox)","Amazon Pay (Sandbox)"
|
52 |
+
"Amazon Pay and Login with Amazon","Amazon Pay e Accedi con Amazon"
|
53 |
+
"Amazon Pay and Login with Amazon settings","Impostazioni Amazon Pay e Accedi con Amazon"
|
54 |
+
"Amazon Pay API Call","Chiamata API Amazon Pay"
|
55 |
+
"Amazon Pay API Calls","Chiamate API Amazon Pay"
|
56 |
+
"Amazon Pay Exception","Eccezione Amazon Pay"
|
57 |
+
"Amazon Pay Exception | %s","Eccezione Amazon Pay | %s"
|
58 |
+
"Amazon Pay Exceptions","Eccezioni Amazon Pay"
|
59 |
"Amazon Payments Account","Conto Amazon Payments"
|
60 |
"Amazon Seller Central","Amazon Seller Central"
|
61 |
"An authorization of %s has been processed by Amazon Payments (%s). The new status is %s.","Un'autorizzazione di %s è stata elaborata da Amazon Payments (%s). Il nuovo stato è %s."
|
62 |
"An order of %s has been processed by Amazon Payments (%s). The new status is %s.","Un ordine di %s è stato elaborato da Amazon Payments (%s). Il nuovo stato è %s."
|
63 |
"API Call details","Dettagli chiamata API"
|
64 |
"Appearance Settings","Impostazioni dell'aspetto"
|
65 |
+
"Appearance Settings for Amazon Pay and Login with Amazon","Impostazioni dell'aspetto per Amazon Pay e Accedi con Amazon"
|
66 |
+
"Appearance Settings for standalone Amazon Pay","Impostazioni dell'aspetto per Amazon Pay"
|
67 |
"Asynchronous","Asincrono"
|
68 |
"Authentication Experience","Esperienza di autenticazione"
|
69 |
"Authorization Processing Mode","Modalità di elaborazione dell'autorizzazione"
|
71 |
"Authorize & capture","Autorizza e acquisisci"
|
72 |
"Auto","Automatico"
|
73 |
"Back","Indietro"
|
74 |
+
"By selecting Login with Amazon, you will be asked to sign-in securely to your Amazon account without leaving the shop.","Selezionando Accedi con Amazon, ti verrà chiesto di accedere in modo sicuro al tuo account Amazon senza uscire dalla pagina del negozio."
|
75 |
"Choose your payment region and click to quick-register.","Scegli la tua regione per i pagamenti e clicca per la registrazione veloce."
|
76 |
"Client ID","ID cliente"
|
77 |
"Cancel","Annulla"
|
93 |
"Download as CSV","Scarica come CSV"
|
94 |
"Each logfile will be rotated when it exceeds size of 8 Megabytes","Ogni file di log verrà ruotato quando supera le dimensioni di 8 Megabyte."
|
95 |
"Email Options","Opzioni e-mail"
|
96 |
+
"Enable Amazon Pay","Abilita Amazon Pay"
|
97 |
"Enable Instant Payment Notifications","Abilita Instant Payment Notifications"
|
98 |
"Enable logging","Abilita registrazione"
|
99 |
"Enable Login with Amazon","Abilita Accedi con Amazon"
|
|
|
100 |
"English","Inglese"
|
101 |
"Enter a value between 200 and 600 pixels. For one-column widget please enter width less than 400.","Inserisci un valore compreso tra 200 e 600 pixel. Per widget di una sola colonna, inserisci una larghezza inferiore a 400."
|
102 |
"Enter a value between 228 and 400 pixels","Inserisci un valore compreso tra 228 e 400 pixel"
|
129 |
"Leave empty for access from any location","Lascia vuoto per consentire l'accesso da qualsiasi posizione"
|
130 |
"Light gray","Grigio chiaro"
|
131 |
"Login","Accesso"
|
|
|
132 |
"Login with Amazon","Accedi con Amazon"
|
133 |
"Magento Settings","Impostazioni Magento"
|
134 |
"Manual authorization","Autorizzazione manuale"
|
146 |
"Order status on authorization","Stato ordine all'autorizzazione"
|
147 |
"Page","Pagina"
|
148 |
"Pay","Paga"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
"Payment Action","Azione pagamento"
|
150 |
"Payment Region","Area pagamento"
|
151 |
"per page","per pagina"
|
179 |
"Small","Piccolo"
|
180 |
"Spanish","Spagnolo"
|
181 |
"Stack trace","Stack trace"
|
182 |
+
"Store Options","Store Options"
|
183 |
+
"Store name","Store name"
|
184 |
"Stores","Negozi"
|
185 |
"Synchronous","Sincrono"
|
186 |
"Tan","Marrone chiaro"
|
187 |
"There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method.","Si è verificato un problema con il metodo di pagamento selezionato dal tuo account Amazon. Seleziona un altro metodo di pagamento dal tuo account Amazon o torna al carrello e scegli un modo diverso di completare l'acquisto."
|
188 |
"There has been a problem with the selected payment method from your Amazon account, please update the payment method or choose another one.","Si è verificato un problema con il metodo di pagamento selezionato dal tuo account Amazon. Aggiorna il metodo di pagamento o scegline uno diverso."
|
189 |
"There was an error processing your order. Please contact us or try again later.","Si è verificato un errore durante l'elaborazione dell'ordine. Contattaci o riprova più tardi."
|
190 |
+
"This extension integrates easily your Magento shop with Amazon Pay service.","Questa estensione integra facilmente il negozio Magento con il servizio Amazon Pay."
|
191 |
"This feature requires valid SSL certificate to be installed on this server. Pay attention that the SSL certificate must be issued by a trusted Certificate Authority, self-signed certificates are not permitted.","Questa funzione richiede che sul server sia installato un valido certificato SSL. Assicurati che il certificato SSL sia stato emesso da un'autorità di certificazione affidabile. Non sono ammesse autocertificazioni."
|
192 |
"This is not valid Seller Central configuration JSON","Questa non è una configurazione Seller Central JSON valida"
|
193 |
"Total %d records found","%d record totali trovati"
|
207 |
"Whoops! Your Access Key ID seems to be invalid.","Ops! Chiave d'accesso non valida."
|
208 |
"Whoops! Your Merchant ID seems to be invalid.","Ops! Numero venditore non valido."
|
209 |
"Whoops! Your Secret Access Key seems to be invalid.","Ops! Chiave d'accesso segreta non valida."
|
210 |
+
"With Amazon Pay, you can use the shipping and payment information stored in your Amazon account to place an order on this website. It's a convenient and trusted way to pay that's enjoyed by millions of people.","Con Amazon Pay, puoi usare le informazioni su pagamento e spedizione registrate nel tuo account Amazon per effettuare un ordine su questo sito web. È un modo pratico e affidabile di pagare, utilizzato da milioni di utenti."
|
211 |
"X-Large","Molto grande"
|
212 |
"You have aborted the login with Amazon. Please contact us or try again.","Hai interrotto l'accesso con Amazon. Contattaci o riprova."
|
213 |
"Your language","Lingua"
|
js/creativestyle/adminhtml/amazonpayments.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
var AmazonPaymentsAdmin=Class.create();AmazonPaymentsAdmin.prototype={setupConfig:function(i){i&&(this.unique_id=i.unique_id||null,this.fields=i.fields||{},this.merchant_id=$F(this.fields.merchant_id)||null,this.client_id=$F(this.fields.client_id)||null,this.layers=i.layers||{},this.messages=i.messages||{},this.urls=i.urls||{})},setupRegistration:function(i){i&&($(i.submit)&&Event.observe($(i.submit),"click",this.startSimplePathRegistration.bindAsEventListener(this,$(i.region),$(i.language))),this.registration=i)},setupValidation:function(i,
|
1 |
+
var AmazonPaymentsAdmin=Class.create();AmazonPaymentsAdmin.prototype={setupConfig:function(i){i&&(this.unique_id=i.unique_id||null,this.fields=i.fields||{},this.merchant_id=$F(this.fields.merchant_id)||null,this.client_id=$F(this.fields.client_id)||null,this.layers=i.layers||{},this.messages=i.messages||{},this.urls=i.urls||{})},setupRegistration:function(i){i&&($(i.submit)&&Event.observe($(i.submit),"click",this.startSimplePathRegistration.bindAsEventListener(this,$(i.region),$(i.language))),this.registration=i)},setupValidation:function(i,e){i&&($(i.submit)&&Event.observe($(i.submit),"click",this.startSimplePathValidation.bindAsEventListener(this,$(i.json_field),$(e.region))),$(i.use_button)&&Event.observe($(i.use_button),"click",this.useNewOptions.bindAsEventListener(this)),$(i.save_button)&&Event.observe($(i.save_button),"click",this.useNewOptionsAndSave.bindAsEventListener(this)),$(i.cancel_button)&&Event.observe($(i.cancel_button),"click",this.cancelValidation.bindAsEventListener(this)),$(i.json_field)&&i.placeholder&&$(i.json_field).setAttribute("placeholder",i.placeholder),this.validation=i)},cancelValidation:function(i){this.showSimplePathValidationJson(!0),this.showSimplePathValidationSubmit(!0),this.enableSimplePathRegistrationRegion(!0)},useNewOptions:function(i){this.populateNewOptions()},useNewOptionsAndSave:function(i){this.populateNewOptions(),configForm.submit()},populateNewOptions:function(){if(region=$F(this.registration.region),options=$F(this.validation.json_field),options)try{options=options.evalJSON(!0),$F(this.fields.merchant_id)!=options.merchant_id&&($(this.fields.merchant_id).disabled&&$(this.fields.merchant_id.identify()+"_inherit").click(),this.fields.merchant_id.setValue(options.merchant_id)),$F(this.fields.client_id)!=options.client_id&&($(this.fields.client_id).disabled&&$(this.fields.client_id.identify()+"_inherit").click(),this.fields.client_id.setValue(options.client_id)),$F(this.fields.access_key)!=options.access_key&&($(this.fields.access_key).disabled&&$(this.fields.access_key.identify()+"_inherit").click(),this.fields.access_key.setValue(options.access_key)),$F(this.fields.secret_key)!=options.secret_key&&($(this.fields.secret_key).disabled&&$(this.fields.secret_key.identify()+"_inherit").click(),this.fields.secret_key.setValue(options.secret_key)),region&&$F(this.fields.region)!=region&&($(this.fields.region).disabled&&$(this.fields.region.identify()+"_inherit").click(),this.fields.region.setValue(region))}catch(i){console.error(i)}},setupView:function(){this.isConfigured()?(this.disableRegionSynchronization(),this.showSellerCentralConfiguration(!0),this.showSimplePathRegistration(!1)):(this.enableRegionSynchronization(),this.showSellerCentralConfiguration(!1),this.showSimplePathRegistration(!0))},showSellerCentralConfiguration:function(i){i?($(this.layers.seller_central+"-state").setValue(1),Fieldset.applyCollapse(this.layers.seller_central)):($(this.layers.seller_central+"-state").setValue(0),Fieldset.applyCollapse(this.layers.seller_central))},showSimplePathRegistration:function(i){i?($(this.registration.id+"-state").setValue(1),Fieldset.applyCollapse(this.registration.id)):($(this.registration.id+"-state").setValue(0),Fieldset.applyCollapse(this.registration.id))},showSimplePathValidationSubmit:function(i){i?$(this.validation.submit).show():$(this.validation.submit).hide()},showSimplePathValidationJson:function(i){i?($(this.validation.result).hide(),$(this.validation.result_buttons).hide(),$(this.validation.json_field.up("tr").show())):($(this.validation.result).show(),$(this.validation.result_buttons).show(),$(this.validation.json_field.up("tr").hide()))},enableSimplePathRegistrationRegion:function(i){i?($(this.registration.region).enable(),$(this.registration.region).removeClassName("disabled"),$(this.registration.submit).enable(),$(this.registration.submit).removeClassName("disabled")):($(this.registration.region).disable(),$(this.registration.region).addClassName("disabled"),$(this.registration.submit).disable(),$(this.registration.submit).addClassName("disabled"))},enableRegionSynchronization:function(){this.fields.region.setValue($F(this.registration.region)),Event.observe($(this.registration.region),"change",this.synchronizeRegions.bindAsEventListener(this))},disableRegionSynchronization:function(){Event.stopObserving($(this.registration.region),"change")},synchronizeRegions:function(i){this.fields.region.setValue($F(Event.findElement(i)))},startSimplePathRegistration:function(i,e,t){var s=new Element("form",{method:"post",action:this.simplePathRegistrationUrl[$F(e)],target:"_blank"});s.insert(new Element("input",{name:"source",value:"SPPW",type:"hidden"})),s.insert(new Element("input",{name:"spId",value:this.spIds[$F(e)],type:"hidden"})),s.insert(new Element("input",{name:"locale",value:$F(e),type:"hidden"})),s.insert(new Element("input",{name:"language",value:$F(t),type:"hidden"})),this.unique_id&&s.insert(new Element("input",{name:"uniqueId",value:this.unique_id,type:"hidden"})),this.urls.sandbox_ipn&&s.insert(new Element("input",{name:"sandboxMerchantIPNURL",value:this.urls.sandbox_ipn,type:"hidden"})),this.urls.production_ipn&&s.insert(new Element("input",{name:"productionMerchantIPNURL",value:this.urls.production_ipn,type:"hidden"})),this.urls.js_origins&&this.urls.js_origins.each(function(i){s.insert(new Element("input",{name:"allowedLoginDomains[]",value:i,type:"hidden"}))}),this.urls.return_urls&&this.urls.return_urls.each(function(i){s.insert(new Element("input",{name:"loginRedirectURLs[]",value:i,type:"hidden"}))}),$(document.body).insert(s),s.submit()},startSimplePathValidation:function(i,e,t){if(options=$F(e),options)try{options=options.evalJSON(!0),options.region=$F(t),options&&new Ajax.Request(this.validation.url,{method:"post",parameters:options,onSuccess:this.validationCallback.bind(this,options)})}catch(s){this.displayValidationFailureMsg([this.messages.invalid_json])}},validationCallback:function(i,e){if(e.responseText)try{result=e.responseText.evalJSON(!0),result.valid?this.displayValidationSuccessMsg(result.messages,result.data):this.displayValidationFailureMsg(result.messages)}catch(t){this.displayValidationFailureMsg([this.messages.invalid_json])}},displayValidationSuccessMsg:function(i,e){msg='<ul class="messages"><li class="success-msg"><ul>',i.each(function(i){msg=msg+"<li>"+i+"</li>"}),e&&(msg+='<li><table style="width:100%;"><tbody>',$H(e).each(function(i){msg=msg+'<tr><th style="text-align:right;">'+i.key+':</th><td style="font-weight:normal;">'+i.value+"</td></tr>"}),msg+="</tbody></table></li>"),msg+="</ul></li></ul>",$(this.validation.result).update(msg),this.showSimplePathValidationJson(!1),this.showSimplePathValidationSubmit(!1),this.enableSimplePathRegistrationRegion(!1)},displayValidationFailureMsg:function(i){msg='<ul class="messages"><li class="error-msg"><ul>',i.each(function(i){msg=msg+"<li>"+i+"</li>"}),msg+="</ul></li></ul>",$(this.validation.result).update(msg).show()},isConfigured:function(){return this.merchant_id},spIds:{EUR:"AIOVPYYF70KB5",GBP:"ASGN9CNMS5AA3"},simplePathRegistrationUrl:{EUR:"https://sellercentral-europe.amazon.com/hz/me/sp/redirect?ld=SPEXDEAPA-MagentoPL",GBP:"https://sellercentral-europe.amazon.com/hz/me/sp/redirect?ld=SPEXUKAPA-MagentoPL"},initialize:function(i){this.setupConfig(i.config),this.setupRegistration(i.registration),this.setupValidation(i.validation,i.registration),this.setupView()}};
|
package.xml
CHANGED
@@ -1,26 +1,28 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Creativestyle_AmazonPayments</name>
|
4 |
-
<version>1.8.
|
5 |
<stability>stable</stability>
|
6 |
<license>Creative Commons Attribution-NoDerivatives 4.0 International</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Integration of your Magento shop with Login and Pay with Amazon service</summary>
|
10 |
<description>This extension provides an official integration of your Magento store with Login and Pay with Amazon service. It helps your customers shop quickly, safely and securely. Your customers can pay on your website without re-entering their payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee.</description>
|
11 |
-
<notes>#
|
12 |
-
-
|
13 |
-
|
14 |
-
-
|
15 |
-
|
|
|
16 |
# Fixes
|
17 |
-
- Fixed
|
18 |
-
|
|
|
19 |
</notes>
|
20 |
<authors><author><name>creativestyle GmbH</name><user>creativestyle</user><email>amazon@creativestyle.de</email></author></authors>
|
21 |
-
<date>
|
22 |
-
<time>
|
23 |
-
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="amazonpayments.xml" hash="08f9c3c3cdd9536c28746bb3be7eeb0c"/></dir><dir name="template"><dir name="creativestyle"><dir name="amazonpayments"><dir name="advanced"><file name="documentation.phtml" hash="af3ae6ebce4712dd8fb972bef508ca55"/><dir name="log"><dir name="api"><file name="view.phtml" hash="2c2fcd6122b4481ad2cf8b7657f3f187"/></dir><dir name="exception"><file name="view.phtml" hash="c5d01f6de86e47d4da5dfabd60b1b382"/></dir><file name="js.phtml" hash="eb1d2098440a0bac2a6f5b959afa3693"/><dir name="notification"><file name="view.phtml" hash="31d893106f7c7c7f94f05d5cafa36440"/></dir></dir></dir><dir name="debug"><dir name="section"><file name="table.phtml" hash="f4bb8e35b3608cf0639407a3461c3717"/></dir><file name="section.phtml" hash="1472da0e9f07b5583a02e327483d4d75"/></dir><file name="debug.phtml" hash="9748d4fe92986f36ad47ae5b61fc4883"/><file name="info.phtml" hash="226dccd107f2982f1ffb22e5975acf9a"/><file name="init.phtml" hash="ba9d53045077e63b4e6c25c6b7bb685c"/><file name="notifications.phtml" hash="cdb61c48628885ab4cd90b0a611afc96"/><dir name="payment"><file name="info.phtml" hash="1604a1ca8c640748023859dee07f1182"/><dir name="legacy"><file name="info.phtml" hash="7d35f0a93900f40fb4433f576734595a"/><dir name="pdf"><file name="info.phtml" hash="73e54dbec4a659063a6e6c3b35565159"/></dir></dir><dir name="pdf"><file name="info.phtml" hash="1fb213f3fcc3aeecaa6305c07cff3b73"/></dir></dir><file name="register.phtml" hash="0a232ba7493098b49da82c88c646cc87"/><file name="seller_central.phtml" hash="fa3012b0191ac7175bc6bb68188f654c"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="amazonpayments.xml" hash="bcbcd2f41ce44082d3cbccbe18c2a3c1"/></dir><dir name="template"><dir name="creativestyle"><dir name="amazonpayments"><dir name="button"><file name="js.phtml" hash="3142375878bb43893393ee3499ad9804"/></dir><dir name="checkout"><file name="capture_notice.phtml" hash="f9c75cd05a596d0a16c55f0169b4ee6c"/><file name="js.phtml" hash="22aefc3f6be0ce5c223d6d4942b7ba69"/><dir name="review"><file name="button.phtml" hash="5fa9b038cc1e91a8203b163411b8bf20"/></dir><file name="sandbox_toolbox.phtml" hash="b1a346f095d83223914e65024f56d19f"/><file name="shipping_method.phtml" hash="852008f89fc32c7af6c250cafdde5f51"/></dir><file name="checkout.phtml" hash="6873b347a7e10b3b5c35fda1b48345b1"/><file name="js.phtml" hash="13581f0bcdf7c39da46be530892e8183"/><dir name="login"><dir name="button"><file name="account_login.phtml" hash="0ce9b9d891af3f6c5b1c83a17d311e6b"/></dir><file name="button.phtml" hash="b5d66280337ecc895ae9a2bc48c469e4"/><dir name="form"><file name="account_confirm.phtml" hash="35adec8936cc612b865bca61e2316a8b"/><file name="account_update.phtml" hash="64fdc50df3b3c49384d5d50a1da82d4d"/></dir><file name="js.phtml" hash="9d542e726fe51739b72fc2e509edadd8"/><file name="logout.phtml" hash="e8b6f4d39047903e4ee8d481ba59543b"/><file name="redirect.phtml" hash="8d395ab25504c0cdb928cf93e684b868"/></dir><dir name="onepage"><file name="button.phtml" hash="e37fe0d557754758389350dc5e5c49ba"/></dir><dir name="pay"><file name="button.phtml" hash="dfcccab45794c81d2d3ca52f709019d4"/></dir><dir name="payment"><file name="info.phtml" hash="3631896707e596d9675f526a7d021617"/><dir name="legacy"><file name="info.phtml" hash="7d35f0a93900f40fb4433f576734595a"/><dir name="pdf"><file name="info.phtml" hash="738d0b82322b1df3c315daf5253e001e"/></dir></dir><dir name="pdf"><file name="info.phtml" hash="69549bf3340c19d62f42a556f13e8a1e"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Creativestyle_AmazonPayments.xml" hash="3d30f68b24829494a2a66164eba0e5f7"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="Creativestyle_AmazonPayments.csv" hash="b14c667e42d1b2bb41121f63bc00ee5d"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="863d241bc23599124715c1e797a3cae6"/></dir></dir></dir><dir name="en_GB"><file name="Creativestyle_AmazonPayments.csv" hash="765b0ca5d06ae90696d8d768cd33acc6"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="f858886b12b6f3e16cab85f5ce57b975"/></dir></dir></dir><dir name="en_US"><file name="Creativestyle_AmazonPayments.csv" hash="5b450665a9a3b5cbb28545a02e117760"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="702e0a9ada30a5bb5776b28fe63eda93"/></dir></dir></dir><dir name="es_ES"><file name="Creativestyle_AmazonPayments.csv" hash="ecaea9f48a9f80033f420a540ff451f4"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="e1705a091d04cd4da4d0b0cc49bd283f"/></dir></dir></dir><dir name="fr_FR"><file name="Creativestyle_AmazonPayments.csv" hash="f0da0ac9de9ee6e9d5f8f90eb235a827"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="e593f24125ecb3ffacbe467d8f39f2de"/></dir></dir></dir><dir name="it_IT"><file name="Creativestyle_AmazonPayments.csv" hash="b169a4bc33c40a80fc2d133c01f6ffb3"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="5c3857cb5465c91415940689eec8dc75"/></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="creativestyle"><file name="apa_checkout.js" hash="cf5c71c03203cb3cb9f9a53560b75f49"/><file name="apa_checkout.min.js" hash="94b18941e9f90dd36f571d61f4920408"/><file name="apa_sandbox_toolbox.min.js" hash="caaeb27b79fb6a26561d5e4bd6a4d851"/><dir name="vendors"><file name="prism.js" hash="c700de3d980f7ef1e056dc5400acfd44"/></dir><dir name="adminhtml"><file name="amazonpayments.min.js" hash="22673927f6cde8dd170102b9837890dd"/></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments.css" hash="db97912a183d743b89a5bdfc16a66e71"/><file name="amazonpayments-highlight.css" hash="f6daf03c989ac56ad436300b5520f0df"/></dir><dir name="images"><file name="amazon-payments-advanced-creativestyle-header-logo.png" hash="8591e03aeaa7cbc71a509443de35bfce"/><file name="amazon-payments-advanced-creativestyle-header-logo-white.png" hash="9552112bc27581249cb8e8de1bb91887"/><file name="amazon-payments-advanced-creativestyle-logo.png" hash="abc54550ae7d7a3e5c8a5cd0896d310d"/><file name="amazon-payments-advanced-header.png" hash="60f587870fbdb1242368c8c3b553bd8c"/><file name="amazon-payments-advanced-section.png" hash="8bc620f345eb46c920c51875d4cfad7c"/><file name="logo_a-glyph_16.png" hash="44a3f5f0013cab34d26653eb48b989fc"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments.css" hash="ddb0874cb9525e573679cc6a5e8f375e"/><file name="amazonpayments-responsive-widgets.css" hash="ffca5cdc8a4e0585946c78258044c471"/><file name="amazonpayments-widgets.css" hash="35704192aaeb204e407e8b853c118d16"/></dir><dir name="images"><file name="amazon-loading-large.gif" hash="5f6d83bf2b69ab73c7e48ec9b66d54db"/><file name="logo_a-glyph_1x.png" hash="5d44ca86985afbb2a47b9265053a456e"/></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments-responsive-widgets.css" hash="389d23ee96bb5305f7ba5b616d930846"/><file name="amazonpayments.css" hash="a39d769454a68e24b724b7555f2e7a15"/></dir><dir name="images"><file name="amazon-loading-large.gif" hash="5f6d83bf2b69ab73c7e48ec9b66d54db"/><file name="logo_a-glyph_1x.png" hash="5d44ca86985afbb2a47b9265053a456e"/></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Creativestyle"><dir name="AmazonPayments"><dir name="Block"><file name="Abstract.php" hash="94b0b434a22a7471e0814de8026b617a"/><dir name="Adminhtml"><dir name="Debug"><dir name="Section"><file name="Table.php" hash="f6947e99e982164a220e3d82fa0f988f"/></dir><file name="Section.php" hash="a249d2fedeaa5e485e40ffaeeb0335c6"/></dir><file name="Debug.php" hash="51fdd651a5a672c75e645fc5974fae95"/><file name="Info.php" hash="5e948aaea093307b3a2d9483e116934f"/><dir name="Log"><file name="Abstract.php" hash="183114e38269e6ad666840127cfe0311"/><dir name="Api"><file name="Grid.php" hash="1f3ab2ee3c884a080babe33d092c97e4"/><file name="View.php" hash="eb30544643fa9571a454a763111d0113"/></dir><file name="Api.php" hash="5ea0736c83de5feb01df0a3ec4db4d80"/><dir name="Exception"><file name="Grid.php" hash="e12982b34793ad34c3eb0b24bac9dc1d"/><file name="View.php" hash="cae17d2a2d5716e8dde1c6662397131e"/></dir><file name="Exception.php" hash="c35dafcaf89ca709394341394862f4cf"/><dir name="Grid"><file name="Abstract.php" hash="11ccd78d87834bd73398358f190ef9bd"/></dir><dir name="Ipn"><file name="Grid.php" hash="8efa9f6b1adcac9a3562979ac97bc0c5"/><file name="View.php" hash="6ab63414642658e95258a73a143e6955"/></dir><file name="Ipn.php" hash="a2225b081ccb354bfe94b4a646b0d521"/><dir name="View"><file name="Abstract.php" hash="1b9423b817bc1c0765601d73b78d0d8e"/></dir></dir><file name="Notifications.php" hash="de983b6f26e73bc5ac71b6a979d1125e"/><file name="Register.php" hash="d9059369081c31a305a90de1438802d8"/><dir name="Renderer"><file name="Timestamp.php" hash="190325613c20e2cf97adc28950658e99"/></dir><dir name="Sales"><file name="Order.php" hash="45a5ee919501a2bf26160d38dafccd44"/></dir><file name="SellerCentral.php" hash="2a70da712e0010b76d7f166a010f511d"/></dir><dir name="Button"><file name="Js.php" hash="6081c66a769b6db8a7f607e6f60365af"/></dir><dir name="Checkout"><file name="Abstract.php" hash="db5cf0b3d9dd37ad4552987b9df5e09c"/><file name="Js.php" hash="0e5ba9b3f4ae06139a084816c04a05a3"/><file name="Notice.php" hash="3bd2869322fac80a80436f8e2daa8d70"/><file name="SandboxToolbox.php" hash="047b1bfde3f5469195b9a7ccfee3f16d"/></dir><file name="Checkout.php" hash="6620fc17c1c86deac47709664d6a93f7"/><dir name="Js"><file name="Interface.php" hash="11827746ff821b4cbda1ad041e30321e"/></dir><file name="Js.php" hash="8610dddee84cda450c4874e0fd93b5f5"/><dir name="Login"><file name="Abstract.php" hash="d260896597dc717bd82bf2d76374a9e4"/><dir name="Account"><file name="Confirm.php" hash="ae8123a65a717a0046aaf1d9dc21f878"/><file name="Update.php" hash="8fdadae9294b17fbb0989f8d0e2016a4"/></dir><file name="Button.php" hash="bad55de20f480d53a15ddedd551ff6dd"/><file name="Js.php" hash="2d144b27681c48f2adfa8cd0fdd5d31e"/><file name="Redirect.php" hash="8634cf4f6bf792006e4ab7674b758e5c"/></dir><dir name="Onepage"><file name="Button.php" hash="b122db0163e8580f42679f13a3a45726"/></dir><dir name="Pay"><file name="Abstract.php" hash="998a730d1d4cb518c08bff62121166e7"/><file name="Button.php" hash="b76cbc47c91b88ceb9fc1fde609fa2dc"/></dir><dir name="Payment"><file name="Info.php" hash="c6285a5688834b456765317d3471bf2a"/><dir name="Legacy"><file name="Info.php" hash="6d4b1d32a19c80c42bf3acccd1963ba5"/></dir></dir></dir><dir name="Exception"><dir name="InvalidStatus"><file name="Recoverable.php" hash="dc4d8857cf1841bb56f6da11cf92e99e"/><file name="Unrecoverable.php" hash="53a377c09d7c41368adf597e0173e513"/></dir><file name="InvalidStatus.php" hash="614d45747601dea035ff2a3faadd7e18"/></dir><file name="Exception.php" hash="ca655a29842b38dd2ebf438208a6c70c"/><dir name="Helper"><file name="Data.php" hash="a0282202539953a047cb17316def6b28"/><file name="Debug.php" hash="6f1c742ab601393dcc18d494aa6f7796"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="1814fcd0d61599f15d808d9c2990ebe4"/><file name="Advanced.php" hash="0f5a3f480da20a2f8253f9b78c78f9dd"/><file name="Ipn.php" hash="e672342ca8b1f1f7493e42b9656aeabe"/><file name="Login.php" hash="d9297e66749c6930a1010a5babdfde14"/></dir><file name="Checkout.php" hash="e6f41d2e3a36bb1f63ebaed5f3979d5f"/><file name="Config.php" hash="0138bd7dffbe8aa760edb396ab2770b1"/><dir name="Log"><file name="Collection.php" hash="13d71847c4e164af18636a3fe5bf975b"/></dir><file name="Logger.php" hash="0821a7d8ddeea993fe3ad9495ef6f9d9"/><dir name="Lookup"><file name="Abstract.php" hash="443bbef12f4e7c896e54cf0b7463e04e"/><file name="AccountRegion.php" hash="7be22d7cab69151e409ea7ec7df7fadc"/><file name="Authentication.php" hash="af62e3961a5b00319aa32487c6cc20d6"/><file name="AuthorizationMode.php" hash="b26806dc71de6b55bc37b20a1b804364"/><dir name="Design"><dir name="Button"><dir name="Color"><file name="LoginPay.php" hash="e9a469e82c7805782cf7694c4d50af7a"/></dir><file name="Color.php" hash="81a33471dfefb27897f7b1ff19749671"/><dir name="Size"><file name="LoginPay.php" hash="6cdf3d3633617994783a38f30add86fe"/></dir><file name="Size.php" hash="7c73a97a0fa3f4c6a73b838c0594ad5c"/><dir name="Type"><file name="Login.php" hash="44e852189b0305bbe4cc38848316d4e6"/><file name="Pay.php" hash="5e6f65d1e355ed265787b28b12c6e7a6"/></dir></dir></dir><file name="Frequency.php" hash="5115fb39b48781e5e97f9b62414a72cc"/><file name="IpnActive.php" hash="b73000f5bfc1e26b80911e125e9eec46"/><file name="Language.php" hash="6091a70bddec2c2a4812fff3e8cd09ca"/><file name="PaymentAction.php" hash="6d0c15996ec3caf112d88e07ea703bb4"/><file name="Region.php" hash="8f5cc8ab970aa165e16085368b320f89"/></dir><file name="Observer.php" hash="0316aeff3e7c6bb028d35b6b76a6c494"/><dir name="Payment"><file name="Abstract.php" hash="fa9f375db3dec0c431b49cc36d7e1979"/><dir name="Advanced"><file name="Sandbox.php" hash="10e80bd587f2d27fc97bb6e595936b82"/></dir><file name="Advanced.php" hash="15c5dde1d3a82a9bdf01e1681c47ec3b"/><file name="Legacy.php" hash="6b90f7a11964036a40d1f927f0f1ba40"/></dir><dir name="Processor"><file name="Ipn.php" hash="515c793d4bfd1cf2ce5c2bcc4e52a0a0"/><file name="Order.php" hash="bea0a609138e58614fe8fdb11426bf40"/><file name="Payment.php" hash="5e3493b085ee26031943cd13cbdad63f"/><file name="TransactionAdapter.php" hash="8566292e6e7ac85471ac12f2bd155ab8"/></dir><dir name="Service"><file name="Login.php" hash="33f6058caab9bd4791b954d0c19c0b10"/><file name="Quote.php" hash="d566370281e690ca31f3ddd47c21ef1d"/></dir><file name="Setup.php" hash="41f37f025dc543f63d2dccd28f41e255"/><file name="Simulator.php" hash="553bb0c0ca3c74202083b366f4c33e9a"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="DataPolling"><file name="Cron.php" hash="8beaac61d4ebfb4ac74335f5ff121ce0"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Amazonpayments"><file name="DebugController.php" hash="24744390b526b5f06785124bdcbd76e9"/><dir name="Log"><file name="ApiController.php" hash="3a1554fc86acfa1f4eec012fc16e6953"/><file name="ExceptionController.php" hash="cd98156b5b9e875f2ceb67f6b0769655"/><file name="IpnController.php" hash="21dc827d4d89a0fdae12c985ba296c1d"/></dir><file name="OrderController.php" hash="83ffbf0de858765c0c9c7c594e9b2b66"/><file name="SystemController.php" hash="516e0ec1c7cc978a087ec4b7e3d91e44"/></dir></dir><dir name="Advanced"><file name="CheckoutController.php" hash="94a05bd4f808be46218481789f008606"/><file name="IpnController.php" hash="78277323844f97a30b6531aa331eef86"/><file name="LoginController.php" hash="2d6d0d201c1ff4bcdeb9a1c19372a888"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="178d013c12c7fabbce36290d68558c8d"/><file name="config.xml" hash="868dca131783d0b54cba7bddb20f4cbe"/><file name="system.xml" hash="fb2d971b4d6232700bf582bb09df61b9"/></dir><dir name="sql"><dir name="amazonpayments_setup"><file name="mysql4-install-1.0.0.php" hash="d4681b9a39905cc9e9dcc660688dea85"/><file name="mysql4-install-1.6.2.php" hash="6bb2b8656a3c6b2b517b88ca98ff84de"/><file name="mysql4-upgrade-1.1.6-1.2.0.php" hash="27f8e108bac4268d3c17e812b413dbbc"/><file name="mysql4-upgrade-1.7.4-1.7.6.php" hash="cbe499399eac3dcf607dd42e9be239a1"/><file name="mysql4-upgrade-1.7.8-1.8.2.php" hash="7f858b1140aff7a4bf36545c72d0c0fe"/></dir></dir></dir></dir></target><target name="magelib"><dir name="OffAmazonPayments"><dir name="HttpRequest"><file name="HttpException.php" hash="d2feba35467baa6ff61503bb15d5f016"/><file name="IHttpRequest.php" hash="7c7d44deffb15b2db161d8dfc585c4d2"/><file name="IHttpRequestFactory.php" hash="02c9cfe067cd0ae40f14704d58fa2098"/><dir name="Impl"><file name="HttpRequestCurlImpl.php" hash="815a03cc4b5fc1222e0bc9b9f85f3428"/><file name="HttpRequestFactoryCurlImpl.php" hash="09140d0c9518e0e7c1bffb8bd0c98310"/></dir></dir><file name="Model.php" hash="778dfe809587f010352d9ccd2bed8106"/><file name="OffAmazonPaymentsServiceUtils.php" hash="827a9e9f2b04652736406b1cd9672a2c"/></dir><dir name="OffAmazonPaymentsNotifications"><file name="Client.php" hash="a8bfa462188eb5193985e984ff503b04"/><dir name="Impl"><file name="Certificate.php" hash="33aec53879fff368b0f6f52ce7f79f13"/><file name="IpnNotificationParser.php" hash="3f4e203c89d23c2971214a7e0713f6a9"/><file name="Message.php" hash="6cffc2f4b4c09a8411572cdb7ddcc83a"/><file name="OpenSslVerifySignature.php" hash="45449e157fa55ab5c2c16a9207616357"/><file name="SnsMessageParser.php" hash="c6d1b0bfa852441b4ddfdc25cf624c9d"/><file name="SnsMessageValidator.php" hash="7291f2b91f0dc9ace62752c37b69d15f"/><file name="VerifySignature.php" hash="b7c3089f35fba596e16f6f39f7029908"/><file name="XmlNotificationParser.php" hash="a6b6ff48de5cee20db383a2a6c953092"/></dir><file name="Interface.php" hash="3930f956058657059e2ea705fc43333d"/><file name="InvalidCertificateException.php" hash="4711c0ea7b574a8ab3fb04623b2f7453"/><file name="InvalidMessageException.php" hash="c9608c6ecfafeae2db9db9e8786f2a15"/><dir name="Model"><file name="AuthorizationDetails.php" hash="c5e85494dd4b21c49c1d786bf38879da"/><file name="AuthorizationNotification.php" hash="490fd1da11270f9af20a6ca0d87b8149"/><file name="BillingAgreement.php" hash="00f24d00547ddb3320a20f77132feb0e"/><file name="BillingAgreementLimits.php" hash="e972154534547bde777133c2de1e835f"/><file name="BillingAgreementNotification.php" hash="c5ee60508326e840ce02765b175897aa"/><file name="BillingAgreementStatus.php" hash="68da18941f6cc8b17a9157c83e550c0c"/><file name="CaptureDetails.php" hash="f8702f3d5d5afd595814182f847367c5"/><file name="CaptureNotification.php" hash="8d4da47b23888f3cfd94fe9d217c46da"/><file name="IdList.php" hash="4d77007c611ba2a990179ecf506d4ac7"/><file name="IpnNotificationMetadata.php" hash="802e724b1cc35eae31e4aa9288446b8f"/><file name="MerchantRegistrationDetails.php" hash="d4de7689d8e216567abd710dde7ef4ed"/><file name="NotificationImpl.php" hash="17205cb366af769c0563d80ee82de067"/><file name="NotificationMetadataImpl.php" hash="27bdabd2ae04ab753e60b0ab3042859c"/><file name="OrderItemCategories.php" hash="ac5edd66a87e28f1e0a4be758e3d7b8c"/><file name="OrderReference.php" hash="3ff8f8729cc3e398823061b73d8d2789"/><file name="OrderReferenceNotification.php" hash="4b6a0e68f77ff7b710fe00916d5b0546"/><file name="OrderReferenceStatus.php" hash="e09fc390fb5c21afd4764c41dd7418c0"/><file name="OrderTotal.php" hash="ce3157db8b593588c9405030968176a5"/><file name="Price.php" hash="cff064218bbb2d56f463ab489dc907cd"/><file name="ProviderCreditDetails.php" hash="d355185842eb0816de151fb535b14edc"/><file name="ProviderCreditNotification.php" hash="7ddc5d80dee797893171237ecabf10e2"/><file name="ProviderCreditReversalDetails.php" hash="a789bbf3c7074bc800053967e64286c7"/><file name="ProviderCreditReversalNotification.php" hash="56479587ee330013bdffe17719d0edec"/><file name="ProviderCreditReversalSummary.php" hash="577971d363b95fd7a73e8cd4995a240c"/><file name="ProviderCreditReversalSummaryList.php" hash="05ae0f9769e4c46e5c3ba3f9907ae576"/><file name="ProviderCreditSummary.php" hash="4403e12b73867b58021655df3fcf6720"/><file name="ProviderCreditSummaryList.php" hash="667167ed6a427d71086aa4ef8dabc5f5"/><file name="RefundDetails.php" hash="ae08c0447ec12996a465772d55f2c28f"/><file name="RefundNotification.php" hash="fb29285214205fd09c4f9ac7964c1a07"/><file name="SellerBillingAgreementAttributes.php" hash="691b120995ac30f3f542c3ec9cd6c0d6"/><file name="SellerOrderAttributes.php" hash="896cf700231529f39e903d4614579a85"/><file name="SnsNotificationMetadata.php" hash="df453726f714f7ea50cc04b6093123eb"/><file name="SolutionProviderMerchantNotification.php" hash="77e4152a922f1a26582e46546387943d"/><file name="SolutionProviderOption.php" hash="df8fbbb1ad2fef1796e3b42a9a417a64"/><file name="SolutionProviderOptions.php" hash="624d2f4efd3a32eab8baf8628efda4ef"/><file name="Status.php" hash="8726fde00e0f97595115866c1a8000dd"/></dir><file name="Notification.php" hash="562b2a4eb6e292b6df4db3112391ab55"/><file name="NotificationMetadata.php" hash="07f94bf3a41ed0c72f387e900260c48a"/></dir><dir name="OffAmazonPaymentsService"><file name="Client.php" hash="26dd6a2d2c407427c5ea0933e2159351"/><file name="Environments.php" hash="1a9ff744e131c19f5bd0d58c5aa578ab"/><file name="Exception.php" hash="eee23053020a397cf082a28f41001284"/><file name="Interface.php" hash="b681a546f2a5e3690e5e04f9c75ca8a5"/><file name="MerchantValues.php" hash="2cca67c2b1b0557e5a63d4ef35950172"/><file name="MerchantValuesBuilder.php" hash="a6328566f8f5ee48a8b054d8f02897e1"/><dir name="Model"><file name="Address.php" hash="6840237ae7035912f95020ff6d580033"/><file name="AuthorizationDetails.php" hash="159edfb213e12b7ecb847c103c70c5de"/><file name="AuthorizeOnBillingAgreementRequest.php" hash="8b0e8d6ffa94b1f18546b7554ec042ed"/><file name="AuthorizeOnBillingAgreementResponse.php" hash="8770715da01743adeafc25d54bb0c1d9"/><file name="AuthorizeOnBillingAgreementResult.php" hash="a73c77f8fce673257e2dca072ad6fab6"/><file name="AuthorizeRequest.php" hash="08bdab4fe2896f4a2b808c6e8abfeeba"/><file name="AuthorizeResponse.php" hash="0ae054040c36e7362683146b537f551b"/><file name="AuthorizeResult.php" hash="e7dfd388200467e736ff3b7d11c8d2bf"/><file name="BillingAddress.php" hash="93f82f074b62e8b1abf25ae8ae44b676"/><file name="BillingAgreementAttributes.php" hash="e52a2c92f92f7081ac742e24f70385df"/><file name="BillingAgreementDetails.php" hash="359f9bd686d21242f2e27feb8b3379b2"/><file name="BillingAgreementLimits.php" hash="66f84e67052b91092867496d11a28763"/><file name="BillingAgreementStatus.php" hash="adcf9379fb2f6fa88a1d8e230d8cf101"/><file name="Buyer.php" hash="cb691abf757d54025ac43964849dd5fd"/><file name="CancelOrderReferenceRequest.php" hash="ef06ecd8f05a4c032aa28f5b5a132d05"/><file name="CancelOrderReferenceResponse.php" hash="004c4e3a21ea1dc8e11bbba3d733b3ca"/><file name="CancelOrderReferenceResult.php" hash="74b7ad1facdf31263e9bb55544303180"/><file name="CaptureDetails.php" hash="4f360221d888d50d92e7f2ea20b5b54f"/><file name="CaptureRequest.php" hash="5b976a76214f870964d49cf104a50b30"/><file name="CaptureResponse.php" hash="7ece74f93f362d31bc16f9fb7bf2b270"/><file name="CaptureResult.php" hash="e0fccf0fe27efd36d822ddcdaefe97ac"/><file name="CloseAuthorizationRequest.php" hash="cb0e2113e9e36b7b133b539e5ff99c50"/><file name="CloseAuthorizationResponse.php" hash="99be7612c9effdac53fb0bc225a13eb1"/><file name="CloseAuthorizationResult.php" hash="6d77eea8924d2ef6a3acd0dabb3f9f76"/><file name="CloseBillingAgreementRequest.php" hash="89f82b30dd0902faa6feb3a57dfe24cb"/><file name="CloseBillingAgreementResponse.php" hash="1bda191dc9a8b2b1a14b6e11772f05cf"/><file name="CloseBillingAgreementResult.php" hash="f926f5d65d95323647129605a26037ae"/><file name="CloseOrderReferenceRequest.php" hash="b8b592bdc71a4046efead52196f8073c"/><file name="CloseOrderReferenceResponse.php" hash="137da00395052b25099de3a0d152887d"/><file name="CloseOrderReferenceResult.php" hash="81e21f75ae477f07a9b913e1ac2bd89d"/><file name="ConfirmBillingAgreementRequest.php" hash="ab524aa1cc6e51a8b483e4f96b7e1e02"/><file name="ConfirmBillingAgreementResponse.php" hash="0639de39ba58e6c2b806a84b43dc31d3"/><file name="ConfirmBillingAgreementResult.php" hash="42456915a3efa4ccd774a1d5d3a05307"/><file name="ConfirmOrderReferenceRequest.php" hash="632a4b8414aac550fc0ec59a83737be7"/><file name="ConfirmOrderReferenceResponse.php" hash="fb0c329ffa1a54e4c15c531b58561f6f"/><file name="Constraint.php" hash="e46dc3d18486b6639ea5b8f52a92cfdc"/><file name="Constraints.php" hash="cb983d71bda42bdda767ffc9f4feeafc"/><file name="CreateOrderReferenceForIdRequest.php" hash="b1f4e96f1392c427228f5799edc5dc64"/><file name="CreateOrderReferenceForIdResponse.php" hash="630cb4812997fa7c067f393dfb5e2f48"/><file name="CreateOrderReferenceForIdResult.php" hash="4abf7af5eb56058c17996406a877f427"/><file name="Destination.php" hash="737777909588915788398ab86f0de1de"/><file name="Error.php" hash="bb8b6bb6d3c778fc4e1d0a346b5fa03a"/><file name="ErrorResponse.php" hash="8804c6f39d9a0bdcbd76260eba9d261d"/><file name="GetAuthorizationDetailsRequest.php" hash="67d5a478c01fbbfba420dff3cf2098dc"/><file name="GetAuthorizationDetailsResponse.php" hash="0c9fe935bcb953cc9cd9e11bab32b5b2"/><file name="GetAuthorizationDetailsResult.php" hash="02ac4fa6533ccfd705c543160165c31d"/><file name="GetBillingAgreementDetailsRequest.php" hash="761cbdc44a4ac1e28b22d01f7a484b76"/><file name="GetBillingAgreementDetailsResponse.php" hash="061084469683253d1d76d5c881e5062d"/><file name="GetBillingAgreementDetailsResult.php" hash="5a585ad373b11b806ba320bcd988f71b"/><file name="GetCaptureDetailsRequest.php" hash="69252be80c32d911f2ff664904375e7d"/><file name="GetCaptureDetailsResponse.php" hash="5323ed86174064bb1122187457440861"/><file name="GetCaptureDetailsResult.php" hash="962ef27de2778c9ccde55d848b8fa649"/><file name="GetOrderReferenceDetailsRequest.php" hash="edfea06a629f298ab134229d35fef319"/><file name="GetOrderReferenceDetailsResponse.php" hash="4955733fe736a9f51e0bd6823b8bf74b"/><file name="GetOrderReferenceDetailsResult.php" hash="f9ee3738bddff51c6bd545028d275348"/><file name="GetProviderCreditDetailsRequest.php" hash="e51201c7d39935c4fa8da96e822b7075"/><file name="GetProviderCreditDetailsResponse.php" hash="e312b54192343e16230b7436b101766a"/><file name="GetProviderCreditDetailsResult.php" hash="9f0af601e8a716e4e5af3802d8952fe4"/><file name="GetProviderCreditReversalDetailsRequest.php" hash="cf74576ef8dc02e34244aca962d854b3"/><file name="GetProviderCreditReversalDetailsResponse.php" hash="a869c2695416514834c83890d3b080f9"/><file name="GetProviderCreditReversalDetailsResult.php" hash="33f1980d1632034eee8396c6286b5320"/><file name="GetRefundDetailsRequest.php" hash="7ab0f7d756a59a284ffd0ffc361fee42"/><file name="GetRefundDetailsResponse.php" hash="4847a7513f69d3f81c306d26ad7c5291"/><file name="GetRefundDetailsResult.php" hash="0c24e3c8e95f4ee10f5c4e9dd07518bf"/><file name="IdList.php" hash="25fd15394669b4721bdd0e4d367d534f"/><file name="OrderItemCategories.php" hash="995db32a92601555ee9a7550d1daae7e"/><file name="OrderReferenceAttributes.php" hash="78e1735d8fc99c5676d894564d6b88c7"/><file name="OrderReferenceDetails.php" hash="4e9365808e09fe1b1407348c9d05ca41"/><file name="OrderReferenceStatus.php" hash="5c21e44d991a24ab2527e491c435d54c"/><file name="OrderTotal.php" hash="2ff8e8ccc9c7266d72f534485ccd01bf"/><file name="ParentDetails.php" hash="99f7062b4764166637dfc44b4fe4788c"/><file name="Price.php" hash="4ac8de3791146a17a237a914c9f762a6"/><file name="ProviderCredit.php" hash="8f2f21ac5c0dba73e64a35cc7a61fbbe"/><file name="ProviderCreditDetails.php" hash="d9057efbe528a1571eda4252b8ad1813"/><file name="ProviderCreditList.php" hash="4a3eeae90b5a1ed09a528f5254b968a5"/><file name="ProviderCreditReversal.php" hash="07c1d7959a7cfb94164846c276b43ce7"/><file name="ProviderCreditReversalDetails.php" hash="ebfbf919b4a399213c7e312e59873e43"/><file name="ProviderCreditReversalList.php" hash="8eb64497a6a233535c8b0ca55591d06b"/><file name="ProviderCreditReversalSummary.php" hash="7646c582ea5fb3a46dcb09637f7daf01"/><file name="ProviderCreditReversalSummaryList.php" hash="cae281ddee9f766d1d5bf350e238037a"/><file name="ProviderCreditSummary.php" hash="69bc18eefe644e6b851a6daf7e6dfa8a"/><file name="ProviderCreditSummaryList.php" hash="751812d8903ba883036d1bc381c37667"/><file name="RefundDetails.php" hash="b53e480fe8e8e5d96a4b6a0df431e5ac"/><file name="RefundRequest.php" hash="665585551aba39532fe3352abb4859b3"/><file name="RefundResponse.php" hash="fadbc4ad5313395a48e38b1c0502c85a"/><file name="RefundResult.php" hash="9ddad34dd53edfd156651b021bc5137a"/><file name="ResponseHeaderMetadata.php" hash="382fe7bd666eea293b729c5d6c79348f"/><file name="ResponseMetadata.php" hash="073748a20ecd8bddc240dd4c0a4a56b9"/><file name="ReverseProviderCreditRequest.php" hash="802a3709149add8fa192ce389b93c2ea"/><file name="ReverseProviderCreditResponse.php" hash="ff702a7def546f0c6216094f93095bd7"/><file name="ReverseProviderCreditResult.php" hash="84f3e78e1b8b1b47e6f8b92abee7704b"/><file name="SellerBillingAgreementAttributes.php" hash="308899b9e48a95f0b5d48d74a510c915"/><file name="SellerOrderAttributes.php" hash="35b62fe0e130207dfaa2caefa1dfe7ba"/><file name="SetBillingAgreementDetailsRequest.php" hash="347a6c85c5cc8394255efcb9c4b57d52"/><file name="SetBillingAgreementDetailsResponse.php" hash="92299b3338dc7435149f17d8126f7518"/><file name="SetBillingAgreementDetailsResult.php" hash="7cb3e84e58fe2bbf163f8ac34de5eccf"/><file name="SetOrderReferenceDetailsRequest.php" hash="4cf2605f5188116a1526d463638aa768"/><file name="SetOrderReferenceDetailsResponse.php" hash="41720bdf965dcd759cc3278e01610530"/><file name="SetOrderReferenceDetailsResult.php" hash="4281a97da7865e47157c1d22c2094bfd"/><file name="Status.php" hash="28bd007e6c9747417a063e9941cc0dba"/><file name="ValidateBillingAgreementRequest.php" hash="d77beda441fd1688903e96a02fa4e643"/><file name="ValidateBillingAgreementResponse.php" hash="89658fd2a78d7dbb2997dae6ba169f7e"/><file name="ValidateBillingAgreementResult.php" hash="b9244d0496b0bbcfbf7628c775c17ca3"/></dir><file name="Model.php" hash="fafcb3a4318eb7bd9be5b69225187352"/><file name="RegionSpecificProperties.php" hash="f4e77cc63766b42fbef6ef1e07ec4402"/><file name="Regions.php" hash="4676d77db7dde345118e2a6fc021ce3f"/></dir></target></contents>
|
24 |
<compatible/>
|
25 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
26 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Creativestyle_AmazonPayments</name>
|
4 |
+
<version>1.8.4</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Creative Commons Attribution-NoDerivatives 4.0 International</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Integration of your Magento shop with Login and Pay with Amazon service</summary>
|
10 |
<description>This extension provides an official integration of your Magento store with Login and Pay with Amazon service. It helps your customers shop quickly, safely and securely. Your customers can pay on your website without re-entering their payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee.</description>
|
11 |
+
<notes># Improvements
|
12 |
+
- Support for France, Italy and Spain
|
13 |
+
- Support for PHP 7
|
14 |
+
- Configurable store name in API calls
|
15 |
+
# Changes
|
16 |
+
- `Amazon Payments` re-branding
|
17 |
# Fixes
|
18 |
+
- Fixed legacy payment method bug when trying to list all payment methods
|
19 |
+
- Fixed missing `original_price` and `base_original_price` item's attributes after order is placed
|
20 |
+
- Added missing return statement to the IPN controller
|
21 |
</notes>
|
22 |
<authors><author><name>creativestyle GmbH</name><user>creativestyle</user><email>amazon@creativestyle.de</email></author></authors>
|
23 |
+
<date>2017-02-24</date>
|
24 |
+
<time>16:00:56</time>
|
25 |
+
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="amazonpayments.xml" hash="08f9c3c3cdd9536c28746bb3be7eeb0c"/></dir><dir name="template"><dir name="creativestyle"><dir name="amazonpayments"><dir name="advanced"><file name="documentation.phtml" hash="af3ae6ebce4712dd8fb972bef508ca55"/><dir name="log"><dir name="api"><file name="view.phtml" hash="2c2fcd6122b4481ad2cf8b7657f3f187"/></dir><dir name="exception"><file name="view.phtml" hash="c5d01f6de86e47d4da5dfabd60b1b382"/></dir><file name="js.phtml" hash="eb1d2098440a0bac2a6f5b959afa3693"/><dir name="notification"><file name="view.phtml" hash="31d893106f7c7c7f94f05d5cafa36440"/></dir></dir></dir><dir name="debug"><dir name="section"><file name="table.phtml" hash="f4bb8e35b3608cf0639407a3461c3717"/></dir><file name="section.phtml" hash="1472da0e9f07b5583a02e327483d4d75"/></dir><file name="debug.phtml" hash="9748d4fe92986f36ad47ae5b61fc4883"/><file name="info.phtml" hash="c3748d44ad12514e379393e3722c7b82"/><file name="init.phtml" hash="ba9d53045077e63b4e6c25c6b7bb685c"/><file name="notifications.phtml" hash="2bdcecbebc9b0df6d00ad5c49c464e2d"/><dir name="payment"><file name="info.phtml" hash="1604a1ca8c640748023859dee07f1182"/><dir name="legacy"><file name="info.phtml" hash="7d35f0a93900f40fb4433f576734595a"/><dir name="pdf"><file name="info.phtml" hash="73e54dbec4a659063a6e6c3b35565159"/></dir></dir><dir name="pdf"><file name="info.phtml" hash="1fb213f3fcc3aeecaa6305c07cff3b73"/></dir></dir><file name="register.phtml" hash="0a232ba7493098b49da82c88c646cc87"/><file name="seller_central.phtml" hash="fa3012b0191ac7175bc6bb68188f654c"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="amazonpayments.xml" hash="bcbcd2f41ce44082d3cbccbe18c2a3c1"/></dir><dir name="template"><dir name="creativestyle"><dir name="amazonpayments"><dir name="button"><file name="js.phtml" hash="a108a88af0112fd43123a1b37cfc106b"/></dir><dir name="checkout"><file name="capture_notice.phtml" hash="f9c75cd05a596d0a16c55f0169b4ee6c"/><file name="js.phtml" hash="22aefc3f6be0ce5c223d6d4942b7ba69"/><dir name="review"><file name="button.phtml" hash="5fa9b038cc1e91a8203b163411b8bf20"/></dir><file name="sandbox_toolbox.phtml" hash="b1a346f095d83223914e65024f56d19f"/><file name="shipping_method.phtml" hash="852008f89fc32c7af6c250cafdde5f51"/></dir><file name="checkout.phtml" hash="93574891397c9d3cd95272f918f512bd"/><file name="js.phtml" hash="13581f0bcdf7c39da46be530892e8183"/><dir name="login"><dir name="button"><file name="account_login.phtml" hash="d7dc275051ab1973b74cd4b5c4b589d8"/></dir><file name="button.phtml" hash="b5d66280337ecc895ae9a2bc48c469e4"/><dir name="form"><file name="account_confirm.phtml" hash="35adec8936cc612b865bca61e2316a8b"/><file name="account_update.phtml" hash="64fdc50df3b3c49384d5d50a1da82d4d"/></dir><file name="js.phtml" hash="9d542e726fe51739b72fc2e509edadd8"/><file name="logout.phtml" hash="e8b6f4d39047903e4ee8d481ba59543b"/><file name="redirect.phtml" hash="8d395ab25504c0cdb928cf93e684b868"/></dir><dir name="onepage"><file name="button.phtml" hash="199ae967a31b7d92b0a2279e339bb938"/></dir><dir name="pay"><file name="button.phtml" hash="dfcccab45794c81d2d3ca52f709019d4"/></dir><dir name="payment"><file name="info.phtml" hash="3631896707e596d9675f526a7d021617"/><dir name="legacy"><file name="info.phtml" hash="7d35f0a93900f40fb4433f576734595a"/><dir name="pdf"><file name="info.phtml" hash="738d0b82322b1df3c315daf5253e001e"/></dir></dir><dir name="pdf"><file name="info.phtml" hash="69549bf3340c19d62f42a556f13e8a1e"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Creativestyle_AmazonPayments.xml" hash="3d30f68b24829494a2a66164eba0e5f7"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="Creativestyle_AmazonPayments.csv" hash="3f4350da6ae572c1bffef16cbd4f2a2d"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="863d241bc23599124715c1e797a3cae6"/></dir></dir></dir><dir name="en_GB"><file name="Creativestyle_AmazonPayments.csv" hash="a703215724b1d6b65103f300e654fa77"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="f858886b12b6f3e16cab85f5ce57b975"/></dir></dir></dir><dir name="en_US"><file name="Creativestyle_AmazonPayments.csv" hash="e3a8dcbb241663571be4a7bd608b6d31"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="702e0a9ada30a5bb5776b28fe63eda93"/></dir></dir></dir><dir name="es_ES"><file name="Creativestyle_AmazonPayments.csv" hash="a9f2ed21f79e1b388d2975af4cc16e9b"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="e1705a091d04cd4da4d0b0cc49bd283f"/></dir></dir></dir><dir name="fr_FR"><file name="Creativestyle_AmazonPayments.csv" hash="4ce7c97fb31da4d7de885dd1a85fe8d4"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="e593f24125ecb3ffacbe467d8f39f2de"/></dir></dir></dir><dir name="it_IT"><file name="Creativestyle_AmazonPayments.csv" hash="bda9fadde80b8ed7497fe03a53da537a"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="5c3857cb5465c91415940689eec8dc75"/></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="creativestyle"><file name="apa_checkout.js" hash="cf5c71c03203cb3cb9f9a53560b75f49"/><file name="apa_checkout.min.js" hash="94b18941e9f90dd36f571d61f4920408"/><file name="apa_sandbox_toolbox.min.js" hash="caaeb27b79fb6a26561d5e4bd6a4d851"/><dir name="vendors"><file name="prism.js" hash="c700de3d980f7ef1e056dc5400acfd44"/></dir><dir name="adminhtml"><file name="amazonpayments.min.js" hash="417f5ac42d57cdd42ed3d7005dcbd6a2"/></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments.css" hash="db97912a183d743b89a5bdfc16a66e71"/><file name="amazonpayments-highlight.css" hash="f6daf03c989ac56ad436300b5520f0df"/></dir><dir name="images"><file name="amazon-payments-advanced-creativestyle-header-logo.png" hash="8591e03aeaa7cbc71a509443de35bfce"/><file name="amazon-payments-advanced-creativestyle-header-logo-white.png" hash="9552112bc27581249cb8e8de1bb91887"/><file name="amazon-payments-advanced-creativestyle-logo.png" hash="abc54550ae7d7a3e5c8a5cd0896d310d"/><file name="amazon-payments-advanced-header.png" hash="60f587870fbdb1242368c8c3b553bd8c"/><file name="amazon-payments-advanced-section.png" hash="8bc620f345eb46c920c51875d4cfad7c"/><file name="logo_a-glyph_16.png" hash="44a3f5f0013cab34d26653eb48b989fc"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments.css" hash="ddb0874cb9525e573679cc6a5e8f375e"/><file name="amazonpayments-responsive-widgets.css" hash="ffca5cdc8a4e0585946c78258044c471"/><file name="amazonpayments-widgets.css" hash="35704192aaeb204e407e8b853c118d16"/></dir><dir name="images"><file name="amazon-loading-large.gif" hash="5f6d83bf2b69ab73c7e48ec9b66d54db"/><file name="logo_a-glyph_1x.png" hash="5d44ca86985afbb2a47b9265053a456e"/></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments-responsive-widgets.css" hash="389d23ee96bb5305f7ba5b616d930846"/><file name="amazonpayments.css" hash="a39d769454a68e24b724b7555f2e7a15"/></dir><dir name="images"><file name="amazon-loading-large.gif" hash="5f6d83bf2b69ab73c7e48ec9b66d54db"/><file name="logo_a-glyph_1x.png" hash="5d44ca86985afbb2a47b9265053a456e"/></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Creativestyle"><dir name="AmazonPayments"><dir name="Block"><file name="Abstract.php" hash="1518541acdae0c74473a2f57088165d2"/><dir name="Adminhtml"><dir name="Debug"><dir name="Section"><file name="Table.php" hash="f6947e99e982164a220e3d82fa0f988f"/></dir><file name="Section.php" hash="a249d2fedeaa5e485e40ffaeeb0335c6"/></dir><file name="Debug.php" hash="51fdd651a5a672c75e645fc5974fae95"/><file name="Info.php" hash="5e948aaea093307b3a2d9483e116934f"/><dir name="Log"><file name="Abstract.php" hash="183114e38269e6ad666840127cfe0311"/><dir name="Api"><file name="Grid.php" hash="1f3ab2ee3c884a080babe33d092c97e4"/><file name="View.php" hash="6cfb2d5ac1777a146e9bca3b09e31fc8"/></dir><file name="Api.php" hash="6725b51b926550d4731835245095f9ec"/><dir name="Exception"><file name="Grid.php" hash="e12982b34793ad34c3eb0b24bac9dc1d"/><file name="View.php" hash="f24fa8a264a13ab1f29ada77624bfc09"/></dir><file name="Exception.php" hash="d3ea2ff8dac95796fdb01b0284ccc90a"/><dir name="Grid"><file name="Abstract.php" hash="11ccd78d87834bd73398358f190ef9bd"/></dir><dir name="Ipn"><file name="Grid.php" hash="8efa9f6b1adcac9a3562979ac97bc0c5"/><file name="View.php" hash="6ab63414642658e95258a73a143e6955"/></dir><file name="Ipn.php" hash="a2225b081ccb354bfe94b4a646b0d521"/><dir name="View"><file name="Abstract.php" hash="1b9423b817bc1c0765601d73b78d0d8e"/></dir></dir><file name="Notifications.php" hash="de983b6f26e73bc5ac71b6a979d1125e"/><file name="Register.php" hash="18f5eeb19dee4926183f17e3dc5b6b88"/><dir name="Renderer"><file name="Timestamp.php" hash="190325613c20e2cf97adc28950658e99"/></dir><dir name="Sales"><file name="Order.php" hash="45a5ee919501a2bf26160d38dafccd44"/></dir><file name="SellerCentral.php" hash="2a70da712e0010b76d7f166a010f511d"/></dir><dir name="Button"><file name="Js.php" hash="6081c66a769b6db8a7f607e6f60365af"/></dir><dir name="Checkout"><file name="Abstract.php" hash="db5cf0b3d9dd37ad4552987b9df5e09c"/><file name="Js.php" hash="0e5ba9b3f4ae06139a084816c04a05a3"/><file name="Notice.php" hash="3bd2869322fac80a80436f8e2daa8d70"/><file name="SandboxToolbox.php" hash="047b1bfde3f5469195b9a7ccfee3f16d"/></dir><file name="Checkout.php" hash="6620fc17c1c86deac47709664d6a93f7"/><dir name="Js"><file name="Interface.php" hash="11827746ff821b4cbda1ad041e30321e"/></dir><file name="Js.php" hash="f5c8f0cf7d13387387ad4b2656e8d9a9"/><dir name="Login"><file name="Abstract.php" hash="d260896597dc717bd82bf2d76374a9e4"/><dir name="Account"><file name="Confirm.php" hash="ae8123a65a717a0046aaf1d9dc21f878"/><file name="Update.php" hash="8fdadae9294b17fbb0989f8d0e2016a4"/></dir><file name="Button.php" hash="bad55de20f480d53a15ddedd551ff6dd"/><file name="Js.php" hash="2d144b27681c48f2adfa8cd0fdd5d31e"/><file name="Redirect.php" hash="8634cf4f6bf792006e4ab7674b758e5c"/></dir><dir name="Onepage"><file name="Button.php" hash="9b75d05f91d17a507544fdda247eb1a7"/></dir><dir name="Pay"><file name="Abstract.php" hash="7df3aa69d74f5d11b47e9508c628ca5d"/><file name="Button.php" hash="b76cbc47c91b88ceb9fc1fde609fa2dc"/></dir><dir name="Payment"><file name="Info.php" hash="c6285a5688834b456765317d3471bf2a"/><dir name="Legacy"><file name="Info.php" hash="6d4b1d32a19c80c42bf3acccd1963ba5"/></dir></dir></dir><dir name="Exception"><dir name="InvalidStatus"><file name="Recoverable.php" hash="dc4d8857cf1841bb56f6da11cf92e99e"/><file name="Unrecoverable.php" hash="53a377c09d7c41368adf597e0173e513"/></dir><file name="InvalidStatus.php" hash="614d45747601dea035ff2a3faadd7e18"/></dir><file name="Exception.php" hash="ca655a29842b38dd2ebf438208a6c70c"/><dir name="Helper"><file name="Data.php" hash="a0282202539953a047cb17316def6b28"/><file name="Debug.php" hash="3c9fead1b33537ae7d5a4d15fb799dff"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="1814fcd0d61599f15d808d9c2990ebe4"/><file name="Advanced.php" hash="0f5a3f480da20a2f8253f9b78c78f9dd"/><file name="Ipn.php" hash="e672342ca8b1f1f7493e42b9656aeabe"/><file name="Login.php" hash="d9297e66749c6930a1010a5babdfde14"/></dir><file name="Checkout.php" hash="8b80a8ae2a4b2cf595cabded2f5c3c2a"/><file name="Config.php" hash="e242b57817426a77c0f146657ab5374e"/><dir name="Log"><file name="Collection.php" hash="13d71847c4e164af18636a3fe5bf975b"/></dir><file name="Logger.php" hash="181e90628ee324547ed79cd4fb71b58c"/><dir name="Lookup"><file name="Abstract.php" hash="443bbef12f4e7c896e54cf0b7463e04e"/><file name="AccountRegion.php" hash="7be22d7cab69151e409ea7ec7df7fadc"/><file name="Authentication.php" hash="af62e3961a5b00319aa32487c6cc20d6"/><file name="AuthorizationMode.php" hash="b26806dc71de6b55bc37b20a1b804364"/><dir name="Design"><dir name="Button"><dir name="Color"><file name="LoginPay.php" hash="e9a469e82c7805782cf7694c4d50af7a"/></dir><file name="Color.php" hash="81a33471dfefb27897f7b1ff19749671"/><dir name="Size"><file name="LoginPay.php" hash="6cdf3d3633617994783a38f30add86fe"/></dir><file name="Size.php" hash="7c73a97a0fa3f4c6a73b838c0594ad5c"/><dir name="Type"><file name="Login.php" hash="44e852189b0305bbe4cc38848316d4e6"/><file name="Pay.php" hash="8e85dde5088b02f966a35c9b0a053de5"/></dir></dir></dir><file name="Frequency.php" hash="5115fb39b48781e5e97f9b62414a72cc"/><file name="IpnActive.php" hash="b73000f5bfc1e26b80911e125e9eec46"/><file name="Language.php" hash="4a9b8e24251cb3e80e9e22395b947cac"/><file name="PaymentAction.php" hash="6d0c15996ec3caf112d88e07ea703bb4"/><file name="Region.php" hash="8f5cc8ab970aa165e16085368b320f89"/></dir><file name="Observer.php" hash="0316aeff3e7c6bb028d35b6b76a6c494"/><dir name="Payment"><file name="Abstract.php" hash="3c4487ec8b65ce94a7b81b7f6079c60d"/><dir name="Advanced"><file name="Sandbox.php" hash="10e80bd587f2d27fc97bb6e595936b82"/></dir><file name="Advanced.php" hash="15c5dde1d3a82a9bdf01e1681c47ec3b"/><file name="Legacy.php" hash="654ba0aa8692416ca2721f2ebb59a883"/></dir><dir name="Processor"><file name="Ipn.php" hash="e7d757a60ea7e3481cfe3ba3466af1cc"/><file name="Order.php" hash="bea0a609138e58614fe8fdb11426bf40"/><file name="Payment.php" hash="05d099c2b8bf6dcc67ef6ea037c6594c"/><file name="TransactionAdapter.php" hash="8566292e6e7ac85471ac12f2bd155ab8"/></dir><dir name="Service"><file name="Login.php" hash="33f6058caab9bd4791b954d0c19c0b10"/><file name="Quote.php" hash="d566370281e690ca31f3ddd47c21ef1d"/></dir><file name="Setup.php" hash="41f37f025dc543f63d2dccd28f41e255"/><file name="Simulator.php" hash="553bb0c0ca3c74202083b366f4c33e9a"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="DataPolling"><file name="Cron.php" hash="8beaac61d4ebfb4ac74335f5ff121ce0"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Amazonpayments"><file name="DebugController.php" hash="aedfdbe70c652afe31439b991f912e2c"/><dir name="Log"><file name="ApiController.php" hash="9a8e3361c754eec9d78d3aa62411a47b"/><file name="ExceptionController.php" hash="c5bd239ce59de35dc064cc1474d5a005"/><file name="IpnController.php" hash="6e67da69a85eba85f3c44470fab6c5b9"/></dir><file name="OrderController.php" hash="83ffbf0de858765c0c9c7c594e9b2b66"/><file name="SystemController.php" hash="516e0ec1c7cc978a087ec4b7e3d91e44"/></dir></dir><dir name="Advanced"><file name="CheckoutController.php" hash="05b0e511140cce1bc5c99e24c9378672"/><file name="IpnController.php" hash="918297ba173a73e7be05aae9a4fef0c9"/><file name="LoginController.php" hash="2d6d0d201c1ff4bcdeb9a1c19372a888"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="cd249bbc1deefba11366dba61ed2386c"/><file name="config.xml" hash="08d5fd827c4d90ea9eb9544d39a4281a"/><file name="system.xml" hash="5eed5c0724b7c889676e62fb639fde12"/></dir><dir name="sql"><dir name="amazonpayments_setup"><file name="mysql4-install-1.0.0.php" hash="d4681b9a39905cc9e9dcc660688dea85"/><file name="mysql4-install-1.6.2.php" hash="6bb2b8656a3c6b2b517b88ca98ff84de"/><file name="mysql4-upgrade-1.1.6-1.2.0.php" hash="27f8e108bac4268d3c17e812b413dbbc"/><file name="mysql4-upgrade-1.7.4-1.7.6.php" hash="cbe499399eac3dcf607dd42e9be239a1"/><file name="mysql4-upgrade-1.7.8-1.8.2.php" hash="7f858b1140aff7a4bf36545c72d0c0fe"/></dir></dir></dir></dir></target><target name="magelib"><dir name="OffAmazonPayments"><dir name="HttpRequest"><file name="HttpException.php" hash="d2feba35467baa6ff61503bb15d5f016"/><file name="IHttpRequest.php" hash="7c7d44deffb15b2db161d8dfc585c4d2"/><file name="IHttpRequestFactory.php" hash="02c9cfe067cd0ae40f14704d58fa2098"/><dir name="Impl"><file name="HttpRequestCurlImpl.php" hash="815a03cc4b5fc1222e0bc9b9f85f3428"/><file name="HttpRequestFactoryCurlImpl.php" hash="09140d0c9518e0e7c1bffb8bd0c98310"/></dir></dir><file name="Model.php" hash="778dfe809587f010352d9ccd2bed8106"/><file name="OffAmazonPaymentsServiceUtils.php" hash="827a9e9f2b04652736406b1cd9672a2c"/></dir><dir name="OffAmazonPaymentsNotifications"><file name="Client.php" hash="a8bfa462188eb5193985e984ff503b04"/><dir name="Impl"><file name="Certificate.php" hash="33aec53879fff368b0f6f52ce7f79f13"/><file name="IpnNotificationParser.php" hash="3f4e203c89d23c2971214a7e0713f6a9"/><file name="Message.php" hash="6cffc2f4b4c09a8411572cdb7ddcc83a"/><file name="OpenSslVerifySignature.php" hash="45449e157fa55ab5c2c16a9207616357"/><file name="SnsMessageParser.php" hash="c6d1b0bfa852441b4ddfdc25cf624c9d"/><file name="SnsMessageValidator.php" hash="7291f2b91f0dc9ace62752c37b69d15f"/><file name="VerifySignature.php" hash="b7c3089f35fba596e16f6f39f7029908"/><file name="XmlNotificationParser.php" hash="a6b6ff48de5cee20db383a2a6c953092"/></dir><file name="Interface.php" hash="3930f956058657059e2ea705fc43333d"/><file name="InvalidCertificateException.php" hash="4711c0ea7b574a8ab3fb04623b2f7453"/><file name="InvalidMessageException.php" hash="c9608c6ecfafeae2db9db9e8786f2a15"/><dir name="Model"><file name="AuthorizationDetails.php" hash="c5e85494dd4b21c49c1d786bf38879da"/><file name="AuthorizationNotification.php" hash="490fd1da11270f9af20a6ca0d87b8149"/><file name="BillingAgreement.php" hash="00f24d00547ddb3320a20f77132feb0e"/><file name="BillingAgreementLimits.php" hash="e972154534547bde777133c2de1e835f"/><file name="BillingAgreementNotification.php" hash="c5ee60508326e840ce02765b175897aa"/><file name="BillingAgreementStatus.php" hash="68da18941f6cc8b17a9157c83e550c0c"/><file name="CaptureDetails.php" hash="f8702f3d5d5afd595814182f847367c5"/><file name="CaptureNotification.php" hash="8d4da47b23888f3cfd94fe9d217c46da"/><file name="IdList.php" hash="4d77007c611ba2a990179ecf506d4ac7"/><file name="IpnNotificationMetadata.php" hash="802e724b1cc35eae31e4aa9288446b8f"/><file name="MerchantRegistrationDetails.php" hash="d4de7689d8e216567abd710dde7ef4ed"/><file name="NotificationImpl.php" hash="17205cb366af769c0563d80ee82de067"/><file name="NotificationMetadataImpl.php" hash="27bdabd2ae04ab753e60b0ab3042859c"/><file name="OrderItemCategories.php" hash="ac5edd66a87e28f1e0a4be758e3d7b8c"/><file name="OrderReference.php" hash="3ff8f8729cc3e398823061b73d8d2789"/><file name="OrderReferenceNotification.php" hash="4b6a0e68f77ff7b710fe00916d5b0546"/><file name="OrderReferenceStatus.php" hash="e09fc390fb5c21afd4764c41dd7418c0"/><file name="OrderTotal.php" hash="ce3157db8b593588c9405030968176a5"/><file name="Price.php" hash="cff064218bbb2d56f463ab489dc907cd"/><file name="ProviderCreditDetails.php" hash="d355185842eb0816de151fb535b14edc"/><file name="ProviderCreditNotification.php" hash="7ddc5d80dee797893171237ecabf10e2"/><file name="ProviderCreditReversalDetails.php" hash="a789bbf3c7074bc800053967e64286c7"/><file name="ProviderCreditReversalNotification.php" hash="56479587ee330013bdffe17719d0edec"/><file name="ProviderCreditReversalSummary.php" hash="577971d363b95fd7a73e8cd4995a240c"/><file name="ProviderCreditReversalSummaryList.php" hash="05ae0f9769e4c46e5c3ba3f9907ae576"/><file name="ProviderCreditSummary.php" hash="4403e12b73867b58021655df3fcf6720"/><file name="ProviderCreditSummaryList.php" hash="667167ed6a427d71086aa4ef8dabc5f5"/><file name="RefundDetails.php" hash="ae08c0447ec12996a465772d55f2c28f"/><file name="RefundNotification.php" hash="fb29285214205fd09c4f9ac7964c1a07"/><file name="SellerBillingAgreementAttributes.php" hash="691b120995ac30f3f542c3ec9cd6c0d6"/><file name="SellerOrderAttributes.php" hash="896cf700231529f39e903d4614579a85"/><file name="SnsNotificationMetadata.php" hash="df453726f714f7ea50cc04b6093123eb"/><file name="SolutionProviderMerchantNotification.php" hash="77e4152a922f1a26582e46546387943d"/><file name="SolutionProviderOption.php" hash="df8fbbb1ad2fef1796e3b42a9a417a64"/><file name="SolutionProviderOptions.php" hash="624d2f4efd3a32eab8baf8628efda4ef"/><file name="Status.php" hash="8726fde00e0f97595115866c1a8000dd"/></dir><file name="Notification.php" hash="562b2a4eb6e292b6df4db3112391ab55"/><file name="NotificationMetadata.php" hash="07f94bf3a41ed0c72f387e900260c48a"/></dir><dir name="OffAmazonPaymentsService"><file name="Client.php" hash="26dd6a2d2c407427c5ea0933e2159351"/><file name="Environments.php" hash="1a9ff744e131c19f5bd0d58c5aa578ab"/><file name="Exception.php" hash="eee23053020a397cf082a28f41001284"/><file name="Interface.php" hash="b681a546f2a5e3690e5e04f9c75ca8a5"/><file name="MerchantValues.php" hash="2cca67c2b1b0557e5a63d4ef35950172"/><file name="MerchantValuesBuilder.php" hash="a6328566f8f5ee48a8b054d8f02897e1"/><dir name="Model"><file name="Address.php" hash="6840237ae7035912f95020ff6d580033"/><file name="AuthorizationDetails.php" hash="159edfb213e12b7ecb847c103c70c5de"/><file name="AuthorizeOnBillingAgreementRequest.php" hash="8b0e8d6ffa94b1f18546b7554ec042ed"/><file name="AuthorizeOnBillingAgreementResponse.php" hash="8770715da01743adeafc25d54bb0c1d9"/><file name="AuthorizeOnBillingAgreementResult.php" hash="a73c77f8fce673257e2dca072ad6fab6"/><file name="AuthorizeRequest.php" hash="08bdab4fe2896f4a2b808c6e8abfeeba"/><file name="AuthorizeResponse.php" hash="0ae054040c36e7362683146b537f551b"/><file name="AuthorizeResult.php" hash="e7dfd388200467e736ff3b7d11c8d2bf"/><file name="BillingAddress.php" hash="93f82f074b62e8b1abf25ae8ae44b676"/><file name="BillingAgreementAttributes.php" hash="e52a2c92f92f7081ac742e24f70385df"/><file name="BillingAgreementDetails.php" hash="359f9bd686d21242f2e27feb8b3379b2"/><file name="BillingAgreementLimits.php" hash="66f84e67052b91092867496d11a28763"/><file name="BillingAgreementStatus.php" hash="adcf9379fb2f6fa88a1d8e230d8cf101"/><file name="Buyer.php" hash="cb691abf757d54025ac43964849dd5fd"/><file name="CancelOrderReferenceRequest.php" hash="ef06ecd8f05a4c032aa28f5b5a132d05"/><file name="CancelOrderReferenceResponse.php" hash="004c4e3a21ea1dc8e11bbba3d733b3ca"/><file name="CancelOrderReferenceResult.php" hash="74b7ad1facdf31263e9bb55544303180"/><file name="CaptureDetails.php" hash="4f360221d888d50d92e7f2ea20b5b54f"/><file name="CaptureRequest.php" hash="5b976a76214f870964d49cf104a50b30"/><file name="CaptureResponse.php" hash="7ece74f93f362d31bc16f9fb7bf2b270"/><file name="CaptureResult.php" hash="e0fccf0fe27efd36d822ddcdaefe97ac"/><file name="CloseAuthorizationRequest.php" hash="cb0e2113e9e36b7b133b539e5ff99c50"/><file name="CloseAuthorizationResponse.php" hash="99be7612c9effdac53fb0bc225a13eb1"/><file name="CloseAuthorizationResult.php" hash="6d77eea8924d2ef6a3acd0dabb3f9f76"/><file name="CloseBillingAgreementRequest.php" hash="89f82b30dd0902faa6feb3a57dfe24cb"/><file name="CloseBillingAgreementResponse.php" hash="1bda191dc9a8b2b1a14b6e11772f05cf"/><file name="CloseBillingAgreementResult.php" hash="f926f5d65d95323647129605a26037ae"/><file name="CloseOrderReferenceRequest.php" hash="b8b592bdc71a4046efead52196f8073c"/><file name="CloseOrderReferenceResponse.php" hash="137da00395052b25099de3a0d152887d"/><file name="CloseOrderReferenceResult.php" hash="81e21f75ae477f07a9b913e1ac2bd89d"/><file name="ConfirmBillingAgreementRequest.php" hash="ab524aa1cc6e51a8b483e4f96b7e1e02"/><file name="ConfirmBillingAgreementResponse.php" hash="0639de39ba58e6c2b806a84b43dc31d3"/><file name="ConfirmBillingAgreementResult.php" hash="42456915a3efa4ccd774a1d5d3a05307"/><file name="ConfirmOrderReferenceRequest.php" hash="632a4b8414aac550fc0ec59a83737be7"/><file name="ConfirmOrderReferenceResponse.php" hash="fb0c329ffa1a54e4c15c531b58561f6f"/><file name="Constraint.php" hash="e46dc3d18486b6639ea5b8f52a92cfdc"/><file name="Constraints.php" hash="cb983d71bda42bdda767ffc9f4feeafc"/><file name="CreateOrderReferenceForIdRequest.php" hash="b1f4e96f1392c427228f5799edc5dc64"/><file name="CreateOrderReferenceForIdResponse.php" hash="630cb4812997fa7c067f393dfb5e2f48"/><file name="CreateOrderReferenceForIdResult.php" hash="4abf7af5eb56058c17996406a877f427"/><file name="Destination.php" hash="737777909588915788398ab86f0de1de"/><file name="Error.php" hash="bb8b6bb6d3c778fc4e1d0a346b5fa03a"/><file name="ErrorResponse.php" hash="8804c6f39d9a0bdcbd76260eba9d261d"/><file name="GetAuthorizationDetailsRequest.php" hash="67d5a478c01fbbfba420dff3cf2098dc"/><file name="GetAuthorizationDetailsResponse.php" hash="0c9fe935bcb953cc9cd9e11bab32b5b2"/><file name="GetAuthorizationDetailsResult.php" hash="02ac4fa6533ccfd705c543160165c31d"/><file name="GetBillingAgreementDetailsRequest.php" hash="761cbdc44a4ac1e28b22d01f7a484b76"/><file name="GetBillingAgreementDetailsResponse.php" hash="061084469683253d1d76d5c881e5062d"/><file name="GetBillingAgreementDetailsResult.php" hash="5a585ad373b11b806ba320bcd988f71b"/><file name="GetCaptureDetailsRequest.php" hash="69252be80c32d911f2ff664904375e7d"/><file name="GetCaptureDetailsResponse.php" hash="5323ed86174064bb1122187457440861"/><file name="GetCaptureDetailsResult.php" hash="962ef27de2778c9ccde55d848b8fa649"/><file name="GetOrderReferenceDetailsRequest.php" hash="edfea06a629f298ab134229d35fef319"/><file name="GetOrderReferenceDetailsResponse.php" hash="4955733fe736a9f51e0bd6823b8bf74b"/><file name="GetOrderReferenceDetailsResult.php" hash="f9ee3738bddff51c6bd545028d275348"/><file name="GetProviderCreditDetailsRequest.php" hash="e51201c7d39935c4fa8da96e822b7075"/><file name="GetProviderCreditDetailsResponse.php" hash="e312b54192343e16230b7436b101766a"/><file name="GetProviderCreditDetailsResult.php" hash="9f0af601e8a716e4e5af3802d8952fe4"/><file name="GetProviderCreditReversalDetailsRequest.php" hash="cf74576ef8dc02e34244aca962d854b3"/><file name="GetProviderCreditReversalDetailsResponse.php" hash="a869c2695416514834c83890d3b080f9"/><file name="GetProviderCreditReversalDetailsResult.php" hash="33f1980d1632034eee8396c6286b5320"/><file name="GetRefundDetailsRequest.php" hash="7ab0f7d756a59a284ffd0ffc361fee42"/><file name="GetRefundDetailsResponse.php" hash="4847a7513f69d3f81c306d26ad7c5291"/><file name="GetRefundDetailsResult.php" hash="0c24e3c8e95f4ee10f5c4e9dd07518bf"/><file name="IdList.php" hash="25fd15394669b4721bdd0e4d367d534f"/><file name="OrderItemCategories.php" hash="995db32a92601555ee9a7550d1daae7e"/><file name="OrderReferenceAttributes.php" hash="78e1735d8fc99c5676d894564d6b88c7"/><file name="OrderReferenceDetails.php" hash="4e9365808e09fe1b1407348c9d05ca41"/><file name="OrderReferenceStatus.php" hash="5c21e44d991a24ab2527e491c435d54c"/><file name="OrderTotal.php" hash="2ff8e8ccc9c7266d72f534485ccd01bf"/><file name="ParentDetails.php" hash="99f7062b4764166637dfc44b4fe4788c"/><file name="Price.php" hash="4ac8de3791146a17a237a914c9f762a6"/><file name="ProviderCredit.php" hash="8f2f21ac5c0dba73e64a35cc7a61fbbe"/><file name="ProviderCreditDetails.php" hash="d9057efbe528a1571eda4252b8ad1813"/><file name="ProviderCreditList.php" hash="4a3eeae90b5a1ed09a528f5254b968a5"/><file name="ProviderCreditReversal.php" hash="07c1d7959a7cfb94164846c276b43ce7"/><file name="ProviderCreditReversalDetails.php" hash="ebfbf919b4a399213c7e312e59873e43"/><file name="ProviderCreditReversalList.php" hash="8eb64497a6a233535c8b0ca55591d06b"/><file name="ProviderCreditReversalSummary.php" hash="7646c582ea5fb3a46dcb09637f7daf01"/><file name="ProviderCreditReversalSummaryList.php" hash="cae281ddee9f766d1d5bf350e238037a"/><file name="ProviderCreditSummary.php" hash="69bc18eefe644e6b851a6daf7e6dfa8a"/><file name="ProviderCreditSummaryList.php" hash="751812d8903ba883036d1bc381c37667"/><file name="RefundDetails.php" hash="b53e480fe8e8e5d96a4b6a0df431e5ac"/><file name="RefundRequest.php" hash="665585551aba39532fe3352abb4859b3"/><file name="RefundResponse.php" hash="fadbc4ad5313395a48e38b1c0502c85a"/><file name="RefundResult.php" hash="9ddad34dd53edfd156651b021bc5137a"/><file name="ResponseHeaderMetadata.php" hash="382fe7bd666eea293b729c5d6c79348f"/><file name="ResponseMetadata.php" hash="073748a20ecd8bddc240dd4c0a4a56b9"/><file name="ReverseProviderCreditRequest.php" hash="802a3709149add8fa192ce389b93c2ea"/><file name="ReverseProviderCreditResponse.php" hash="ff702a7def546f0c6216094f93095bd7"/><file name="ReverseProviderCreditResult.php" hash="84f3e78e1b8b1b47e6f8b92abee7704b"/><file name="SellerBillingAgreementAttributes.php" hash="308899b9e48a95f0b5d48d74a510c915"/><file name="SellerOrderAttributes.php" hash="35b62fe0e130207dfaa2caefa1dfe7ba"/><file name="SetBillingAgreementDetailsRequest.php" hash="347a6c85c5cc8394255efcb9c4b57d52"/><file name="SetBillingAgreementDetailsResponse.php" hash="92299b3338dc7435149f17d8126f7518"/><file name="SetBillingAgreementDetailsResult.php" hash="7cb3e84e58fe2bbf163f8ac34de5eccf"/><file name="SetOrderReferenceDetailsRequest.php" hash="4cf2605f5188116a1526d463638aa768"/><file name="SetOrderReferenceDetailsResponse.php" hash="41720bdf965dcd759cc3278e01610530"/><file name="SetOrderReferenceDetailsResult.php" hash="4281a97da7865e47157c1d22c2094bfd"/><file name="Status.php" hash="28bd007e6c9747417a063e9941cc0dba"/><file name="ValidateBillingAgreementRequest.php" hash="d77beda441fd1688903e96a02fa4e643"/><file name="ValidateBillingAgreementResponse.php" hash="89658fd2a78d7dbb2997dae6ba169f7e"/><file name="ValidateBillingAgreementResult.php" hash="b9244d0496b0bbcfbf7628c775c17ca3"/></dir><file name="Model.php" hash="fafcb3a4318eb7bd9be5b69225187352"/><file name="RegionSpecificProperties.php" hash="f4e77cc63766b42fbef6ef1e07ec4402"/><file name="Regions.php" hash="4676d77db7dde345118e2a6fc021ce3f"/></dir></target></contents>
|
26 |
<compatible/>
|
27 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
28 |
</package>
|