MultiSafepay_Msp - Version 2.0.2

Version Notes

Tested by MultiSafepay

Download this release

Release Info

Developer MultiSafepay
Extension MultiSafepay_Msp
Version 2.0.2
Comparing to
See all releases


Code changes from version 2.0.1 to 2.0.2

app/code/community/MultiSafepay/Msp/Model/Base.php CHANGED
@@ -180,6 +180,57 @@ class MultiSafepay_Msp_Model_Base extends Varien_Object
180
  $transdetails[$key] = $value;
181
  }
182
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  $complete = false;
184
  $cancel = false;
185
  $newState = null;
@@ -331,6 +382,7 @@ class MultiSafepay_Msp_Model_Base extends Varien_Object
331
  }else{
332
  $is_already_invoiced = false;
333
  }*/
 
334
  if (!$this->isStatusInHistory($order, $mspStatus))
335
  {
336
  if($order->hasInvoices())
@@ -345,7 +397,7 @@ class MultiSafepay_Msp_Model_Base extends Varien_Object
345
  $payment->setTransactionId($mspDetails['ewallet']['id']);
346
  $transaction = $payment->addTransaction('capture', null, false, $statusMessage);
347
  $transaction->setParentTxnId($mspDetails['ewallet']['id']);
348
- $transaction->setIsClosed(0);
349
  $transaction->setAdditionalInformation(Mage_Sales_Model_Order_Payment_Transaction::RAW_DETAILS, $transdetails);
350
  $transaction->save();
351
 
@@ -353,16 +405,20 @@ class MultiSafepay_Msp_Model_Base extends Varien_Object
353
  $is_already_invoiced = true;
354
  }elseif($complete && $order->getState() == Mage_Sales_Model_Order::STATE_NEW)
355
  {
 
356
  $payment = $order->getPayment();
357
  $payment->setTransactionId($mspDetails['ewallet']['id']);
358
  $transaction = $payment->addTransaction('capture', null, false, $statusMessage);
359
  $transaction->setParentTxnId($mspDetails['ewallet']['id']);
360
- $transaction->setIsClosed(0);
361
  $transaction->setAdditionalInformation(Mage_Sales_Model_Order_Payment_Transaction::RAW_DETAILS, $transdetails);
362
  $transaction->save();
 
 
363
  $order->setTotalPaid($order->getGrandTotal());
364
  }
365
  }
 
366
 
367
 
368
  if ($order->getState() == Mage_Sales_Model_Order::STATE_NEW || $order->getState() != 'complete' )
@@ -373,14 +429,13 @@ class MultiSafepay_Msp_Model_Base extends Varien_Object
373
  $canUpdate = false;
374
  }
375
 
376
-
377
  // update the status if changed
378
  if ($canUpdate && (($newState != $order->getState()) || ($newStatus != $order->getStatus())))
379
  {
380
- if (!$this->isStatusInHistory($order, $mspStatus))
381
- {
382
  $order->setState($newState, $newStatus, $statusMessage);
383
- }
384
 
385
  // create an invoice when the payment is completed
386
  //if ($complete)
@@ -470,6 +525,8 @@ class MultiSafepay_Msp_Model_Base extends Varien_Object
470
  return false;
471
  }
472
 
 
 
473
 
474
  /**
475
  * Get the current Magento version (as integer, 1.4.x.x => 14)
180
  $transdetails[$key] = $value;
181
  }
182
 
183
+
184
+ /*
185
+ * We need to update the shippingmethods for FCO transactions because these can still change after the order is created
186
+ */
187
+ $details = $mspDetails;
188
+ $quoteid= $order->getQuoteId();
189
+ $quote= Mage::getModel('sales/quote')->load($quoteid);
190
+
191
+
192
+ if(!empty($details['shipping']['type']))
193
+ {
194
+ $qAddress = $order->getShippingAddress();
195
+ $qAddress->setTaxAmount($details['total-tax']['total']);
196
+ $qAddress->setBaseTaxAmount($details['total-tax']['total']);
197
+
198
+ if ($details['shipping']['type'] == 'flat-rate-shipping') {
199
+ $method = 'mspcheckout_flatrate';
200
+ } elseif($details['shipping']['type'] == 'pickup') {
201
+ $method = 'mspcheckout_pickup';
202
+ }
203
+
204
+ if (!empty($method)) {
205
+ //Mage::getSingleton('tax/config')->setShippingPriceIncludeTax(false);
206
+
207
+ $excludingTax = $details['shipping']['cost'];
208
+
209
+ $order->setShippingMethod($method)
210
+ ->setShippingDescription($details['shipping']['name'])
211
+ ->setShippingAmount($excludingTax, true)
212
+ ->setBaseShippingAmount($excludingTax, true);
213
+
214
+ $includingTax = Mage::helper('tax')->getShippingPrice($excludingTax, true, $qAddress, $quote->getCustomerTaxClassId());
215
+ $shippingTax = $includingTax - $excludingTax;
216
+ $order->setShippingTaxAmount($shippingTax)
217
+ ->setBaseShippingTaxAmount($shippingTax)
218
+ ->setShippingInclTax($includingTax)
219
+ ->setBaseShippingInclTax($includingTax);
220
+ } else {
221
+ $order->setShippingMethod(null);
222
+ }
223
+
224
+ $order->setGrandTotal($details['order-total']['total']);
225
+ $order->setBaseGrandTotal($details['order-total']['total']);
226
+ $order->setTotalPaid($details['order-total']['total']);
227
+ $order->save();
228
+ }
229
+
230
+
231
+
232
+
233
+
234
  $complete = false;
235
  $cancel = false;
236
  $newState = null;
382
  }else{
383
  $is_already_invoiced = false;
384
  }*/
385
+
386
  if (!$this->isStatusInHistory($order, $mspStatus))
387
  {
388
  if($order->hasInvoices())
397
  $payment->setTransactionId($mspDetails['ewallet']['id']);
398
  $transaction = $payment->addTransaction('capture', null, false, $statusMessage);
399
  $transaction->setParentTxnId($mspDetails['ewallet']['id']);
400
+ $transaction->setIsClosed(1);
401
  $transaction->setAdditionalInformation(Mage_Sales_Model_Order_Payment_Transaction::RAW_DETAILS, $transdetails);
402
  $transaction->save();
403
 
405
  $is_already_invoiced = true;
406
  }elseif($complete && $order->getState() == Mage_Sales_Model_Order::STATE_NEW)
407
  {
408
+
409
  $payment = $order->getPayment();
410
  $payment->setTransactionId($mspDetails['ewallet']['id']);
411
  $transaction = $payment->addTransaction('capture', null, false, $statusMessage);
412
  $transaction->setParentTxnId($mspDetails['ewallet']['id']);
413
+ $transaction->setIsClosed(1);
414
  $transaction->setAdditionalInformation(Mage_Sales_Model_Order_Payment_Transaction::RAW_DETAILS, $transdetails);
415
  $transaction->save();
416
+ $payment->setAmount($order->getGrandTotal());
417
+
418
  $order->setTotalPaid($order->getGrandTotal());
419
  }
420
  }
421
+
422
 
423
 
424
  if ($order->getState() == Mage_Sales_Model_Order::STATE_NEW || $order->getState() != 'complete' )
429
  $canUpdate = false;
430
  }
431
 
 
432
  // update the status if changed
433
  if ($canUpdate && (($newState != $order->getState()) || ($newStatus != $order->getStatus())))
434
  {
435
+ //if (!$this->isStatusInHistory($order, $mspStatus))
436
+ //{
437
  $order->setState($newState, $newStatus, $statusMessage);
438
+ //}
439
 
440
  // create an invoice when the payment is completed
441
  //if ($complete)
525
  return false;
526
  }
527
 
528
+
529
+
530
 
531
  /**
532
  * Get the current Magento version (as integer, 1.4.x.x => 14)
app/code/community/MultiSafepay/Msp/Model/Payment.php CHANGED
@@ -763,7 +763,13 @@ class MultiSafepay_Msp_Model_Payment extends Varien_Object
763
  }*/
764
 
765
  $gateway_data = $quote->getPayment()->getData();
766
- $gateway = strtoupper(str_replace("msp_", '', $gateway_data['method']));
 
 
 
 
 
 
767
 
768
 
769
  // currency check
763
  }*/
764
 
765
  $gateway_data = $quote->getPayment()->getData();
766
+
767
+ if ($gateway_data['method'] === 'msp_directebanking' ) {
768
+ $gateway = 'DIRECTBANK';
769
+ }else{
770
+ $gateway = strtoupper(str_replace("msp_", '', $gateway_data['method']));
771
+ }
772
+ // $gateway = strtoupper(str_replace("msp_", '', $gateway_data['method']));
773
 
774
 
775
  // currency check
app/code/community/MultiSafepay/Msp/Model/Servicecost/Invoice/Totals.php CHANGED
@@ -15,7 +15,9 @@ class MultiSafepay_Msp_Model_Servicecost_Invoice_Totals extends Mage_Sales_Model
15
  $invoice->setBaseSubtotalInclTax($invoice->getBaseSubtotalInclTax() - $invoice->getServicecostTax());
16
  $invoice->setServicecostPdf($order->getServicecostPdf());
17
 
18
-
 
 
19
  return $this;
20
  }
21
  }
15
  $invoice->setBaseSubtotalInclTax($invoice->getBaseSubtotalInclTax() - $invoice->getServicecostTax());
16
  $invoice->setServicecostPdf($order->getServicecostPdf());
17
 
18
+
19
+ //Magento will get the totalpaid amount and add the invoiced amount and set the totalpaid to the new value. This results in a double totalPaid value within //the order view. This happens only when auto creation of the invoice is disabled. To fix this we will set the Total Paid to 0 before the invoice is created //and the totalpaid is update again with the total invoiced.
20
+ $order->setTotalPaid(0);
21
  return $this;
22
  }
23
  }
app/code/community/MultiSafepay/Msp/etc/config.xml CHANGED
@@ -10,7 +10,7 @@
10
  <config>
11
  <modules>
12
  <MultiSafepay_Msp>
13
- <version>2.0.1</version>
14
  </MultiSafepay_Msp>
15
  </modules>
16
  <global>
10
  <config>
11
  <modules>
12
  <MultiSafepay_Msp>
13
+ <version>2.0.2</version>
14
  </MultiSafepay_Msp>
15
  </modules>
16
  <global>
app/code/community/MultiSafepay/Msp/etc/system.xml CHANGED
@@ -13,7 +13,7 @@
13
  <payment>
14
  <groups>
15
  <msp translate="label" module="msp">
16
- <label>MultiSafepay - 2.0.1</label>
17
  <sort_order>671</sort_order>
18
  <show_in_default>1</show_in_default>
19
  <show_in_website>1</show_in_website>
@@ -331,7 +331,7 @@
331
  <!-- end: Main Settings (Payment Methods tab) -->
332
  <!-- begin: MSP Gateways -->
333
  <msp translate="label" module="msp">
334
- <label>MultiSafepay - Gateways - 2.0.1</label>
335
  <tab>sales</tab>
336
  <frontend_type>text</frontend_type>
337
  <sort_order>1000</sort_order>
@@ -3674,7 +3674,7 @@
3674
  <!-- end: MSP Gateways -->
3675
  <!-- begin: MSP Fast Checkout -->
3676
  <mspcheckout translate="label" module="msp">
3677
- <label>MultiSafepay - Fast Checkout - 2.0.1</label>
3678
  <tab>sales</tab>
3679
  <frontend_type>text</frontend_type>
3680
  <sort_order>1001</sort_order>
13
  <payment>
14
  <groups>
15
  <msp translate="label" module="msp">
16
+ <label>MultiSafepay - 2.0.2</label>
17
  <sort_order>671</sort_order>
18
  <show_in_default>1</show_in_default>
19
  <show_in_website>1</show_in_website>
331
  <!-- end: Main Settings (Payment Methods tab) -->
332
  <!-- begin: MSP Gateways -->
333
  <msp translate="label" module="msp">
334
+ <label>MultiSafepay - Gateways - 2.0.2</label>
335
  <tab>sales</tab>
336
  <frontend_type>text</frontend_type>
337
  <sort_order>1000</sort_order>
3674
  <!-- end: MSP Gateways -->
3675
  <!-- begin: MSP Fast Checkout -->
3676
  <mspcheckout translate="label" module="msp">
3677
+ <label>MultiSafepay - Fast Checkout - 2.0.2</label>
3678
  <tab>sales</tab>
3679
  <frontend_type>text</frontend_type>
3680
  <sort_order>1001</sort_order>
app/design/frontend/base/default/template/msp/paymentFee/checkout/fee.phtml DELETED
@@ -1,27 +0,0 @@
1
- <?php
2
- /**
3
- *
4
- * @category MultiSafepay
5
- * @package MultiSafepay_Msp
6
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
7
- */
8
- ?>
9
- <?php /** @var $this MultiSafepay_Msp_Block_PaymentFee_Checkout_Fee */ ?>
10
- <?php if ($this->getPaymentFee()): ?>
11
- <tr>
12
- <td style="<?php echo $this->getStyle() ?>" class="a-right" colspan="<?php echo $this->getColspan(); ?>">
13
- <?php echo $this->getTotal()->getTitle() ?>
14
- </td>
15
- <td style="<?php echo $this->getStyle() ?>" class="a-right">
16
- <?php
17
- if(Mage::helper("msp")->getPadIncExcTax())
18
- {
19
- //echo Mage::helper("msp")->getCheckoutFee();
20
- echo $this->helper('checkout')->formatPrice(Mage::helper("msp")->getCheckoutFee());
21
- }else{
22
- echo $this->helper('checkout')->formatPrice($this->getPaymentFee());
23
- }
24
- ?>
25
- </td>
26
- </tr>
27
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/locale/de_DE/MultiSafepay_Msp.csv ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Dutch","Holl�ndisch";
2
+ "English","Englisch";
3
+ "German","Deutsch";
4
+ "French","Franz�sisch";
5
+ "Spanish","Spanisch";
6
+ "Interface language","Interface Sprache";
7
+ "New order status","Neue Bestellung";
8
+ "Payment complete status","Zahlung erfolgt";
9
+ "Create invoice after payment","Nach Bezahlung Rechnung erstellen";
10
+ "Mail invoice to customer","Rechnung an Kunde versenden";
11
+ "Gateway selection","Zahlungsportal ausw�hlen";
12
+ "Auto redirect","Automatische Weiterleitung";
13
+ "Bank selection","Bank ausw�hlen";
14
+ "Direct Debit","Direktabbuchung";
15
+ "Bank Transfer","Bank�berweisung";
16
+ "Banktransfer","Bank�berweisung";
17
+ "Sign up for a free test account","Anmelden zum Testkonto";
18
+ "<a href=\'http://www.multisafepay.com/nl/klantenservice-zakelijk/open-een-testaccount.html\' target=\'_blank\'>Sign up for a free test account</a>","<a href=\'http://www.multisafepay.com/nl/klantenservice-zakelijk/open-een-testaccount.html\' target=\'_blank\'>Gratis Testkonto erstellen</a>";
19
+ "Automatically redirects the customer back to the webshop after payment. (Skips the 'Transaction Complete' screen)","Kunde wird nach der Bezahlung automatisch an dem Webshop zur�ckgeleitet (`Transaktion vollendet` wird ausgelassen)";
20
+ "- Or use -","-oder benutzen-";
21
+ "New order mail","Neue Bestellung Email";
22
+ "After notification","Nach Benachrichtigung";
23
+ "After payment complete","Nach Bezahlung";
24
+ "Force accept agreements","Allgemeine Gesch�ftsbedingungen";
25
+ "If enabled the customer must accept the terms and conditions in the fast checkout process","Wenn eingeschaltet", Kunde muss Allgemeine Gesch�ftsbedingungen akzeptieren";
26
+ "Alternate Agreements URL","Alternative Bedingungen URL";
27
+ "Leave this empty for the standard URL for the agreements","Frei lassen um URL einzuf�gen von Allgemeine Gesch�ftsbedingungen";
28
+ "Add company name field","Firmenname Feld zuf�gen";
29
+ "Company name cannot be empty","Firmenname Feld muss ausgef�llt werden";
30
+ "This will enable the Table Rates method configured at Shipping Methods -> Table Rates","Einblenden von Tabellenkurse die bei den Versandmethoden eingestellten wurden";
31
+ "Allowed Currency","Erlaubte W�hrung";
32
+ "Allow currency conversion to Euro","W�hrungwechsel zu Euro erlauben";
33
+ "If store currency is not allowed by settings. Used for each gateway.","Wenn W�hrung von dem Webshop ist nicht erlaubt f�r die ausgew�hlte Zahlungsmethode", dann wird es in Euro umgerechnet";
34
+ "New order mail","Neue Email Bestellung";
35
+ "E-mail invoice to customer","Rechnung an Kunde versenden";
36
+ "Send the order update e-mail to customer","Bestellungsupdate an Kunde versenden";
37
+ "Keep the cart","Einkaufswagen behalten";
38
+ "Cart remains active when the customer returns to the webshop or cancels an order.","Einkaufswagen bleibt erhalten auch wenn der Kunde an dem Webshop zur�ckkehrt oder eine Bestellung annulliert";
39
+ "Are you using the One Step Checkout Module?","One Step Checkout Module benutzen?";
40
+ "<![CDATA[<a href='https://www.multisafepay.com/en/Open-a-test-account.html' target='_blank'>Sign up for a free test account</a>]]>"," "<![CDATA[<a href='https://www.multisafepay.com/en/Open-a-test-account.html' target='_blank'>Testkonto eroeffnen</a>]]>";
41
+ "Automatically redirects a customer back to the webshop after a succesful payment. (Skips MultiSafepay's 'Transaction Complete' screen)","Automatische R�ckleitung von Kunden an Webshop nach Bezahlung";
42
+ "Receive payments from applicable countries","Welche L�nder kann ich Zahlungen erhalten?";
43
+ "Sort order","Bestellung einordnen";
44
+ "New order e-mail","Neue Bestellung Email";
45
+ "Receive payments from specific countries","Zahlungen erhalten von ausgew�hlten L�ndern";
46
+ "After order confirmation","Best�tigung der Bestellung";
47
+ "After notification", including cancelled order","Nach Status update"","Stornierte Transaktionen inkl.";
48
+ "After notification", excluding cancelled order","Nach Status update"","Ohne stornierte Transaktionen";
49
+ "If store currency is not allowed by settings. Used for each gateways.","Wenn W�hrung von dem Webshop ist nicht erlaubt f�r die ausgew�hlte Zahlungsmethode", dann wird es in Euro umgerechnet";
50
+ "Cart remains active when the customer returns to the webshop or cancels an order.","Einkaufswagen bleibt erhalten auch wenn der Kunde an dem Webshop zur�ckkehrt oder eine Bestellung annulliert";
51
+ "Show the gateway image if it exists","Logo des Zahlungsportals anzeigen wenn vorhanden";
52
+ "Show the gateway image if it exists in front of the title","Logo des Zahlungsportals f�r den Titel anzeigen";
53
+ "Show iDEAL banklist in checkout","Liste von iDEAL Banken im Checkout anzeigen";
54
+ "Account ID (for Test Accounts)","Konto ID (f�r Testkonten)";
55
+ "Site ID (for Test Accounts)","Site ID (f�r Testkonten)";
56
+ "Site Code (for Test Accounts)","Site Kode (f�r Testkonten)";
57
+ "Days active before requests expires?","Tage bevor Anfrage abl�uft?";
58
+ "Enable the invoice e-mail for this payment method?","Rechnung per Email versenden freischalten f�r diese Zahlungsmethode?";
59
+ "Payment fee description", visible in order totals","Angaben der Geb�hren von den Zahlungsmethoden""," zichtbaar bij de order totalen.";
60
+ "Enable IP validation","IP G�ltigkeitskontrolle aktivieren?";
61
+ "Only visible for the following IP address","Zahlungsmethoden sind sichtbar nur f�r diese IP Adresse";
62
+ "You can add multiple addresses seperated by ; ","Mehrere Zahlungsmethoden angeben", eine Zahlungsmethode ausw�hlen";
63
+ "Only visible for the following IP address (for Test Account)","Sichtbar nur f�r die folgende IP Adressen (f�r Testkonten)";
64
+ "Enable Test Account for these IP(s) when enabled Live Account","Testeinstellungen f�r diese IP Adressen aktivieren wenn das Live-Konto aktiv ist";
65
+ "You can add multiple addresses separated by ; . Feature enabled only when \'Type account\' set \'Live account\'","Sie k�nnen erschiedene IP Adressen zuf�gen", eine Adresse ausw�hlen";
66
+ "Send request after complete order","Anfrage versenden nach Bestellung";
67
+ "Request will be send after update statuse to Complete for PAD only","Anfrage wird versendet nachdem Bestellungstatus 'Vollendet' anzeigt"","Nur bei Bezahlungen per Nachnahme";
68
+ "Use for refund?"," "Refunds toestaan bij het aanmaken van een creditmemo?";
69
+ "Enable direct banktransfer (no MultiSafepay page)"", Activeer de directe bankoverschrijving"," de consument zien geen MultiSafepay pagina";
70
+ "Send new account email","Neue Emailkonto versenden";
71
+ "Send the new account email when a customer account is created after using Fast Checkout","Email versenden wenn ein Konto im Magento durch Fast Checkout erstellt wurde";
72
+ "Automatic login","Kunde automatisch einloggen?";
73
+ "Login the customer after returning from Fast Checkout ","Kunde einloggen nach dem R�ckkehr via Fast Checkout?";
74
+ "Let the customer redirect to their account page","Kunde an Kontoseite zur�ckleiten nach der Transaktion";
75
+ "Company name","Fimenname";
76
+ "Birthday","Geburtstdatum";
77
+ "Chamber of Commerce (CoC/KvK)","Handelskammmer";
78
+ "VAT number","UID Nummer";
79
+ "Passport number","Nummer des Reisepasses";
80
+ "Drivers license","Nummer des F�hrerscheines";
81
+ "Sex","Geschlecht";
82
+ "Cart remains active when the customer returns to the webshop or cancels an order","Einkaufswagen bleibt erhalten auch wenn der Kunde an dem Webshop zur�ckkehrt oder eine Bestellung annulliert";
83
+ "Fee in EURO. Example 2.95 (2.95 is the maximum)","Geb�hren in Euro. Beispiel 2.95 (Max. 2.95)";
84
+ "Enable fee (inc. Tax)","Geb�hren zugeben (inkl. MwSt.)";
85
+ "Payment fee amount","Summe der Geb�hren";
86
+ "Show payment fee incl. tax during checkout","Summe der Geb�hren zeigen inkl. MwSt.";
87
+ "Tax class for payment fee","MwSt. Klasse f�r Bezahlung";
88
+ "Select which tax class should be used for the payment fee","Richtige MwSt. Klasse f�r die Bezahlung ausw�hlen";
89
+ "Title", "Titel"
90
+ "Enabled", "Aktiviert"
91
+ "Instructions", "Anleitung"
92
+ "Maximum Order Total", "Maximalbestellung"
93
+ "Payment fee description, visible in order totals", "Angaben zu Zahlungsgeb�hren, siehe auch in Gesamtbestellung"
94
+ "Sort order", "Bestellungsortierung �ndern"
95
+ "API Key", "API Schl�ssel"
96
+ "One Step Checkout", "One Step Checkout"
97
+ "Account type", "Kontotyp"
98
+ "Minimum Order Total", "Minimalbestellung"
99
+ "Send shipped status after complete order", "Versendet Status aktivieren nach vollendeter Bestellung"
100
+ "Enable", "Aktivieren"
101
+ "Account", "Konto"
102
+ "Newsletter", "Newsletter"
103
+ "Comment", "Kommentar"
104
+ "Type account", "Kontotyp"
105
+
app/locale/en_EN/MultiSafepay_Msp.csv ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Dutch","Nederlands"
2
+ "English","Engels"
3
+ "German","Duits"
4
+ "French","Frans"
5
+ "Spanish","Spaans"
6
+ "Interface language","Taal betaalomgeving"
7
+ "New order status","Status nieuwe bestelling"
8
+ "Payment complete status","Status betaalde bestelling"
9
+ "Create invoice after payment","Maak factuur aan na betaling"
10
+ "Mail invoice to customer", "Mail factuur naar consument"
11
+ "Gateway selection","Gateway selectie"
12
+ "Auto redirect","Automatische redirect"
13
+ "Bank selection","Bank selectie"
14
+ "Direct Debit","Automatische incasso"
15
+ "Bank Transfer","Overboeking"
16
+ "Banktransfer","Overboeking"
17
+ "Sign up for a free test account", "Maak gratis een testaccount aan"
18
+ "<a href=\'http://www.multisafepay.com/nl/klantenservice-zakelijk/open-een-testaccount.html\' target=\'_blank\'>Sign up for a free test account</a>","<a href=\'http://www.multisafepay.com/nl/klantenservice-zakelijk/open-een-testaccount.html\' target=\'_blank\'>Maak gratis een testaccount aan</a>"
19
+ "Automatically redirects the customer back to the webshop after payment. (Skips the 'Transaction Complete' screen)","Stuurt de consument na betaling automatisch terug naar de webshop. (Slaat het 'Transaction Complete' scherm over)"
20
+ "- Or use -","- Of kies voor -"
21
+ "New order mail","Nieuw order mail"
22
+ "After notification","Na notificatie"
23
+ "After payment complete","Na betaling"
24
+ "Force accept agreements","Algemene voorwaarden"
25
+ "If enabled the customer must accept the terms and conditions in the fast checkout process","Wanneer ingeschakeld dient de consument akkoord te gaan met de algemene voorwaarden"
26
+ "Alternate Agreements URL","Alternatieve URL voorwaarden"
27
+ "Leave this empty for the standard URL for the agreements","Leeg laten voor de default URL"
28
+ "Add company name field","Voeg bedrijfsnaam veld toe"
29
+ "Company name cannot be empty","Maak bedrijfsnaam veld verplicht"
30
+ "This will enable the Table Rates method configured at Shipping Methods -> Table Rates","Dit schakeld de Table Rates verzendmethode in zoals ingesteld bij Verzendmethoden -> Table rates"
31
+ "Allowed Currency", "Toegestane valuta"
32
+ "Allow currency conversion to Euro", "Sta valuta converie naar Euro toe"
33
+ "If store currency is not allowed by settings. Used for each gateway.", "Wanneer de winkel valuta niet is toegestaan voor de gekozen betaalmethoden dan vindt er een conversie plaats naar Euro"
34
+ "New order mail", "Nieuwe order email"
35
+ "E-mail invoice to customer", "Email de factuur naar de consument"
36
+ "Send the order update e-mail to customer", "Verstuur een order update email naar de consument"
37
+ "Keep the cart", "Bewaar de winkelwagen"
38
+ "Cart remains active when the customer returns to the webshop or cancels an order.", "De winkelwagen is actief na het annuleren van een transactie"
39
+ "Are you using the One Step Checkout Module?", "Gebruikt u de one step checkout module van onestepcheckout.com?"
40
+ "<![CDATA[<a href='https://www.multisafepay.com/en/Open-a-test-account.html' target='_blank'>Sign up for a free test account</a>]]>", "<![CDATA[<a href='https://www.multisafepay.com/en/Open-a-test-account.html' target='_blank'>Een test account aanmaken</a>]]>"
41
+ "Automatically redirects a customer back to the webshop after a succesful payment. (Skips MultiSafepay's 'Transaction Complete' screen)", "Redirect de consument terug naar de website na een geslaagde transactie?"
42
+ "Receive payments from applicable countries", "Voor welke landen staan we betalingen toe?"
43
+ "Sort order", "Volgorde"
44
+ "New order e-mail", "Nieuwe order e-mail"
45
+ "Receive payments from specific countries", "Specificeer de landen die de betaalmethode kunnen gebruiken"
46
+ "After order confirmation", "Na het plaatsen van de order"
47
+ "After notification, including cancelled order", "Na een status update, inclusief een geannuleerde transactie"
48
+ "After notification, excluding cancelled order", "Na een status update, exclusief een geannuleerde transactie"
49
+ "If store currency is not allowed by settings. Used for each gateways.", "Wanneer de winkel valuta niet is toegestaan voor de gekozen betaalmethoden dan vindt er een conversie plaats naar Euro"
50
+ "Cart remains active when the customer returns to the webshop or cancels an order.", "De winkelwagen blijft actief wanneer de consument de transactie afbreekt en terugkeert naar de webshop"
51
+ "Show the gateway image if it exists", "Toon het logo van de betaalmethode wanneer deze bestaat"
52
+ "Show the gateway image if it exists in front of the title", "Toon het logo van de betaalmethode voor de title"
53
+ "Show iDEAL banklist in checkout", "Toon de keuze van de bank binnen de website"
54
+ "Account ID (for Test Accounts)", "Account ID voor de test omgeving"
55
+ "Site ID (for Test Accounts)", "Site ID voor de test omgeving"
56
+ "Site Code (for Test Accounts)", "Site Secure Code voor de test omgeving"
57
+ "Days active before requests expires?", "Dagen voordat een transactie verloopt?"
58
+ "Enable the invoice e-mail for this payment method?", "Mag deze betaalmethoden een factuur e-mail versturen?"
59
+ "Payment fee description, visible in order totals", "Omschrijfing van de betaalmethode toeslag, zichtbaar bij de order totalen."
60
+ "Enable IP validation", "IP validatie activeren?"
61
+ "Only visible for the following IP address", "De betaalmethoden is alleen zichtbaar voor deze IP adressen"
62
+ "You can add multiple addresses seperated by ;", "U kunt meerdere IP adressen toevoegen, gescheiden door een ;"
63
+ "Only visible for the following IP address (for Test Account)", "Alleen zichtbaar voor de volgende IP adressen (voor de test omgeving)"
64
+ "Enable Test Account for these IP(s) when enabled Live Account", "Activeer de test instellingen voor deze IP adressen wanneer het live account actief is"
65
+ "You can add multiple addresses separated by ;. Feature enabled only when \'Type account\' set \'Live account\'", "U kunt meerdere ip adressen toevoegen, gescheiden door een ;."
66
+ "Send request after complete order", "Verstuur vezoek na een complete order"
67
+ "Request will be send after update statuse to Complete for PAD only", "Verzoek zal verstuurd worden nadat de status is aangepast naar Complete, alleen voor Betaal na Ontvangst"
68
+ "Use for refund?", "Refunds toestaan bij het aanmaken van een creditmemo?"
69
+ "Enable direct banktransfer (no MultiSafepay page)"", "Activeer de directe bankoverschrijving, de consument zien geen MultiSafepay pagina"
70
+ "Send new account email", "Verstuur nieuw account e-mail"
71
+ "Send the new account email when a customer account is created after using Fast Checkout", "Verstuur een nieuw account email wanneer een account binnen Magento is aangemaakt door Fast Checkout"
72
+ "Automatic login", "Klant automatisch inloggen?"
73
+ "Login the customer after returning from Fast Checkout ", "Log de consument in na het terugkeren via Fast Checkout?"
74
+ "Let the customer redirect to their account page", "Redirect de consument naar zijn account pagina na een transactie?"
75
+ "Company name", "Bedrijfsnaam"
76
+ "Birthday", "Geboortedatum"
77
+ "Chamber of Commerce (CoC/KvK)", "Kamer van Koophandel"
78
+ "VAT number", "B.T.W. nummer"
79
+ "Passport number", "Paspoort nummer"
80
+ "Drivers license", "Rijbewijs nummer"
81
+ "Sex", "Geslacht"
82
+ "Cart remains active when the customer returns to the webshop or cancels an order", "De winkelwagen is actief na het annuleren van een transactie"
83
+ "Fee in EURO. Example 2.95 (2.95 is the maximum)", "Toeslag in Euro. Bijvoorbeeld 2.95 (2.95 is het maximaal toegestane)"
84
+ "Enable fee (inc. Tax)", "Toeslag activeren (Inclusief B.T.W.)"
85
+ "Payment fee amount", "Toeslag bedrag"
86
+ "Show payment fee incl. tax during checkout", "Toon de toeslag inclusief B.T.W tijdens de checkout"
87
+ "Tax class for payment fee", "B.T.W class voor de toeslag"
88
+ "Select which tax class should be used for the payment fee", "Selecteer de juiste B.T.W. klasse die gebruikt zal worden bij de toeslag"
89
+ "Title", "Titel"
90
+ "Enabled", "Activeren"
91
+ "Instructions", "Instructies"
92
+ "Maximum Order Total", "Maximum Order Totaal"
93
+ "Payment fee description, visible in order totals", "Toeslag, zichtbaar in de order totalen"
94
+ "Sort order", "Volgorde"
95
+ "API Key", "API Sleutel"
96
+ "One Step Checkout", "One step checkout"
97
+ "Account type", "Account type"
98
+ "Minimum Order Total", "Minimum order totaal"
99
+ "Send shipped status after complete order", "Zet de transactie status op verzonden zodra de order compleet is"
100
+ "Enable", "Activeren"
101
+ "Account", "Account"
102
+ "Newsletter", "Nieuwsbrief"
103
+ "Comment", "Commentaar"
104
+ "Type account", "Type account"
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+
115
+
app/locale/es_ES/MultiSafepay_Msp.csv ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Dutch","Holandeses";
2
+ "English","Ingl�s";
3
+ "German","Alem�n";
4
+ "French","Frances";
5
+ "Spanish", "Espa�ol";
6
+ "Interface language","Idioma de la pasarela de pago";
7
+ "New order status","Estado de pedido";
8
+ "Payment complete status","Estado de pago completo";
9
+ "Create invoice after payment","Solicitar factura";
10
+ "Mail invoice to customer", "Envio de email a cliente";
11
+ "Gateway selection","Selecci�n de Pasarela de pago";
12
+ "Auto redirect","Reenvio Automatico";
13
+ "Bank selection","Selecci�n de Banco";
14
+ "Direct Debit","Domiciliacion Bacaria";
15
+ "Bank Transfer","Transferencia Bancaria";
16
+ "Banktransfer","Transferencia Bancaria";
17
+ "Sign up for a free test account", "Registro gratuito de cuenta de Prueba";
18
+ "<a href=\'http://www.multisafepay.com/nl/klantenservice-zakelijk/open-een-testaccount.html\' target=\'_blank\'>Sign up for a free test account</a>","<a href=\'https://www.multisafepay.com/es/Abrir-una-cuenta-de-prueba.html\' target=\'_blank\'>Crea gratis una cuenta de prueba</a>";
19
+ "Automatically redirects the customer back to the webshop after payment. (Skips the 'Transaction Complete' screen)","Stuurt de consument na betaling automatisch terug naar de webshop. (Slaat het 'Transaction Complete' scherm over)";
20
+ " Or use -"o Utilice";
21
+ "New order mail","Nuevo Email";
22
+ "After notification","Despues de la Notificacion";
23
+ "After payment complete","Despues del Pago completado ";
24
+ "Force accept agreements","Terminos Legales";
25
+ "If enabled the customer must accept the terms and conditions in the fast checkout process","Para clientes aceptados", deben aceptar las condiciones de Fast Check out";
26
+ "Alternate Agreements URL", "P�ginas alternativas URL";
27
+ "Leave this empty for the standard URL for the agreements","Deje este espacio vacio para la URL de la p�gina contratada";
28
+ "Add company name field","Incluya el docuemnto de nombre de empresa";
29
+ "Company name cannot be empty","Nombre de empresa no puede quedar vacio";
30
+ "This will enable the Table Rates method configured at Shipping Methods -> Esto permitira que la tabla de precios de los metodos de pago este configurada con la tabla de precios de envios.";
31
+ "Allowed Currency", "Monedas permitidas";
32
+ "Allow currency conversion to Euro", "Permitir la conversion a euros";
33
+ "If store currency is not allowed by settings. Used for each gateway.", "Si no se permite almacenar diferentes monedas en herramientas. Divididlo por pasarela de pago.";
34
+ "New order mail", "Nuevo E-mail de pedido";
35
+ "E-mail invoice to customer", "Enviar factura al cliente";
36
+ "Send the order update e-mail to customer", "Enviar emaild e pedido actualizado al cliente";
37
+ "Keep the cart", "Guardar el carrito";
38
+ "Cart remains active when the customer returns to the webshop or cancels an order.", "La compra queda activa cuando el clientevuelva a la tienda o cancela un pedido";
39
+ "Are you using the One Step Checkout Module?", "Esta usando el modulo de COMPRA EN 1 PASO?";
40
+ "<![CDATA[<a href='https://www.multisafepay.com/en/Open-a-test-account.html' target='_blank'>Sign up for a free test account</a>]]>", "<![CDATA[<a href='https://www.multisafepay.com/es/Abrir-una-cuenta-de-prueba.html' target='_blank'>Abre gratis una cuenta de prueba</a>]]>";
41
+ "Automatically redirects a customer back to the webshop after a succesful payment. (Skips MultiSafepay's 'Transaction Complete' screen)", "Redirect de consument terug naar de website na een geslaagde transactie?";
42
+ "Receive payments from applicable countries", "Voor welke landen staan we betalingen toe?";
43
+ "Sort order", "Tipo de Pedido";
44
+ "New order e-mail", "Nuevo email de pedido";
45
+ "Receive payments from specific countries", "Recibir pagos de diferentes Paises";
46
+ "After order confirmation", "Despues de la confirmacion de pedido";
47
+ "After notification", including cancelled order", "Despu�s de una actualizaci�n de estado", incluyendo una transacci�n cancelada";
48
+ "After notification", excluding cancelled order", "Despu�s de una actualizaci�n de estado", adem�s de una transacci�n anulada";
49
+ "If store currency is not allowed by settings. Used for each gateways.", "Si no se permite la moneda para almacenar los medios de pago seleccionados", encontrar un lugar para Euro Conversion";
50
+ "Cart remains active when the customer returns to the webshop or cancels an order.", "El carrito de compras permanecer� activa cuando el consumidor rompe la operaci�n y volver a la tienda";
51
+ "Show the gateway image if it exists", "Mostrar el logotipo del pago si es que existe";
52
+ "Show the gateway image if it exists in front of the title", "Mostrar el logotipo del pago por el t�tulo";
53
+ "Show iDEAL banklist in checkout", "Ver la selecci�n del banco dentro del sitio";
54
+ "Account ID (for Test Accounts)", "ID de la cuenta para el entorno de prueba";
55
+ "Site ID (for Test Accounts)", "Identificaci�n del sitio para el entorno de prueba";
56
+ "Site Code (for Test Accounts)", "C�digo de Web (para cuentas de prueba)";
57
+ "Days active before requests expires?", "D�as activos antes de que la solicitud expire";
58
+ "Enable the invoice e-mail for this payment method?", "Habilitar la factura electr�nica para este m�todo de pago";
59
+ "Payment fee description", visible in order totals", "Descripci�n cuota de Pago", visible en la totalizacion de pago.";
60
+ "Enable IP validation", "Habilitar validaci�n IP";
61
+ "Only visible for the following IP address", "S�lo es visible para la siguiente direcci�n IP";
62
+ "You can add multiple addresses seperated by ;", "Usted puede agregar m�ltiples direcciones separadas por ; ";
63
+ "Only visible for the following IP address (for Test Account)", "�nicamente visible por las siguientes IP (Para Cuenta Test)";
64
+ "Enable Test Account for these IP(s) when enabled Live Account", "Habilitar cuenta de prueba para estos IP (s) cuando se habilita una cuenta real";
65
+ "You can add multiple addresses separated by ;. Feature enabled only when \'Type account\' set \'Live account\'", "Usted puede agregar m�ltiples direcciones separadas por Funci�n activa s�lo cuando \ 'Tipo de cuenta \' set \ 'cuenta de Live \";
66
+ "Send request after complete order", "Enviar solicitud despu�s de la orden completar";
67
+ "Request will be send after update statuse to Complete for PAD only", "Solicitud ser� enviado despu�s de actualizaci�n de estado para completar para la PAD s�lo";
68
+ "Use for refund?", "Utilice para el reembolso?";
69
+ "Enable direct banktransfer (no MultiSafepay page)", Habilitar transferencia bancaria directa (sin p�gina MultiSafepay)";
70
+ "Send new account email", "Enviar nueva cuenta de correo electr�nico";
71
+ "Send the new account email when a customer account is created after using Fast Checkout", "Env�e la nueva cuenta de correo electr�nico", cuando se crea una cuenta de cliente despu�s de usar Fast Check out";
72
+ "Automatic login", "Log in automatico";
73
+ "Login the customer after returning from Fast Checkout ", "registrar al cliente despues de salir de Fast Check out ";
74
+ "Let the customer redirect to their account page", "Deje que el cliente sea redirigido a la pagina de su cuenta";
75
+ "Company name", "Nombre de la empresa";
76
+ "Birthday", "Fecha de nacimiento";
77
+ "Chamber of Commerce (CoC/KvK)", "Camara de comercio";
78
+ "VAT number", " Porcentaje de IVA";
79
+ "Passport number", "Numero de pasaporte";
80
+ "Drivers license", "licencia de conducirr";
81
+ "Sex", "Sexo";
82
+ "Cart remains active when the customer returns to the webshop or cancels an order", "La cesta permanece activa cuando el cliente vuelve a la tienda online o cancela una orden";
83
+ "Fee in EURO. Example 2.95 (2.95 is the maximum)", "Fee en EUROS. Ejemplo 2.95 (2.95 es el m�ximo)";
84
+ "Enable fee (inc. Tax)", "Habilitar cuota (incluido IVA)";
85
+ "Payment fee amount", "Importe de la cuota de pago";
86
+ "Show payment fee incl. tax during checkout", "Mostrar pago de la cuota incluido impuesto durante el pago";
87
+ "Tax class for payment fee", "Tipo de IVA para la taroifa de pago";
88
+ "Select which tax class should be used for the payment fee", "Selecci�ne que tipo de IVA aplicara al articulo.";
89
+ "Title", "Titulo"
90
+ "Enabled", "Activado"
91
+ "Instructions", "Instrucciones"
92
+ "Maximum Order Total", "Total M�ximo para pedidos"
93
+ "Payment fee description, visible in order totals", "Detalles de los gastos de pago visibles con el total del pedido"
94
+ "Sort order", "Elegir el orden"
95
+ "API Key", "Clave API"
96
+ "One Step Checkout", "Checkout en 1 Solo click"
97
+ "Account type", "Tipo de Cuenta"
98
+ "Minimum Order Total", "Total m�nimum para pedidos"
99
+ "Send shipped status after complete order", "Cambiar Estado -Enviado- despu�s de terminar el pago."
100
+ "Enable", "Activar"
101
+ "Account", "Cuenta"
102
+ "Newsletter", "Newsletter"
103
+ "Comment", "Comentarios"
104
+ "Type account", "Tipo de Cuenta"
105
+
app/locale/fr_FR/MultiSafepay_Msp.csv ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Dutch","N�erlandais"
2
+ "English","Anglais"
3
+ "German","Allemand"
4
+ "French","Fran�ais"
5
+ "Spanish","Espagnol"
6
+ "Interface language","Langue"
7
+ "New order status","�tat du la nouvelle commande"
8
+ "Payment complete status","�tat de commande pay�e"
9
+ "Create invoice after payment","Cr�er facture apr�s paiement"
10
+ "Mail invoice to customer", "Envoyer la facture par e-mail"
11
+ "Gateway selection","S�lection de la passerelle"
12
+ "Auto redirect","redirection automatique"
13
+ "Bank selection","S�lection de la Banque"
14
+ "Direct Debit","Domiciliation bancaire"
15
+ "Bank Transfer","Virement bancaire"
16
+ "Banktransfer","Virement bancaire"
17
+ "Sign up for a free test account", "Ouvrir gratuitement un compte test"
18
+ "<a href=\'http://www.multisafepay.com/nl/klantenservice-zakelijk/open-een-testaccount.html\' target=\'_blank\'>Sign up for a free test account</a>","<a href=\'https://www.multisafepay.com/fr/Open-een-testaccount.html' target=\'_blank\'>Cr�er gratuitement un compte Test</a>"
19
+ "Automatically redirects the customer back to the webshop after payment. (Skips the 'Transaction Complete' screen)","Renvoyer automatiquement le client vers la boutique apr�s le paiement. (�vite l��cran "Commande finalis�")"
20
+ "- Or use -","- Ou utiliser -"
21
+ "New order mail","Email pour nouvelle commande"
22
+ "After notification","Apr�s notification"
23
+ "After payment complete","Apr�s paiement compl�t�"
24
+ "Terms and conditions","Termes et conditions"
25
+ "If enabled the customer must accept the terms and conditions in the fast checkout process","Si activ�", le client doit accepter les termes et conditions dans le processus de commande rapide"
26
+ "Alternate Agreements URL","URL alternatifs Conditions"
27
+ "Leave this empty for the standard URL for the agreements","Laissez ce champ vide pour l'URL par d�faut"
28
+ "Add company name field","Ajouter le nom de l'entreprise dans ce champ"
29
+ "Company name cannot be empty","Nom de l'entreprise requis"
30
+ "This will enable the Table Rates method configured at Shipping Methods -> Table Rates","Cela permettra la configuration du Tableau des prix pour chaque M�thode d'exp�dition -> Table de prix"
31
+ "Allowed Currency", "Permettre Monnaie"
32
+ "Allow currency conversion to Euro", "Permettre la conversion en Euro"
33
+ "If store currency is not allowed by settings. Used for each gateway.", "Si la monnaie de magasin n'est pas autoris� par les param�tres", Utilis� l'EURO pour chaque passerelle"
34
+ "New order mail", "Email pour nouvelle commande"
35
+ "E-mail invoice to customer", "Envoyer la facture par e-mail"
36
+ "Send the order update e-mail to customer", "Envoyer email d'information sur l'�tat de la commande"
37
+ "Keep the cart", "Continuer vos achats"
38
+ "Cart remains active when the customer returns to the webshop or cancels an order.", "Panier reste actif lorsque le client retourne � la boutique ou annule le paiement"
39
+ "Are you using the One Step Checkout Module?", "Utilisez-vous le module onestepcheckout.com?"
40
+ "<![CDATA[<a href='https://www.multisafepay.com/en/Open-a-test-account.html' target='_blank'>Sign up for a free test account</a>]]>", "<![CDATA[<a href='https://www.multisafepay.com/fr/Open-een-testaccount.html' target='_blank'>Cr�er gratuitement un compte Test</a>]]>"
41
+ "Automatically redirects a customer back to the webshop after a succesful payment. (Skips MultiSafepay's 'Transaction Complete' screen)", "Renvoyer automatiquement le client vers la boutique apr�s le paiement. (�vite l��cran "Commande finalis�")"
42
+ "Receive payments from applicable countries", "Recevoir des paiements de pays selectionn�s"
43
+ "Sort order", "trier"
44
+ "New order e-mail", "Email pour nouvelle commande"
45
+ "Receive payments from specific countries", "Sp�cifier les pays autoris�es ces m�thodes de paiement" "
46
+ "After order confirmation", "Apr�s avoir plac� de la commande"
47
+ "After notification", including cancelled order", "Apr�s notification", y compris un paiement annul�"
48
+ "After notification", excluding cancelled order", "Apr�s notification", � l'exclusion d'un paiement annul�"
49
+ "If store currency is not allowed by settings. Used for each gateways.", "Si la monnaie de magasin n'est pas autoris� par les param�tres", Utilis� l'EURO pour chaque passerelle"
50
+ "Cart remains active when the customer returns to the webshop or cancels an order.", "Panier reste actif lorsque le client retourne � la boutique ou annule le paiement"
51
+ "Show the gateway image if it exists", "Afficher le logo de la plateforme s'il existe"
52
+ "Show the gateway image if it exists in front of the title", "Afficher le logo de la plateforme s'il existe"
53
+ "Show iDEAL banklist in checkout", "iDEAL: Monter la liste des banques sur la page de finalisation de la commande"
54
+ "Account ID (for Test Accounts)", "Identifiant du compte Test"
55
+ "Site ID (for Test Accounts)", "Identifiant du Site (du compte Test)"
56
+ "Site Code (for Test Accounts)", "Code confidentiel du site (du compte Test)"
57
+ "Days active before requests expires?", "Nombre de jours avant qu'une transaction expire?"
58
+ "Enable the invoice e-mail for this payment method?", "Autoriser l'envoie de la facture pour ces m�thodes de paiement?"
59
+ "Payment fee description", visible in order totals", "Description des frais de paiement visible dans les totals de la commande."
60
+ "Enable IP validation", "Activer la validation par IP?"
61
+ "Only visible for the following IP address", "Visible uniquement pour l'adresse IP suivante"
62
+ "You can add multiple addresses seperated by ;", "Vous pouvez ajouter plusieurs adresses IP", s�par�es par un;"
63
+ "Only visible for the following IP address (for Test Account)"", "Visible uniquement pour l'adresse IP suivante (pour le compte Test)"
64
+ "Enable Test Account for these IP(s) when enabled Live Account", "Activer comme compte test pour ces adresses IP lorsque le compte est en mode LIVE"
65
+ "You can add multiple addresses separated by ;. Feature enabled only when \'Type account\' set \'Live account\'", "Vous pouvez ajouter plusieurs adresses IP", s�par�es par un; Option disponible seulement quand le compe est en mode LIVE" "
66
+ "Send request after complete order", "Envoyer la demande apr�s avoir compl�t� la commande" "
67
+ "Request will be send after update statuse to Complete for PAD only", "La demande sera envoy�e quand l'�tat changera � Compl�t�", seulement pour PAD"
68
+ "Use for refund?", "Les remboursements permettent de cr�er une note de cr�dit?"
69
+ "Enable direct banktransfer (no MultiSafepay page)", " Activer virement bancaire direct", le client ne verra pas la page de MultiSafepay"
70
+ "Send new account email", "Envoyer un email pour nouveau compte"
71
+ "Send the new account email when a customer account is created after using Fast Checkout", "Envoyer un email que le client se cr�er un nouveau compte pour l'utilisation de Fast Checkout"
72
+ "Automatic login", "Connexion automatique?"
73
+ "Login the customer after returning from Fast Checkout ", "Reconnecter le client au retour de Fast Checkout?"
74
+ "Let the customer redirect to their account page", "Rediriger le client � sa page de compte apr�s le paiement?"
75
+ "Company name", "Nom de l'entreprise"
76
+ "Birthday", "Date de naissance"
77
+ "Chamber of Commerce (CoC/KvK)", "Num�ro de registre de l'entreprise (SIRET", SIREN", etc.)"
78
+ "VAT number", "Num�ro de TVA"
79
+ "Passport number", "Num�ro de passeport"
80
+ "Drivers license", "Num�ro du Permit de conduire"
81
+ "Sex", "Genre"
82
+ "Cart remains active when the customer returns to the webshop or cancels an order", "Panier reste actif lorsque le client retourne � la boutique ou annule le paiement"
83
+ "Fee in EURO. Example 2.95 (2.95 is the maximum)", "Frais en Euro. Par exemple 2.95 (2.95 est le maximum autoris�)"
84
+ "Enable fee (inc. Tax)", "Ajouter les frais (TVA inclus)"
85
+ "Payment fee amount", "Frais du paiement"
86
+ "Show payment fee incl. tax during checkout", "Montrer les frais de paiement", TVA inclus � la confirmation du panier"
87
+ "Tax class for payment fee", "Type de TVA pour les frais de paiement"
88
+ "Select which tax class should be used for the payment fee", "Selectioner le type de TVA pour les frais de paiement"
89
+ "Title", "Titre"
90
+ "Enabled", "Activ�"
91
+ "Instructions", "Instructions"
92
+ "Maximum Order Total", "Total Maximum pour commander"
93
+ "Payment fee description, visible in order totals", "Description des frais de paiement, visible sur le total de la commande"
94
+ "Sort order", "Choisir l'ordre"
95
+ "API Key", "Cl� API"
96
+ "One Step Checkout", "Checkout en 1 clic"
97
+ "Account type", "Type de Compte"
98
+ "Minimum Order Total", "Total minimum pour commander"
99
+ "Send shipped status after complete order", "Modifier l'�tat de l'envoi apr�s compl�ter la commande"
100
+ "Enable", "Activer"
101
+ "Account", "Compte"
102
+ "Newsletter", "Newsletter"
103
+ "Comment", "Commentaire"
104
+ "Type account", "Type de Compte"
105
+
app/locale/it_IT/MultiSafepay_Msp.csv ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Dutch","Olandese"
2
+ "English","Inglese"
3
+ "German","Tedesco"
4
+ "French","Francese"
5
+ "Spanish","Spagnolo"
6
+ "Interface language","Lingua del processore di pagamento"
7
+ "New order status","Stato del nuovo ordine"
8
+ "Payment complete status","Stato del pagamento completato"
9
+ "Create invoice after payment","Creare fattura dopo il pagamento"
10
+ "Mail invoice to customer", "Inviare fattura al cliente"
11
+ "Gateway selection","Selezione gateway"
12
+ "Auto redirect"," Redirect automatico"
13
+ "Bank selection","Selezione della banca"
14
+ "Direct Debit","Addebito diretto"
15
+ "Bank Transfer","Bonifico bancario"
16
+ "Banktransfer","Bonifico bancario"
17
+ "Sign up for a free test account", "iscriviti per provare un demo account gratis"
18
+ "Automatically redirects the customer back to the webshop after payment. (Skips the 'Transaction Complete' screen)","reindirizza automaticamente il cliente al webshop dopo il pagamento(Salta la schermata )transazione completata"
19
+ "- Or use -","- O utilizzare -"
20
+ "New order mail","Nuovo ordine Email"
21
+ "After notification","dopo notificazione"
22
+ "After payment complete","A pagamento completato"
23
+ "Force accept agreements","Condizioni legali"
24
+ "If enabled the customer must accept the terms and conditions in the fast checkout process","Se abilitato il cliente deve accettare i termini e le condizioni del processo di checkout veloce"
25
+ "Alternate Agreements URL","Accordo alternativo URL"
26
+ "Leave this empty for the standard URL for the agreements","Lasciare vuoto questo campo per l' URL standard per gli accordi"
27
+ "Add company name field","Aggiungi il nome dell' azienda"
28
+ "Company name cannot be empty","Il campo nome azienda non puo' essere vuoto"
29
+ "This will enable the Table Rates method configured at Shipping Methods -> Table Rates","Cio' consentira' il metodo tabella oneri configurata metodi di transporto-> Tabella prezzi"
30
+ "Allowed Currency", "ammettere valuta"
31
+ "Allow currency conversion to Euro", "Ammettere cambio valuta in Euro"
32
+ "If store currency is not allowed by settings. Used for each gateway.", "se la moneta' non viene consentita nei settings .Usalo per ogni gateway"
33
+ "New order mail", "Nuovo ordine email"
34
+ "E-mail invoice to customer", "Email fattura al cliente"
35
+ "Send the order update e-mail to customer", "Invia l'ordine attualizzato al cliente"
36
+ "Keep the cart", "Mantenere il carrello"
37
+ "Cart remains active when the customer returns to the webshop or cancels an order.", "Il carrello rimane attivo quando il cliente ritorna al webshop o cancella l'ordine"
38
+ "Are you using the One Step Checkout Module?", "Stai usando lo step Checkout module?"
39
+ "Automatically redirects a customer back to the webshop after a succesful payment. (Skips MultiSafepay's 'Transaction Complete' screen)","Rindirizzare automaticamente il cliente al webshop dopo un pagamento riuscito "
40
+ "Receive payments from applicable countries", "Ricevere pagamenti da paesi applicabili"
41
+ "Sort order", "Sort order"
42
+ "New order e-mail", "Email nuovo ordine"
43
+ "Receive payments from specific countries", "Ricevere pagamenti da paesi specifici "
44
+ "After order confirmation", "Dopo conferma ordine"
45
+ "After notification", including cancelled order", "Dopo notificazione",incluso cancellazione ordine"
46
+ "After notification", excluding cancelled order", "Dopo notificazione",escluso cancellazione ordine"
47
+ "If store currency is not allowed by settings. Used for each gateways.", "Nel caso in cui non sia accettata la valuta la conversione sara' in Euro"
48
+ "Cart remains active when the customer returns to the webshop or cancels an order.", "Il carrello rimane attivo quando il cliente ritorna al webshop o cancella l'ordine"
49
+ "Show the gateway image if it exists", "Mostra l'immagine del gateway se esiste"
50
+ "Show the gateway image if it exists in front of the title", "Mostral'immagine del gateway di fronte al titolo se esiste"
51
+ "Show iDEAL banklist in checkout", "Mostra la lista delle banche che utilizzano Ideal"
52
+ "Account ID (for Test Accounts)", "Conto ID per test Accounts"
53
+ "Site ID (for Test Accounts)", "ID Sito (per test accounts)"
54
+ "Site Code (for Test Accounts)", "Codice di Sicurezza del Sito (per test accounts)"
55
+ "Days active before requests expires?", "Quanti giorni mancano prima che la richiesta scada?"
56
+ "Enable the invoice e-mail for this payment method?", "Permettere la fattura tramite e-mail con questo metodo di pago?"
57
+ "Payment fee description", visible in order totals", "."Descrizione quota visibile in ordini totali"
58
+ "Enable IP validation", "Attivare convalida IP"
59
+ "Only visible for the following IP address", "Visibile solo per i seguenti indirizzi IP"
60
+ "You can add multiple addresses seperated by ;", "Puoi aggiungere vari indirizzi separati da ;"
61
+ "Only visible for the following IP address (for Test Account)", "Visibile solo per i seguenti indirizzi IP(per Account testing)"
62
+ "Enable Test Account for these IP(s) when enabled Live Account", "Permettere test account per questi IP quando permetti Live account"
63
+ "You can add multiple addresses separated by ;. Feature enabled only when \'Type account\' set \'Live account\'", "Puoi aggiungere vari indirizzi separati da ;Caratteristica abilitata/tipo di account/set/live account"
64
+ "Send request after complete order", "inviare richiesta dopo aver completato l'ordine"
65
+ "Request will be send after update statuse to Complete for PAD only", "la richiesta sara' inviata dopo la attualizzazione status to complete solo per PAD "
66
+ "Use for refund?", "Utilizzare per il rimborso"
67
+ "Enable direct banktransfer (no MultiSafepay page)","permettere transferimento bancario diretto"
68
+ "Send new account email", "Inviare nuovo account email"
69
+ "Send the new account email when a customer account is created after using Fast Checkout", " Inviare il nuovo account email quando l'account di un cliente e' creato dopo aver usato un Fast Checkout"
70
+ "Automatic login", "Login automatico?"
71
+ "Login the customer after returning from Fast Checkout ", "Login cliente dopo essere ritornati al fast checkout?"
72
+ "Let the customer redirect to their account page", "lasciare il cliente ritornare alla loro pagina"
73
+ "Company name", "Nome azienda"
74
+ "Birthday", "nascita"
75
+ "Chamber of Commerce", "Camera di commercio"
76
+ "Chamber of Commerce (CoC/KvK)", "Camera di commercio"
77
+ "VAT number", "Patita IVA"
78
+ "Passport number", "numero di Passaporto"
79
+ "Drivers license", "Patente di guida"
80
+ "Sex", "Sesso"
81
+ "Cart remains active when the customer returns to the webshop or cancels an order", "Il carrello rimane attivo quando il cliente ritorna alla webshop o cancella un ordine"
82
+ "Fee in EURO. Example 2.95 (2.95 is the maximum)", "Gratis in Euro.Esempio 2.95(2.95 e' il massimo)"
83
+ "Enable fee (inc. Tax)", "consentire pagamento(tasse incluse)"
84
+ "Payment fee amount", "Importo tassa"
85
+ "Show payment fee incl. tax during checkout", "Mostra importo tassa durante il checkout"
86
+ "Tax class for payment fee", "Classi fiscali per tassa di pagamento"
87
+ "Select which tax class should be used for the payment fee", "Seleziona quale tassa dovrebbe essere usata per il pagamento"
88
+ "Account ID", "Conto ID"
89
+ "Site ID", "ID Sito"
90
+ "Site Code", "Codice di Sicurezza del Sito"
91
+ "Title", "Titolo"
92
+ "Enabled", "Attivato"
93
+ "Instructions", "Istruzioni"
94
+ "Maximum Order Total", "Ordine massimo totale"
95
+ "Payment fee description, visible in order totals", "Descrizione del pagamento, visibile nel totale dell'ordine"
96
+ "Sort order", "Ordinare"
97
+ "API Key", "Chiave API"
98
+ "One Step Checkout", "Checkout veloce"
99
+ "Account type", "Tipo di account"
100
+ "Minimum Order Total", "Ordine minimo totale"
101
+ "Send shipped status after complete order", "Inviare status spedizione dopo aver completato l'ordine"
102
+ "Enable", "Attivare"
103
+ "Account", "Account"
104
+ "Newsletter", "Newsletter"
105
+ "Comment", "Commenti"
106
+ "Type account", "Inserire account"
107
+
media/msp/de/msp_fijncadeau.png DELETED
Binary file
media/msp/en/msp_fijncadeau.png DELETED
Binary file
media/msp/es/msp_fijncadeau.png DELETED
Binary file
media/msp/fr/msp_fijncadeau.png DELETED
Binary file
media/msp/it/msp_fijncadeau.png DELETED
Binary file
media/msp/nl/msp_fijncadeau.png DELETED
Binary file
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>MultiSafepay_Msp</name>
4
- <version>2.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/afl-3.0.php">AFL 3.0</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>With this module you can use all payment methods offered by MultiSafepay</description>
11
  <notes>Tested by MultiSafepay</notes>
12
  <authors><author><name>MultiSafepay</name><user>MultiSafepayDev</user><email>plugingroup@multisafepay.com</email></author></authors>
13
- <date>2014-09-12</date>
14
- <time>09:23:10</time>
15
- <contents><target name="magecommunity"><dir name="MultiSafepay"><dir name="Msp"><dir name="Block"><dir name="Adminhtml"><dir name="Servicecost"><dir name="Totals"><file name="Creditmemo.php" hash="12b90552f4ec41d644f0b737dd43f2da"/><file name="Invoice.php" hash="3cb5fc394aa646e7e665bc88ffefd1fd"/><file name="Order.php" hash="3db720695fb7b9423e9043c97897c288"/></dir></dir></dir><file name="Bno.php" hash="cdf6550ebbd77b608fa352a2f8c06eca"/><dir name="Checkout"><dir name="Onepage"><dir name="Payment"><file name="Methods.php" hash="ff2378688f2e6231883d3576815c2c7b"/></dir></dir></dir><file name="Default.php" hash="f383347428dc9bf17123c4174e1982d7"/><file name="Gateways.php" hash="4ad012bccc09fa9d8d27cb83cc7b8a1a"/><file name="IdealIssuers.php" hash="367c60c20daf991ba910afc2e197fab0"/><file name="Link.php" hash="a1cd20870390cf4ad7defee853da36d9"/><dir name="Servicecost"><dir name="Order"><file name="Total.php" hash="3f1fac77895b673c81f053323aa6565c"/><file name="Totals.php" hash="f58a5db2b722110f5b586c6c9aa6e334"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="57db8077943501cb76686c0379674bba"/></dir><dir name="Model"><file name="Abstract.php" hash="c6746b850356831657e0680da7b30ced"/><dir name="Api"><file name="Creditmemo.php" hash="ba9565ef44f83496b61158bfbc2067f9"/><file name="Paylink.php" hash="3265b8e1738b23b11d14c40fdd6e4340"/><file name="Shipment.php" hash="65c2c119a88a668912e1352fedc5d1fb"/></dir><file name="Base.php" hash="a73b3ce86228a97cb1e879fe9f36097b"/><file name="Checkout.php" hash="2507c14d43cfef06cf9cbe3522f67244"/><dir name="Config"><dir name="Sources"><file name="Accounts.php" hash="f740fa1cc557eb964df2942bc6cb64d5"/><file name="Fields.php" hash="0fe5705f7a9f4846a537cf6b5a37aa2b"/><file name="Languages.php" hash="6e49f351f10279ec77f9408a65728863"/><dir name="Order"><file name="Currency.php" hash="83226cbe1c661dd48d8eded35b92fd04"/><file name="Email.php" hash="92f58c9dbafecabdf595568395a309b5"/></dir><file name="TaxClasses.php" hash="abf11c71e30cb513b416dca63474e664"/></dir></dir><dir name="Gateway"><file name="Abstract.php" hash="b5eaae2c0e74e6ca8987ce1aeb76b538"/><file name="Amex.php" hash="fe588eacbb914d099014131c64a687be"/><file name="Babygiftcard.php" hash="ad8930a208061d0292329606a7734455"/><file name="Banktransfer.php" hash="fa3db52d4b90907f9d30d9c94675a879"/><file name="Boekenbon.php" hash="6ced7b0d6b2638a60c943d5e0e46cd8d"/><file name="Default.php" hash="18144ab0f6ba9aca9d06aca2960e8464"/><file name="Degrotespeelgoedwinkel.php" hash="e2c4f3baeea295891f0c57f486b1a7fc"/><file name="DirectDebit.php" hash="c796eb275ba19806793280ba526a0cc2"/><file name="DirectEbanking.php" hash="d4a5fd453c5ce46b008c6ed5d6c3e904"/><file name="Ebon.php" hash="b0abcd38296d8ce6ff3dae82b0de5a3e"/><file name="Erotiekbon.php" hash="31bb29adba08fc7e69e55d1a713bef19"/><file name="Fashioncheque.php" hash="837144ade2d10fa3edd5adeb25ab4efa"/><file name="Fastcheckout.php" hash="a434d38bc91d6d1bd9b8b240fb93b4fe"/><file name="Gezondheidsbon.php" hash="9d7ea2edb570f7859dbbbca8d108cb30"/><file name="GiroPay.php" hash="c298c0b950bff6e1df5e4637abd3cfce"/><file name="Ideal.php" hash="7e54b8dc2904416e3482bdead954b5b4"/><file name="Lief.php" hash="45655795ad4bacb97a3357ca11a32271"/><file name="Maestro.php" hash="114e0a52de7158a0ee8b2484765e6102"/><file name="Mastercard.php" hash="56dffa304e96306f30d52cde05c18e6d"/><file name="Mistercash.php" hash="7833569406d5263873b525e00d80e050"/><file name="MultiSafepay.php" hash="769e8062b52587f3b591cb9d839c05a8"/><file name="Parfumcadeaukaart.php" hash="7b58fb6ac8932ff273dd712a312102b1"/><file name="Parfumnl.php" hash="ffee0bc5bb2b1bd1d52f37457c1e3b26"/><file name="Payafter.php" hash="4444afa6481115f12143247f7e709858"/><file name="Paypal.php" hash="26823a0c53c43877e1a17a0eb1cc6cf1"/><file name="Standard.php" hash="63e560d58d932a03d443fec37d08f2f6"/><file name="Visa.php" hash="29a99720ad0d6c4e02cb31e4eda1469d"/><file name="Webgift.php" hash="2d6d11e975b9f946ab01fca3198bf9b9"/></dir><dir name="Observer"><file name="Abstract.php" hash="06e0e7736a6981fe368f550d144af358"/><file name="Creditmemo.php" hash="02c8e5415c1051fa9a6c0fbdb55623e9"/><file name="Order.php" hash="337054f28bcabd84d58a5fbc925960b4"/><file name="Shipment.php" hash="528dc20d651a7357aefd7f5b084afc40"/></dir><file name="Payment.php" hash="61bb6faa4869cbe21346a10fedcb561d"/><dir name="Service"><file name="Quote.php" hash="1d4101ccf3932f4c58be3a8a5ae004bd"/></dir><dir name="Servicecost"><dir name="Creditmemo"><file name="Total.php" hash="8cb31e0e32e942d1bd3ab355a53e71cb"/></dir><dir name="Invoice"><file name="Totals.php" hash="2d104523c81471eec8b29250755e2a2c"/></dir><file name="Observer.php" hash="038daeee378ca6dde9322dd544a5db8c"/><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Servicecost.php" hash="a0e1201e6ef2b6414555ea3c4d69f418"/></dir></dir></dir></dir><file name="Setup.php" hash="8c5969ad1ffe25cc8cd65d62d3e06300"/></dir><dir name="controllers"><file name="CheckoutController.php" hash="88968cc7d0405848377e276c4175fe6c"/><file name="MspPaymentController.php" hash="44a4467fc3fb28c033c278c22f05fd3e"/><file name="StandardController.php" hash="d7c8a205382736fbf099be095f230466"/></dir><dir name="etc"><file name="adminhtml.xml" hash="d2152b4d830385e427fce8d36a56cba6"/><file name="config.xml" hash="7aaf148ae7bce525104f9ae36a158935"/><file name="system.xml" hash="44c00c9b473a4e192a0fefbaf4791b34"/></dir><dir name="sql"><dir name="msp_setup"><file name="mysql4-upgrade-1.3.3-1.4.0.php" hash="f03b18f286e18dc61f6e7944d65ff871"/></dir></dir></dir></dir></target><target name="magemedia"><dir name="msp"><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><dir name="de"><file name="Thumbs.db" hash="23c6d2fa586f60e64acf307d398dfeb2"/><file name="msp_amex.png" hash="a5e66b6516f80a7d8add7d59d6bf0e9d"/><file name="msp_babygiftcard.png" hash="85cb17a943036d86402bb439938cf616"/><file name="msp_banktransfer.png" hash="5993fd5deb6e184765d690c85ae7d740"/><file name="msp_boekenbon.png" hash="c69a112af5220771b4d281978cd184ba"/><file name="msp_degrotespeelgoedwinkel.png" hash="e9193002f24d2ba35afb759b5c268be5"/><file name="msp_directdebit.png" hash="38dc09ac7c4d8e32dade12ef7b24ba75"/><file name="msp_directebanking.png" hash="a3e72c2e0053b8fab500bd171e516877"/><file name="msp_ebon.png" hash="e98f08cc1108106951e01f9b186a5cdb"/><file name="msp_erotiekbon.png" hash="b3d5a2793aabcf2f9761454c0bc95ad1"/><file name="msp_fashioncheque.png" hash="b11a52ef39ae97225def18778a4be4c2"/><file name="msp_fijncadeau.png" hash="06547020ecc8b2fef352b516b6a4537c"/><file name="msp_giropay.png" hash="da6c83afbcf21821ef3d88e5c955fabb"/><file name="msp_ideal.png" hash="975bc03d136c0e5a37f8d5f5a710b6c7"/><file name="msp_maestro.png" hash="94cfd9498ab1c4293099b0778c899b7b"/><file name="msp_mastercard.png" hash="dedc112da93c9aafe992b68cbe4a6051"/><file name="msp_mistercash.png" hash="c429297b30437960315df5d9b36b0118"/><file name="msp_multisafepay.png" hash="4f7ad00d5eea0113a8b52fa4ece7bf8a"/><file name="msp_parfumcadeaukaart.png" hash="270bb5bfc45a036d9b761431b540e1ad"/><file name="msp_parfumnl.png" hash="a3e69d28d44938db2fbb5a2407c76c7f"/><file name="msp_payafter.png" hash="31eab2a6944a9dc181eed046ee8ec238"/><file name="msp_paypal.png" hash="6d072cdf9a82a9f3c419ad13dbc78846"/><file name="msp_visa.png" hash="88d54fe482cd1e2f8d5857829866cc18"/><file name="msp_webgift.png" hash="cbea18654cf36cc6a743316d359a6b87"/></dir><dir name="en"><file name="Thumbs.db" hash="8631718a27c51f2a091e6e954af7f434"/><file name="msp_amex.png" hash="a5e66b6516f80a7d8add7d59d6bf0e9d"/><file name="msp_babygiftcard.png" hash="85cb17a943036d86402bb439938cf616"/><file name="msp_banktransfer.png" hash="5993fd5deb6e184765d690c85ae7d740"/><file name="msp_boekenbon.png" hash="c69a112af5220771b4d281978cd184ba"/><file name="msp_degrotespeelgoedwinkel.png" hash="e9193002f24d2ba35afb759b5c268be5"/><file name="msp_directdebit.png" hash="177fe504ef710cf5eaf42cc9592c2215"/><file name="msp_directebanking.png" hash="a3e72c2e0053b8fab500bd171e516877"/><file name="msp_ebon.png" hash="e98f08cc1108106951e01f9b186a5cdb"/><file name="msp_erotiekbon.png" hash="b3d5a2793aabcf2f9761454c0bc95ad1"/><file name="msp_fashioncheque.png" hash="b11a52ef39ae97225def18778a4be4c2"/><file name="msp_fijncadeau.png" hash="06547020ecc8b2fef352b516b6a4537c"/><file name="msp_giropay.png" hash="da6c83afbcf21821ef3d88e5c955fabb"/><file name="msp_ideal.png" hash="975bc03d136c0e5a37f8d5f5a710b6c7"/><file name="msp_maestro.png" hash="94cfd9498ab1c4293099b0778c899b7b"/><file name="msp_mastercard.png" hash="dedc112da93c9aafe992b68cbe4a6051"/><file name="msp_mistercash.png" hash="c429297b30437960315df5d9b36b0118"/><file name="msp_multisafepay.png" hash="4f7ad00d5eea0113a8b52fa4ece7bf8a"/><file name="msp_parfumcadeaukaart.png" hash="270bb5bfc45a036d9b761431b540e1ad"/><file name="msp_parfumnl.png" hash="a3e69d28d44938db2fbb5a2407c76c7f"/><file name="msp_payafter.png" hash="31eab2a6944a9dc181eed046ee8ec238"/><file name="msp_paypal.png" hash="6d072cdf9a82a9f3c419ad13dbc78846"/><file name="msp_visa.png" hash="88d54fe482cd1e2f8d5857829866cc18"/><file name="msp_webgift.png" hash="cbea18654cf36cc6a743316d359a6b87"/></dir><dir name="es"><file name="Thumbs.db" hash="c67f35358ffef6d7986bb93f1e65eae6"/><file name="msp_amex.png" hash="a5e66b6516f80a7d8add7d59d6bf0e9d"/><file name="msp_babygiftcard.png" hash="85cb17a943036d86402bb439938cf616"/><file name="msp_banktransfer.png" hash="0ba666cf841114b892667331c8aaad4e"/><file name="msp_boekenbon.png" hash="c69a112af5220771b4d281978cd184ba"/><file name="msp_degrotespeelgoedwinkel.png" hash="e9193002f24d2ba35afb759b5c268be5"/><file name="msp_directdebit.png" hash="3ffde6c7a1eec68da96ea11518dfde55"/><file name="msp_directebanking.png" hash="a3e72c2e0053b8fab500bd171e516877"/><file name="msp_ebon.png" hash="e98f08cc1108106951e01f9b186a5cdb"/><file name="msp_erotiekbon.png" hash="b3d5a2793aabcf2f9761454c0bc95ad1"/><file name="msp_fashioncheque.png" hash="b11a52ef39ae97225def18778a4be4c2"/><file name="msp_fijncadeau.png" hash="06547020ecc8b2fef352b516b6a4537c"/><file name="msp_giropay.png" hash="da6c83afbcf21821ef3d88e5c955fabb"/><file name="msp_ideal.png" hash="975bc03d136c0e5a37f8d5f5a710b6c7"/><file name="msp_maestro.png" hash="94cfd9498ab1c4293099b0778c899b7b"/><file name="msp_mastercard.png" hash="dedc112da93c9aafe992b68cbe4a6051"/><file name="msp_mistercash.png" hash="c429297b30437960315df5d9b36b0118"/><file name="msp_multisafepay.png" hash="4f7ad00d5eea0113a8b52fa4ece7bf8a"/><file name="msp_parfumcadeaukaart.png" hash="270bb5bfc45a036d9b761431b540e1ad"/><file name="msp_parfumnl.png" hash="a3e69d28d44938db2fbb5a2407c76c7f"/><file name="msp_payafter.png" hash="31eab2a6944a9dc181eed046ee8ec238"/><file name="msp_paypal.png" hash="6d072cdf9a82a9f3c419ad13dbc78846"/><file name="msp_visa.png" hash="88d54fe482cd1e2f8d5857829866cc18"/><file name="msp_webgift.png" hash="cbea18654cf36cc6a743316d359a6b87"/></dir><dir name="fr"><file name="Thumbs.db" hash="163c29258e74e6c5809b93399db36904"/><file name="msp_amex.png" hash="a5e66b6516f80a7d8add7d59d6bf0e9d"/><file name="msp_babygiftcard.png" hash="85cb17a943036d86402bb439938cf616"/><file name="msp_banktransfer.png" hash="87bb8916f81ed310cf5cb3aed814fb9d"/><file name="msp_boekenbon.png" hash="c69a112af5220771b4d281978cd184ba"/><file name="msp_degrotespeelgoedwinkel.png" hash="e9193002f24d2ba35afb759b5c268be5"/><file name="msp_directdebit.png" hash="f0b641efb330c71dbdbf9eb71617605f"/><file name="msp_directebanking.png" hash="a3e72c2e0053b8fab500bd171e516877"/><file name="msp_ebon.png" hash="e98f08cc1108106951e01f9b186a5cdb"/><file name="msp_erotiekbon.png" hash="b3d5a2793aabcf2f9761454c0bc95ad1"/><file name="msp_fashioncheque.png" hash="b11a52ef39ae97225def18778a4be4c2"/><file name="msp_fijncadeau.png" hash="06547020ecc8b2fef352b516b6a4537c"/><file name="msp_giropay.png" hash="da6c83afbcf21821ef3d88e5c955fabb"/><file name="msp_ideal.png" hash="975bc03d136c0e5a37f8d5f5a710b6c7"/><file name="msp_maestro.png" hash="94cfd9498ab1c4293099b0778c899b7b"/><file name="msp_mastercard.png" hash="dedc112da93c9aafe992b68cbe4a6051"/><file name="msp_mistercash.png" hash="c429297b30437960315df5d9b36b0118"/><file name="msp_multisafepay.png" hash="4f7ad00d5eea0113a8b52fa4ece7bf8a"/><file name="msp_parfumcadeaukaart.png" hash="270bb5bfc45a036d9b761431b540e1ad"/><file name="msp_parfumnl.png" hash="a3e69d28d44938db2fbb5a2407c76c7f"/><file name="msp_payafter.png" hash="31eab2a6944a9dc181eed046ee8ec238"/><file name="msp_paypal.png" hash="6d072cdf9a82a9f3c419ad13dbc78846"/><file name="msp_visa.png" hash="88d54fe482cd1e2f8d5857829866cc18"/><file name="msp_webgift.png" hash="cbea18654cf36cc6a743316d359a6b87"/></dir><dir name="it"><file name="Thumbs.db" hash="06947336d2daae296c3aa6e0d0666a3e"/><file name="msp_amex.png" hash="a5e66b6516f80a7d8add7d59d6bf0e9d"/><file name="msp_babygiftcard.png" hash="85cb17a943036d86402bb439938cf616"/><file name="msp_banktransfer.png" hash="eaf1b22dbe6ad0ad3e8c7108552359ad"/><file name="msp_boekenbon.png" hash="c69a112af5220771b4d281978cd184ba"/><file name="msp_degrotespeelgoedwinkel.png" hash="e9193002f24d2ba35afb759b5c268be5"/><file name="msp_directdebit.png" hash="dfb3d359a9b48c88dc71ef65af9ea356"/><file name="msp_directebanking.png" hash="a3e72c2e0053b8fab500bd171e516877"/><file name="msp_ebon.png" hash="e98f08cc1108106951e01f9b186a5cdb"/><file name="msp_erotiekbon.png" hash="b3d5a2793aabcf2f9761454c0bc95ad1"/><file name="msp_fashioncheque.png" hash="b11a52ef39ae97225def18778a4be4c2"/><file name="msp_fijncadeau.png" hash="06547020ecc8b2fef352b516b6a4537c"/><file name="msp_giropay.png" hash="da6c83afbcf21821ef3d88e5c955fabb"/><file name="msp_ideal.png" hash="975bc03d136c0e5a37f8d5f5a710b6c7"/><file name="msp_maestro.png" hash="94cfd9498ab1c4293099b0778c899b7b"/><file name="msp_mastercard.png" hash="dedc112da93c9aafe992b68cbe4a6051"/><file name="msp_mistercash.png" hash="c429297b30437960315df5d9b36b0118"/><file name="msp_multisafepay.png" hash="4f7ad00d5eea0113a8b52fa4ece7bf8a"/><file name="msp_parfumcadeaukaart.png" hash="270bb5bfc45a036d9b761431b540e1ad"/><file name="msp_parfumnl.png" hash="a3e69d28d44938db2fbb5a2407c76c7f"/><file name="msp_payafter.png" hash="31eab2a6944a9dc181eed046ee8ec238"/><file name="msp_paypal.png" hash="6d072cdf9a82a9f3c419ad13dbc78846"/><file name="msp_visa.png" hash="88d54fe482cd1e2f8d5857829866cc18"/><file name="msp_webgift.png" hash="cbea18654cf36cc6a743316d359a6b87"/></dir><dir name="nl"><file name="Thumbs.db" hash="1b02d4a7ea1014a099e3abc3fffc4902"/><file name="msp_amex.png" hash="a5e66b6516f80a7d8add7d59d6bf0e9d"/><file name="msp_babygiftcard.png" hash="85cb17a943036d86402bb439938cf616"/><file name="msp_banktransfer.png" hash="404edf4cd1e16a79e2c72db944f00ae6"/><file name="msp_boekenbon.png" hash="c69a112af5220771b4d281978cd184ba"/><file name="msp_degrotespeelgoedwinkel.png" hash="e9193002f24d2ba35afb759b5c268be5"/><file name="msp_directdebit.png" hash="df54e38016cda0b1dbd537b4784278f7"/><file name="msp_directebanking.png" hash="a3e72c2e0053b8fab500bd171e516877"/><file name="msp_ebon.png" hash="e98f08cc1108106951e01f9b186a5cdb"/><file name="msp_erotiekbon.png" hash="b3d5a2793aabcf2f9761454c0bc95ad1"/><file name="msp_fashioncheque.png" hash="b11a52ef39ae97225def18778a4be4c2"/><file name="msp_fijncadeau.png" hash="06547020ecc8b2fef352b516b6a4537c"/><file name="msp_giropay.png" hash="da6c83afbcf21821ef3d88e5c955fabb"/><file name="msp_ideal.png" hash="975bc03d136c0e5a37f8d5f5a710b6c7"/><file name="msp_maestro.png" hash="94cfd9498ab1c4293099b0778c899b7b"/><file name="msp_mastercard.png" hash="dedc112da93c9aafe992b68cbe4a6051"/><file name="msp_mistercash.png" hash="c429297b30437960315df5d9b36b0118"/><file name="msp_multisafepay.png" hash="4f7ad00d5eea0113a8b52fa4ece7bf8a"/><file name="msp_parfumcadeaukaart.png" hash="270bb5bfc45a036d9b761431b540e1ad"/><file name="msp_parfumnl.png" hash="a3e69d28d44938db2fbb5a2407c76c7f"/><file name="msp_payafter.png" hash="31eab2a6944a9dc181eed046ee8ec238"/><file name="msp_paypal.png" hash="6d072cdf9a82a9f3c419ad13dbc78846"/><file name="msp_visa.png" hash="88d54fe482cd1e2f8d5857829866cc18"/><file name="msp_webgift.png" hash="cbea18654cf36cc6a743316d359a6b87"/></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="msp"><file name="agreements.phtml" hash="58542fd356d03353f4aee5d4d60590ac"/><file name="bno.phtml" hash="545e7d7cba9acb1a8e6fbb2cdd0375d2"/><file name="default.phtml" hash="be9554f94b75fc463a4af89a73a57cd3"/><file name="gateways.phtml" hash="6ccde89c2c88e42bbb35698181bcfe1b"/><file name="idealissuers.phtml" hash="4b3f1ae74889f7cbb01fd7bac261b09f"/><file name="link.phtml" hash="8c9ad5857d781e46dfc63a5f1ddecd7f"/><file name="linkText.phtml" hash="1146e6323f40228a7b17131dc5f38cf4"/><dir name="paymentFee"><dir name="checkout"><file name="fee.phtml" hash="4a5a68dbd5700b7d8d9312ddd98db89f"/></dir></dir></dir></dir><dir name="layout"><file name="msp.xml" hash="dd0c1df88dbc8d930d3137a60e3dd0ce"/></dir></dir></dir></dir></target><target name="mage"><dir name="lib"><dir name="multisafepay"><file name="MultiSafepay.combined.php" hash="aa05f95ad18666c359d66226ff75f5c9"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="MultiSafepay_Msp.xml" hash="683763d13d6cb6576fb11800071afdb8"/></dir></target><target name="magelocale"><dir name="nl_NL"><file name="MultiSafepay_Msp.csv" hash="e0d714d496d4bc38870dc99291135d7b"/></dir></target></contents>
16
  <compatible/>
17
- <dependencies><required><php><min>5.2.13</min><max>5.5.12</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>MultiSafepay_Msp</name>
4
+ <version>2.0.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/afl-3.0.php">AFL 3.0</license>
7
  <channel>community</channel>
10
  <description>With this module you can use all payment methods offered by MultiSafepay</description>
11
  <notes>Tested by MultiSafepay</notes>
12
  <authors><author><name>MultiSafepay</name><user>MultiSafepayDev</user><email>plugingroup@multisafepay.com</email></author></authors>
13
+ <date>2014-10-13</date>
14
+ <time>13:56:54</time>
15
+ <contents><target name="magecommunity"><dir name="MultiSafepay"><dir name="Msp"><dir name="Block"><dir name="Adminhtml"><dir name="Servicecost"><dir name="Totals"><file name="Creditmemo.php" hash="12b90552f4ec41d644f0b737dd43f2da"/><file name="Invoice.php" hash="3cb5fc394aa646e7e665bc88ffefd1fd"/><file name="Order.php" hash="3db720695fb7b9423e9043c97897c288"/></dir></dir></dir><file name="Bno.php" hash="cdf6550ebbd77b608fa352a2f8c06eca"/><dir name="Checkout"><dir name="Onepage"><dir name="Payment"><file name="Methods.php" hash="ff2378688f2e6231883d3576815c2c7b"/></dir></dir></dir><file name="Default.php" hash="f383347428dc9bf17123c4174e1982d7"/><file name="Gateways.php" hash="4ad012bccc09fa9d8d27cb83cc7b8a1a"/><file name="IdealIssuers.php" hash="367c60c20daf991ba910afc2e197fab0"/><file name="Link.php" hash="a1cd20870390cf4ad7defee853da36d9"/><dir name="Servicecost"><dir name="Order"><file name="Total.php" hash="3f1fac77895b673c81f053323aa6565c"/><file name="Totals.php" hash="f58a5db2b722110f5b586c6c9aa6e334"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="57db8077943501cb76686c0379674bba"/></dir><dir name="Model"><file name="Abstract.php" hash="c6746b850356831657e0680da7b30ced"/><dir name="Api"><file name="Creditmemo.php" hash="ba9565ef44f83496b61158bfbc2067f9"/><file name="Paylink.php" hash="3265b8e1738b23b11d14c40fdd6e4340"/><file name="Shipment.php" hash="65c2c119a88a668912e1352fedc5d1fb"/></dir><file name="Base.php" hash="963475dd83f34a1c787a3d184fc63b98"/><file name="Checkout.php" hash="2507c14d43cfef06cf9cbe3522f67244"/><dir name="Config"><dir name="Sources"><file name="Accounts.php" hash="f740fa1cc557eb964df2942bc6cb64d5"/><file name="Fields.php" hash="0fe5705f7a9f4846a537cf6b5a37aa2b"/><file name="Languages.php" hash="6e49f351f10279ec77f9408a65728863"/><dir name="Order"><file name="Currency.php" hash="83226cbe1c661dd48d8eded35b92fd04"/><file name="Email.php" hash="92f58c9dbafecabdf595568395a309b5"/></dir><file name="TaxClasses.php" hash="abf11c71e30cb513b416dca63474e664"/></dir></dir><dir name="Gateway"><file name="Abstract.php" hash="b5eaae2c0e74e6ca8987ce1aeb76b538"/><file name="Amex.php" hash="fe588eacbb914d099014131c64a687be"/><file name="Babygiftcard.php" hash="ad8930a208061d0292329606a7734455"/><file name="Banktransfer.php" hash="fa3db52d4b90907f9d30d9c94675a879"/><file name="Boekenbon.php" hash="6ced7b0d6b2638a60c943d5e0e46cd8d"/><file name="Default.php" hash="18144ab0f6ba9aca9d06aca2960e8464"/><file name="Degrotespeelgoedwinkel.php" hash="e2c4f3baeea295891f0c57f486b1a7fc"/><file name="DirectDebit.php" hash="c796eb275ba19806793280ba526a0cc2"/><file name="DirectEbanking.php" hash="d4a5fd453c5ce46b008c6ed5d6c3e904"/><file name="Ebon.php" hash="b0abcd38296d8ce6ff3dae82b0de5a3e"/><file name="Erotiekbon.php" hash="31bb29adba08fc7e69e55d1a713bef19"/><file name="Fashioncheque.php" hash="837144ade2d10fa3edd5adeb25ab4efa"/><file name="Fastcheckout.php" hash="a434d38bc91d6d1bd9b8b240fb93b4fe"/><file name="Gezondheidsbon.php" hash="9d7ea2edb570f7859dbbbca8d108cb30"/><file name="GiroPay.php" hash="c298c0b950bff6e1df5e4637abd3cfce"/><file name="Ideal.php" hash="7e54b8dc2904416e3482bdead954b5b4"/><file name="Lief.php" hash="45655795ad4bacb97a3357ca11a32271"/><file name="Maestro.php" hash="114e0a52de7158a0ee8b2484765e6102"/><file name="Mastercard.php" hash="56dffa304e96306f30d52cde05c18e6d"/><file name="Mistercash.php" hash="7833569406d5263873b525e00d80e050"/><file name="MultiSafepay.php" hash="769e8062b52587f3b591cb9d839c05a8"/><file name="Parfumcadeaukaart.php" hash="7b58fb6ac8932ff273dd712a312102b1"/><file name="Parfumnl.php" hash="ffee0bc5bb2b1bd1d52f37457c1e3b26"/><file name="Payafter.php" hash="4444afa6481115f12143247f7e709858"/><file name="Paypal.php" hash="26823a0c53c43877e1a17a0eb1cc6cf1"/><file name="Standard.php" hash="63e560d58d932a03d443fec37d08f2f6"/><file name="Visa.php" hash="29a99720ad0d6c4e02cb31e4eda1469d"/><file name="Webgift.php" hash="2d6d11e975b9f946ab01fca3198bf9b9"/></dir><dir name="Observer"><file name="Abstract.php" hash="06e0e7736a6981fe368f550d144af358"/><file name="Creditmemo.php" hash="02c8e5415c1051fa9a6c0fbdb55623e9"/><file name="Order.php" hash="337054f28bcabd84d58a5fbc925960b4"/><file name="Shipment.php" hash="528dc20d651a7357aefd7f5b084afc40"/></dir><file name="Payment.php" hash="1a14b61a37a3648e0afa17b1245b83a8"/><dir name="Service"><file name="Quote.php" hash="1d4101ccf3932f4c58be3a8a5ae004bd"/></dir><dir name="Servicecost"><dir name="Creditmemo"><file name="Total.php" hash="8cb31e0e32e942d1bd3ab355a53e71cb"/></dir><dir name="Invoice"><file name="Totals.php" hash="7a4aba5c902e1ca75db56736153565e8"/></dir><file name="Observer.php" hash="038daeee378ca6dde9322dd544a5db8c"/><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Servicecost.php" hash="a0e1201e6ef2b6414555ea3c4d69f418"/></dir></dir></dir></dir><file name="Setup.php" hash="8c5969ad1ffe25cc8cd65d62d3e06300"/></dir><dir name="controllers"><file name="CheckoutController.php" hash="88968cc7d0405848377e276c4175fe6c"/><file name="MspPaymentController.php" hash="44a4467fc3fb28c033c278c22f05fd3e"/><file name="StandardController.php" hash="d7c8a205382736fbf099be095f230466"/></dir><dir name="etc"><file name="adminhtml.xml" hash="d2152b4d830385e427fce8d36a56cba6"/><file name="config.xml" hash="9647bc427932322d057921293f24e3a0"/><file name="system.xml" hash="f2049cfb50c341af56e5f49c9bb2dd1b"/></dir><dir name="sql"><dir name="msp_setup"><file name="mysql4-upgrade-1.3.3-1.4.0.php" hash="f03b18f286e18dc61f6e7944d65ff871"/></dir></dir></dir></dir></target><target name="magemedia"><dir name="msp"><file name="button.png" hash="3f109b9ccbf7e26c3600d9b445bfab4f"/><dir name="de"><file name="Thumbs.db" hash="23c6d2fa586f60e64acf307d398dfeb2"/><file name="msp_amex.png" hash="a5e66b6516f80a7d8add7d59d6bf0e9d"/><file name="msp_babygiftcard.png" hash="85cb17a943036d86402bb439938cf616"/><file name="msp_banktransfer.png" hash="5993fd5deb6e184765d690c85ae7d740"/><file name="msp_boekenbon.png" hash="c69a112af5220771b4d281978cd184ba"/><file name="msp_degrotespeelgoedwinkel.png" hash="e9193002f24d2ba35afb759b5c268be5"/><file name="msp_directdebit.png" hash="38dc09ac7c4d8e32dade12ef7b24ba75"/><file name="msp_directebanking.png" hash="a3e72c2e0053b8fab500bd171e516877"/><file name="msp_ebon.png" hash="e98f08cc1108106951e01f9b186a5cdb"/><file name="msp_erotiekbon.png" hash="b3d5a2793aabcf2f9761454c0bc95ad1"/><file name="msp_fashioncheque.png" hash="b11a52ef39ae97225def18778a4be4c2"/><file name="msp_giropay.png" hash="da6c83afbcf21821ef3d88e5c955fabb"/><file name="msp_ideal.png" hash="975bc03d136c0e5a37f8d5f5a710b6c7"/><file name="msp_maestro.png" hash="94cfd9498ab1c4293099b0778c899b7b"/><file name="msp_mastercard.png" hash="dedc112da93c9aafe992b68cbe4a6051"/><file name="msp_mistercash.png" hash="c429297b30437960315df5d9b36b0118"/><file name="msp_multisafepay.png" hash="4f7ad00d5eea0113a8b52fa4ece7bf8a"/><file name="msp_parfumcadeaukaart.png" hash="270bb5bfc45a036d9b761431b540e1ad"/><file name="msp_parfumnl.png" hash="a3e69d28d44938db2fbb5a2407c76c7f"/><file name="msp_payafter.png" hash="31eab2a6944a9dc181eed046ee8ec238"/><file name="msp_paypal.png" hash="6d072cdf9a82a9f3c419ad13dbc78846"/><file name="msp_visa.png" hash="88d54fe482cd1e2f8d5857829866cc18"/><file name="msp_webgift.png" hash="cbea18654cf36cc6a743316d359a6b87"/></dir><dir name="en"><file name="Thumbs.db" hash="8631718a27c51f2a091e6e954af7f434"/><file name="msp_amex.png" hash="a5e66b6516f80a7d8add7d59d6bf0e9d"/><file name="msp_babygiftcard.png" hash="85cb17a943036d86402bb439938cf616"/><file name="msp_banktransfer.png" hash="5993fd5deb6e184765d690c85ae7d740"/><file name="msp_boekenbon.png" hash="c69a112af5220771b4d281978cd184ba"/><file name="msp_degrotespeelgoedwinkel.png" hash="e9193002f24d2ba35afb759b5c268be5"/><file name="msp_directdebit.png" hash="177fe504ef710cf5eaf42cc9592c2215"/><file name="msp_directebanking.png" hash="a3e72c2e0053b8fab500bd171e516877"/><file name="msp_ebon.png" hash="e98f08cc1108106951e01f9b186a5cdb"/><file name="msp_erotiekbon.png" hash="b3d5a2793aabcf2f9761454c0bc95ad1"/><file name="msp_fashioncheque.png" hash="b11a52ef39ae97225def18778a4be4c2"/><file name="msp_giropay.png" hash="da6c83afbcf21821ef3d88e5c955fabb"/><file name="msp_ideal.png" hash="975bc03d136c0e5a37f8d5f5a710b6c7"/><file name="msp_maestro.png" hash="94cfd9498ab1c4293099b0778c899b7b"/><file name="msp_mastercard.png" hash="dedc112da93c9aafe992b68cbe4a6051"/><file name="msp_mistercash.png" hash="c429297b30437960315df5d9b36b0118"/><file name="msp_multisafepay.png" hash="4f7ad00d5eea0113a8b52fa4ece7bf8a"/><file name="msp_parfumcadeaukaart.png" hash="270bb5bfc45a036d9b761431b540e1ad"/><file name="msp_parfumnl.png" hash="a3e69d28d44938db2fbb5a2407c76c7f"/><file name="msp_payafter.png" hash="31eab2a6944a9dc181eed046ee8ec238"/><file name="msp_paypal.png" hash="6d072cdf9a82a9f3c419ad13dbc78846"/><file name="msp_visa.png" hash="88d54fe482cd1e2f8d5857829866cc18"/><file name="msp_webgift.png" hash="cbea18654cf36cc6a743316d359a6b87"/></dir><dir name="es"><file name="Thumbs.db" hash="c67f35358ffef6d7986bb93f1e65eae6"/><file name="msp_amex.png" hash="a5e66b6516f80a7d8add7d59d6bf0e9d"/><file name="msp_babygiftcard.png" hash="85cb17a943036d86402bb439938cf616"/><file name="msp_banktransfer.png" hash="0ba666cf841114b892667331c8aaad4e"/><file name="msp_boekenbon.png" hash="c69a112af5220771b4d281978cd184ba"/><file name="msp_degrotespeelgoedwinkel.png" hash="e9193002f24d2ba35afb759b5c268be5"/><file name="msp_directdebit.png" hash="3ffde6c7a1eec68da96ea11518dfde55"/><file name="msp_directebanking.png" hash="a3e72c2e0053b8fab500bd171e516877"/><file name="msp_ebon.png" hash="e98f08cc1108106951e01f9b186a5cdb"/><file name="msp_erotiekbon.png" hash="b3d5a2793aabcf2f9761454c0bc95ad1"/><file name="msp_fashioncheque.png" hash="b11a52ef39ae97225def18778a4be4c2"/><file name="msp_giropay.png" hash="da6c83afbcf21821ef3d88e5c955fabb"/><file name="msp_ideal.png" hash="975bc03d136c0e5a37f8d5f5a710b6c7"/><file name="msp_maestro.png" hash="94cfd9498ab1c4293099b0778c899b7b"/><file name="msp_mastercard.png" hash="dedc112da93c9aafe992b68cbe4a6051"/><file name="msp_mistercash.png" hash="c429297b30437960315df5d9b36b0118"/><file name="msp_multisafepay.png" hash="4f7ad00d5eea0113a8b52fa4ece7bf8a"/><file name="msp_parfumcadeaukaart.png" hash="270bb5bfc45a036d9b761431b540e1ad"/><file name="msp_parfumnl.png" hash="a3e69d28d44938db2fbb5a2407c76c7f"/><file name="msp_payafter.png" hash="31eab2a6944a9dc181eed046ee8ec238"/><file name="msp_paypal.png" hash="6d072cdf9a82a9f3c419ad13dbc78846"/><file name="msp_visa.png" hash="88d54fe482cd1e2f8d5857829866cc18"/><file name="msp_webgift.png" hash="cbea18654cf36cc6a743316d359a6b87"/></dir><dir name="fr"><file name="Thumbs.db" hash="163c29258e74e6c5809b93399db36904"/><file name="msp_amex.png" hash="a5e66b6516f80a7d8add7d59d6bf0e9d"/><file name="msp_babygiftcard.png" hash="85cb17a943036d86402bb439938cf616"/><file name="msp_banktransfer.png" hash="87bb8916f81ed310cf5cb3aed814fb9d"/><file name="msp_boekenbon.png" hash="c69a112af5220771b4d281978cd184ba"/><file name="msp_degrotespeelgoedwinkel.png" hash="e9193002f24d2ba35afb759b5c268be5"/><file name="msp_directdebit.png" hash="f0b641efb330c71dbdbf9eb71617605f"/><file name="msp_directebanking.png" hash="a3e72c2e0053b8fab500bd171e516877"/><file name="msp_ebon.png" hash="e98f08cc1108106951e01f9b186a5cdb"/><file name="msp_erotiekbon.png" hash="b3d5a2793aabcf2f9761454c0bc95ad1"/><file name="msp_fashioncheque.png" hash="b11a52ef39ae97225def18778a4be4c2"/><file name="msp_giropay.png" hash="da6c83afbcf21821ef3d88e5c955fabb"/><file name="msp_ideal.png" hash="975bc03d136c0e5a37f8d5f5a710b6c7"/><file name="msp_maestro.png" hash="94cfd9498ab1c4293099b0778c899b7b"/><file name="msp_mastercard.png" hash="dedc112da93c9aafe992b68cbe4a6051"/><file name="msp_mistercash.png" hash="c429297b30437960315df5d9b36b0118"/><file name="msp_multisafepay.png" hash="4f7ad00d5eea0113a8b52fa4ece7bf8a"/><file name="msp_parfumcadeaukaart.png" hash="270bb5bfc45a036d9b761431b540e1ad"/><file name="msp_parfumnl.png" hash="a3e69d28d44938db2fbb5a2407c76c7f"/><file name="msp_payafter.png" hash="31eab2a6944a9dc181eed046ee8ec238"/><file name="msp_paypal.png" hash="6d072cdf9a82a9f3c419ad13dbc78846"/><file name="msp_visa.png" hash="88d54fe482cd1e2f8d5857829866cc18"/><file name="msp_webgift.png" hash="cbea18654cf36cc6a743316d359a6b87"/></dir><dir name="it"><file name="Thumbs.db" hash="06947336d2daae296c3aa6e0d0666a3e"/><file name="msp_amex.png" hash="a5e66b6516f80a7d8add7d59d6bf0e9d"/><file name="msp_babygiftcard.png" hash="85cb17a943036d86402bb439938cf616"/><file name="msp_banktransfer.png" hash="eaf1b22dbe6ad0ad3e8c7108552359ad"/><file name="msp_boekenbon.png" hash="c69a112af5220771b4d281978cd184ba"/><file name="msp_degrotespeelgoedwinkel.png" hash="e9193002f24d2ba35afb759b5c268be5"/><file name="msp_directdebit.png" hash="dfb3d359a9b48c88dc71ef65af9ea356"/><file name="msp_directebanking.png" hash="a3e72c2e0053b8fab500bd171e516877"/><file name="msp_ebon.png" hash="e98f08cc1108106951e01f9b186a5cdb"/><file name="msp_erotiekbon.png" hash="b3d5a2793aabcf2f9761454c0bc95ad1"/><file name="msp_fashioncheque.png" hash="b11a52ef39ae97225def18778a4be4c2"/><file name="msp_giropay.png" hash="da6c83afbcf21821ef3d88e5c955fabb"/><file name="msp_ideal.png" hash="975bc03d136c0e5a37f8d5f5a710b6c7"/><file name="msp_maestro.png" hash="94cfd9498ab1c4293099b0778c899b7b"/><file name="msp_mastercard.png" hash="dedc112da93c9aafe992b68cbe4a6051"/><file name="msp_mistercash.png" hash="c429297b30437960315df5d9b36b0118"/><file name="msp_multisafepay.png" hash="4f7ad00d5eea0113a8b52fa4ece7bf8a"/><file name="msp_parfumcadeaukaart.png" hash="270bb5bfc45a036d9b761431b540e1ad"/><file name="msp_parfumnl.png" hash="a3e69d28d44938db2fbb5a2407c76c7f"/><file name="msp_payafter.png" hash="31eab2a6944a9dc181eed046ee8ec238"/><file name="msp_paypal.png" hash="6d072cdf9a82a9f3c419ad13dbc78846"/><file name="msp_visa.png" hash="88d54fe482cd1e2f8d5857829866cc18"/><file name="msp_webgift.png" hash="cbea18654cf36cc6a743316d359a6b87"/></dir><dir name="nl"><file name="Thumbs.db" hash="1b02d4a7ea1014a099e3abc3fffc4902"/><file name="msp_amex.png" hash="a5e66b6516f80a7d8add7d59d6bf0e9d"/><file name="msp_babygiftcard.png" hash="85cb17a943036d86402bb439938cf616"/><file name="msp_banktransfer.png" hash="404edf4cd1e16a79e2c72db944f00ae6"/><file name="msp_boekenbon.png" hash="c69a112af5220771b4d281978cd184ba"/><file name="msp_degrotespeelgoedwinkel.png" hash="e9193002f24d2ba35afb759b5c268be5"/><file name="msp_directdebit.png" hash="df54e38016cda0b1dbd537b4784278f7"/><file name="msp_directebanking.png" hash="a3e72c2e0053b8fab500bd171e516877"/><file name="msp_ebon.png" hash="e98f08cc1108106951e01f9b186a5cdb"/><file name="msp_erotiekbon.png" hash="b3d5a2793aabcf2f9761454c0bc95ad1"/><file name="msp_fashioncheque.png" hash="b11a52ef39ae97225def18778a4be4c2"/><file name="msp_giropay.png" hash="da6c83afbcf21821ef3d88e5c955fabb"/><file name="msp_ideal.png" hash="975bc03d136c0e5a37f8d5f5a710b6c7"/><file name="msp_maestro.png" hash="94cfd9498ab1c4293099b0778c899b7b"/><file name="msp_mastercard.png" hash="dedc112da93c9aafe992b68cbe4a6051"/><file name="msp_mistercash.png" hash="c429297b30437960315df5d9b36b0118"/><file name="msp_multisafepay.png" hash="4f7ad00d5eea0113a8b52fa4ece7bf8a"/><file name="msp_parfumcadeaukaart.png" hash="270bb5bfc45a036d9b761431b540e1ad"/><file name="msp_parfumnl.png" hash="a3e69d28d44938db2fbb5a2407c76c7f"/><file name="msp_payafter.png" hash="31eab2a6944a9dc181eed046ee8ec238"/><file name="msp_paypal.png" hash="6d072cdf9a82a9f3c419ad13dbc78846"/><file name="msp_visa.png" hash="88d54fe482cd1e2f8d5857829866cc18"/><file name="msp_webgift.png" hash="cbea18654cf36cc6a743316d359a6b87"/></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="msp"><file name="agreements.phtml" hash="58542fd356d03353f4aee5d4d60590ac"/><file name="bno.phtml" hash="545e7d7cba9acb1a8e6fbb2cdd0375d2"/><file name="default.phtml" hash="be9554f94b75fc463a4af89a73a57cd3"/><file name="gateways.phtml" hash="6ccde89c2c88e42bbb35698181bcfe1b"/><file name="idealissuers.phtml" hash="4b3f1ae74889f7cbb01fd7bac261b09f"/><file name="link.phtml" hash="8c9ad5857d781e46dfc63a5f1ddecd7f"/><file name="linkText.phtml" hash="1146e6323f40228a7b17131dc5f38cf4"/></dir></dir><dir name="layout"><file name="msp.xml" hash="dd0c1df88dbc8d930d3137a60e3dd0ce"/></dir></dir></dir></dir></target><target name="mage"><dir name="lib"><dir name="multisafepay"><file name="MultiSafepay.combined.php" hash="aa05f95ad18666c359d66226ff75f5c9"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="MultiSafepay_Msp.xml" hash="683763d13d6cb6576fb11800071afdb8"/></dir></target><target name="magelocale"><dir name="nl_NL"><file name="MultiSafepay_Msp.csv" hash="e0d714d496d4bc38870dc99291135d7b"/></dir><dir name="de_DE"><file name="MultiSafepay_Msp.csv" hash="29cdb944264f3c63c902b2935053ca3d"/></dir><dir name="en_EN"><file name="MultiSafepay_Msp.csv" hash="2a7d5d59003795d4425e6798b5c969d8"/></dir><dir name="es_ES"><file name="MultiSafepay_Msp.csv" hash="bc9840596c8c2b6310d9991228cd8283"/></dir><dir name="fr_FR"><file name="MultiSafepay_Msp.csv" hash="4d6c7b2ef84efb6ad9cb306ee61653ab"/></dir><dir name="it_IT"><file name="MultiSafepay_Msp.csv" hash="63d475b696ef2ae72e51b292e8b674ef"/></dir></target></contents>
16
  <compatible/>
17
+ <dependencies><required><php><min>5.2.13</min><max>5.6.1</max></php></required></dependencies>
18
  </package>