Smart2Pay - Version 1.1.2

Version Notes

- Updated Dineromail logo
- Changed Glupay to Trustly
- Changed WebToPay to Paysera
- Changed eBanka to ePlatby for eKonto
- Changed DirectEBanking to Sofort Banking and added Italy and Austria
- Added Smart2Pay cards
- Removed Argentina
- Added Trustpay payment method id Bulgaria, CZ, Estonia, Hungary, Romania, Slovenia, Slovakia
- Removed Mozca in Brazil, Chile, Colombia
- Added Tenpay payment method in China
- Removed MTS, Beeline, Megafon from Kazakhstan
- Removed Paysafecard in Poland
- Removed WebMoney in Russia
- Added Qiwi wallet in Ukraine
- Now Magento sends e-mail on order creation right before redirect to Smart2Pay
- Fixed problem with high amounts experienced on some locales
- Changed the final redirect pages. Now the final redirect from Smart2Pay back to Magento shop is done on the default final checkout page adding the custom messages depending on the redirection status.

Download this release

Release Info

Developer Stefan Iancu
Extension Smart2Pay
Version 1.1.2
Comparing to
See all releases


Code changes from version 1.1.1 to 1.1.2

app/code/community/Smart2Pay/Globalpay/Block/Paymethod/Sendform.php CHANGED
@@ -68,9 +68,20 @@ class Smart2Pay_Globalpay_Block_Paymethod_Sendform extends Mage_Core_Block_Templ
68
  $this->form_data['hash'] = Mage::helper('globalpay/helper')->computeSHA256Hash($messageToHash);
69
 
70
  //
71
- $this->message_to_hash = $messageToHash;
72
- $this->hash = $this->form_data['hash'];
73
  //
 
 
 
 
 
 
 
 
 
 
 
74
  }
75
  }
76
  ?>
68
  $this->form_data['hash'] = Mage::helper('globalpay/helper')->computeSHA256Hash($messageToHash);
69
 
70
  //
71
+ $this->message_to_hash = $messageToHash;
72
+ $this->hash = $this->form_data['hash'];
73
  //
74
+
75
+ //send e-mail to customer about order creation before redirect to Smart2Pay
76
+ try{
77
+ $order = new Mage_Sales_Model_Order();
78
+ $incrementId = Mage::getSingleton('checkout/session')->getLastRealOrderId();
79
+ $order->loadByIncrementId($incrementId);
80
+ $order->sendNewOrderEmail();
81
+ }
82
+ catch (Exception $ex) {
83
+ }
84
+
85
  }
86
  }
87
  ?>
app/code/community/Smart2Pay/Globalpay/controllers/IndexController.php CHANGED
@@ -66,12 +66,8 @@ class Smart2pay_Globalpay_IndexController extends Mage_Core_Controller_Front_Act
66
  $orderAmount = number_format($order->getGrandTotal(), 2, '.', '') * 100;
67
  $orderCurrency = $order->getOrderCurrency()->getCurrencyCode();
68
 
69
- if($orderAmount != $response['Amount'] || $orderCurrency != $response['Currency']){
70
- $order->addStatusHistoryComment('Smart2Pay :: notification has different amount and/or currency!. Please contact support@smart2pay.com', $payMethod->method_config['order_status_on_4']);
71
- }
72
- else{
73
-
74
- $order->addStatusHistoryComment('Smart2Pay :: order has been paid. [MethodID:'. $response['MethodID'] .']', $payMethod->method_config['order_status_on_2']);
75
  if ($payMethod->method_config['auto_invoice']) {
76
  // Create and pay Order Invoice
77
  if($order->canInvoice()) {
@@ -103,6 +99,9 @@ class Smart2pay_Globalpay_IndexController extends Mage_Core_Controller_Front_Act
103
  $this->informCustomer($order, $response['Amount'], $response['Currency']);
104
  }
105
  }
 
 
 
106
  break;
107
  // Status = canceled
108
  case 3:
@@ -205,11 +204,33 @@ class Smart2pay_Globalpay_IndexController extends Mage_Core_Controller_Front_Act
205
 
206
  public function infoAction()
207
  {
 
 
 
208
  $query = $this->getRequest()->getParams();
209
  if (!isset($query['data'])) {
210
  $this->_redirectUrl(Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK));
211
  }
212
- $this->loadLayout();
213
- $this->renderLayout();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  }
 
215
  }
66
  $orderAmount = number_format($order->getGrandTotal(), 2, '.', '') * 100;
67
  $orderCurrency = $order->getOrderCurrency()->getCurrencyCode();
68
 
69
+ if( strcmp($orderAmount,$response['Amount']) == 0 && $orderCurrency == $response['Currency']){
70
+ $order->addStatusHistoryComment('Smart2Pay :: order has been paid. [MethodID:'. $response['MethodID'] .']', $payMethod->method_config['order_status_on_2'] );
 
 
 
 
71
  if ($payMethod->method_config['auto_invoice']) {
72
  // Create and pay Order Invoice
73
  if($order->canInvoice()) {
99
  $this->informCustomer($order, $response['Amount'], $response['Currency']);
100
  }
101
  }
102
+ else{
103
+ $order->addStatusHistoryComment('Smart2Pay :: notification has different amount['.$orderAmount.'/'.$response['Amount'] . '] and/or currency['.$orderCurrency.'/' . $response['Currency'] . ']!. Please contact support@smart2pay.com', $payMethod->method_config['order_status_on_4']);
104
+ }
105
  break;
106
  // Status = canceled
107
  case 3:
204
 
205
  public function infoAction()
206
  {
207
+ // $this->loadLayout();
208
+ // $this->renderLayout();
209
+
210
  $query = $this->getRequest()->getParams();
211
  if (!isset($query['data'])) {
212
  $this->_redirectUrl(Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK));
213
  }
214
+
215
+ $paymethod = Mage::getModel('globalpay/pay');
216
+ $query = $this->getRequest()->getQuery();
217
+ $data = $query['data'];
218
+
219
+ if ($data == 2){
220
+ Mage::getSingleton('checkout/session')->addSuccess($paymethod->method_config['message_data_' . $data]);
221
+ session_write_close();
222
+ $this->_redirect('checkout/onepage/success');
223
+ }
224
+ else if (in_array($data, array(3, 4))) {
225
+ Mage::getSingleton('checkout/session')->addError($paymethod->method_config['message_data_' . $data]);
226
+ session_write_close();
227
+ $this->_redirect('checkout/cart');
228
+ }
229
+ else {
230
+ Mage::getSingleton('checkout/session')->addSuccess($paymethod->method_config['message_data_7']);
231
+ session_write_close();
232
+ $this->_redirect('checkout/onepage/success');
233
+ }
234
  }
235
+
236
  }
app/code/community/Smart2Pay/Globalpay/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Smart2Pay_Globalpay>
5
- <version>1.1.1</version>
6
  </Smart2Pay_Globalpay>
7
  </modules>
8
  <frontend>
@@ -101,7 +101,7 @@
101
  <title>Alternative payment methods</title>
102
  <post_url_live>https://api.smart2pay.com</post_url_live>
103
  <post_url_test>https://apitest.smart2pay.com</post_url_test>
104
- <methods>1,2,3,4,5,8,9,12,13,14,18,19,20,22,23,24,25,27,28,29,32,33,34,35,36,37,40,42,43,44,46,47,48,49,52,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1033,1034,1035,1036,1037,1038</methods>
105
  <allowspecific>0</allowspecific>
106
  <autoselect_s2p>1</autoselect_s2p>
107
  <send_country>1</send_country>
2
  <config>
3
  <modules>
4
  <Smart2Pay_Globalpay>
5
+ <version>1.1.2</version>
6
  </Smart2Pay_Globalpay>
7
  </modules>
8
  <frontend>
101
  <title>Alternative payment methods</title>
102
  <post_url_live>https://api.smart2pay.com</post_url_live>
103
  <post_url_test>https://apitest.smart2pay.com</post_url_test>
104
+ <methods>>1,2,3,4,5,8,9,12,13,14,18,19,20,22,23,24,25,27,28,29,32,33,34,35,36,37,40,42,43,44,46,47,48,49,62,63,66,67,69,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1033,1034,1035,1036,1037,1038</methods>
105
  <allowspecific>0</allowspecific>
106
  <autoselect_s2p>1</autoselect_s2p>
107
  <send_country>1</send_country>
app/code/community/Smart2Pay/Globalpay/sql/globalpay_setup/mysql4-upgrade-1.1.1-1.1.2.php ADDED
@@ -0,0 +1,574 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ //die('Trying to setup Smart2Pay_Globalpay database');
3
+
4
+ $installer = $this;
5
+ $installer->startSetup();
6
+ $installer->run("
7
+
8
+ DROP TABLE IF EXISTS `{$installer->getTable('globalpay/logger')}`;
9
+ CREATE TABLE IF NOT EXISTS `{$installer->getTable('globalpay/logger')}` (
10
+ `log_id` int(11) NOT NULL auto_increment,
11
+ `log_type` varchar(255) collate utf8_unicode_ci default NULL,
12
+ `log_message` text collate utf8_unicode_ci default NULL,
13
+ `log_source_file` varchar(255) collate utf8_unicode_ci default NULL,
14
+ `log_source_file_line` varchar(255) collate utf8_unicode_ci default NULL,
15
+ `log_created` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
16
+ PRIMARY KEY (`log_id`)
17
+ ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
18
+
19
+ DROP TABLE IF EXISTS `{$installer->getTable('globalpay/method')}`;
20
+ CREATE TABLE IF NOT EXISTS `{$installer->getTable('globalpay/method')}` (
21
+ `method_id` int(11) NOT NULL auto_increment,
22
+ `display_name` varchar(255) collate utf8_unicode_ci default NULL,
23
+ `provider_value` varchar(255) collate utf8_unicode_ci default NULL,
24
+ `description` text collate utf8_unicode_ci,
25
+ `logo_url` varchar(255) collate utf8_unicode_ci default NULL,
26
+ `guaranteed` int(1) default NULL,
27
+ `active` int(1) default NULL,
28
+ PRIMARY KEY (`method_id`)
29
+ ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
30
+ INSERT INTO `{$installer->getTable('globalpay/method')}` (`method_id`, `display_name`, `provider_value`, `description`, `logo_url`, `guaranteed`, `active`) VALUES
31
+ (1, 'Bank Transfer', 'banktransfer', 'Bank Transfer description', 'bank_transfer_logo_v5.gif', 1, 1),
32
+ (2, 'iDEAL', 'ideal', 'iDEAL description', 'ideal.jpg', 1, 1),
33
+ (3, 'MrCash', 'mrcash', 'MrCash description', 'mrcash.gif', 1, 1),
34
+ (4, 'Giropay', 'giropay', 'Giropay description', 'giropay.gif', 1, 1),
35
+ (5, 'EPS', 'eps', 'EPS description', 'eps-e-payment-standard.gif', 1, 1),
36
+ (8, 'UseMyFunds', 'umb', 'UseMyFunds description', 'umb.gif', 1, 1),
37
+ (9, 'Sofort Banking', 'dp24', 'Sofort Banking description', 'dp24_sofort.gif', 0, 1),
38
+ (12, 'Przelewy24', 'p24', 'Przelewy24 description', 'p24.gif', 1, 1),
39
+ (13, 'OneCard', 'onecard', 'OneCard description', 'onecard.gif', 1, 1),
40
+ (14, 'CashU', 'cashu', 'CashU description', 'cashu.gif', 1, 1),
41
+ (18, 'POLi', 'poli', 'POLi description', 'poli.gif', 0, 1),
42
+ (19, 'DineroMail', 'dineromail', 'DineroMail description', 'dineromail_v2.gif', 0, 1),
43
+ (20, 'Multibanco SIBS', 'sibs', 'Multibanco SIBS description', 'sibs_mb.gif', 1, 1),
44
+ (22, 'Moneta Wallet', 'moneta', 'Moneta Wallet description', 'moneta_v2.gif', 1, 1),
45
+ (23, 'Paysera', 'paysera', 'Paysera description', 'paysera.gif', 1, 1),
46
+ (24, 'Alipay', 'alipay', 'Alipay description', 'alipay.jpg', 1, 1),
47
+ (25, 'Abaqoos', 'abaqoos', 'Abaqoos description', 'abaqoos.gif', 1, 1),
48
+ (27, 'ePlatby for eKonto', 'ebanka', 'eBanka description', 'eKonto.gif', 1, 1),
49
+ (28, 'Ukash', 'ukash', 'Ukash description', 'ukash.gif', 1, 1),
50
+ (29, 'Trustly', 'trustly', 'Trustly description', 'trustly.png', 1, 1),
51
+ (32, 'Debito Banco do Brasil', 'debitobdb', 'Debito Banco do Brasil description', 'banco_do_brasil.jpg', 1, 1),
52
+ (33, 'CuentaDigital', 'cuentadigital', 'CuentaDigital description', 'cuentadigital.gif', 1, 1),
53
+ (34, 'CardsBrazil', 'cardsbrl', 'CardsBrazil description', 'cards_brl.gif', 0, 1),
54
+ (35, 'PaysBuy', 'paysbuy', 'PaysBuy description', 'paysbuy.gif', 0, 1),
55
+ (36, 'Mazooma', 'mazooma', 'Mazooma description', 'mazooma.gif', 0, 1),
56
+ (37, 'eNETS Debit', 'enets', 'eNETS Debit description', 'enets.gif', 1, 1),
57
+ (40, 'Paysafecard', 'paysafecard', 'Paysafecard description', 'paysafecard.gif', 1, 1),
58
+ (42, 'PayPal', 'paypal', 'PayPal description', 'paypal.jpg', 1, 0),
59
+ (43, 'PagTotal', 'pagtotal', 'PagTotal description', 'pagtotal.jpg', 0, 1),
60
+ (44, 'Payeasy', 'payeasy', 'Payeasy description', 'payeasy.gif', 1, 1),
61
+ (46, 'MercadoPago', 'mercadopago', 'MercadoPago description', 'mercadopago.jpg', 0, 1),
62
+ (47, 'Mozca', 'mozca', 'Mozca description', 'mozca.jpg', 0, 1),
63
+ (49, 'ToditoCash', 'toditocash', 'ToditoCash description', 'todito_cash.gif', 1, 1),
64
+ (58, 'PayWithMyBank', 'pwmb', 'PayWithMyBank description', 'pwmb.png', 1 , 1),
65
+ (62, 'Tenpay','tenpay','Tenpay description','tenpay.gif',1,1),
66
+ (63, 'TrustPay', 'trustpay','TrustPay description', 'trustpay.png', 1 , 1),
67
+ (64, 'MangirKart', 'mangirkart', 'MangirKart description', 'mangirkart.jpg', 1, 1),
68
+ (66, 'MTCPay', 'mtcpay', 'MTCPay description', 'mtcpay.png', 1, 1),
69
+ (67, 'DragonPay', 'dragonpay', 'DragonPay description', 'dragonpay.jpg', 1 , 1),
70
+ (69, 'Credit Card', 's2pcards', 'S2PCards Description', 's2pcards.jpg', 0,1),
71
+ (1000, 'Boleto', 'paganet', 'Boleto description', 'boleto.jpg', 1, 1),
72
+ (1001, 'Debito', 'paganet', 'Debito description', 'debito_bradesco.jpg', 1, 1),
73
+ (1002, 'Transferencia', 'paganet', 'Transferencia description', 'bradesco_transferencia.jpg', 1, 1),
74
+ (1003, 'QIWI Wallet', 'qiwi', 'QIWI Wallet description', 'qiwi_wallet_v2.gif', 1, 1),
75
+ (1004, 'Beeline', 'qiwi', 'Beeline description', 'beeline.gif', 1, 1),
76
+ (1005, 'Megafon', 'qiwi', 'Megafon description', 'megafon_v1.gif', 1, 1),
77
+ (1006, 'MTS', 'qiwi', 'MTS description', 'mts.gif', 1, 1),
78
+ (1007, 'WebMoney', 'moneta', 'WebMoney description', 'webmoney_v1.gif', 1, 1),
79
+ (1008, 'Yandex', 'moneta', 'Yandex description', 'yandex_money.gif', 1, 1),
80
+ (1009, 'Alliance Online', 'asiapay', 'Alliance Online description', 'alliance_online.gif', 1, 1),
81
+ (1010, 'AmBank', 'asiapay', 'AmBank description', 'ambankgroup.gif', 1, 1),
82
+ (1011, 'CIMB Clicks', 'asiapay', 'CIMB Clicks description', 'cimb_clicks.gif', 1, 1),
83
+ (1012, 'FPX', 'asiapay', 'FPX description', 'FPX.gif', 1, 1),
84
+ (1013, 'Hong Leong Bank Transfer', 'asiapay', 'Hong Leong Bank Transfer description', 'hong_leong.gif', 1, 1),
85
+ (1014, 'Maybank2U', 'asiapay', 'Maybank2U description', 'maybank2u.gif', 1, 1),
86
+ (1015, 'Meps Cash', 'asiapay', 'Meps Cash description', 'meps_cash.gif', 1, 1),
87
+ (1016, 'Mobile Money', 'asiapay', 'Mobile Money description', 'mobile_money.gif', 1, 1),
88
+ (1017, 'RHB', 'asiapay', 'RHB description', 'rhb.gif', 1, 1),
89
+ (1018, 'Webcash', 'asiapay', 'Webcash description', 'web_cash.gif', 1, 1),
90
+ (1019, 'Credit Cards Colombia', 'pagosonline', 'Credit Cards Colombia description', 'cards_colombia.jpg', 1, 1),
91
+ (1020, 'PSE', 'pagosonline', 'PSE description', 'pse.gif', 1, 1),
92
+ (1021, 'ACH Debit', 'pagosonline', 'ACH Debit description', 'ach.gif', 1, 1),
93
+ (1022, 'Via Baloto', 'pagosonline', 'Via Baloto description', 'payment_in_cash.gif', 1, 1),
94
+ (1023, 'Referenced Payment', 'pagosonline', 'Referenced Payment description', 'payment_references.gif', 1, 1),
95
+ (1024, 'Mandiri', 'asiapay', 'Mandiri description', 'mandiri.gif', 1, 1),
96
+ (1025, 'XL Tunai', 'asiapay', 'XL Tunai description', 'XLTunai.gif', 1, 1),
97
+ (1026, 'Bancomer Pago referenciado', 'dineromaildirect', 'Bancomer Pago referenciado description', 'bancomer.gif', 1, 1),
98
+ (1027, 'Santander Pago referenciado', 'dineromaildirect', 'Santander Pago referenciado description', 'santander.gif', 1, 1),
99
+ (1028, 'ScotiaBank Pago referenciado', 'dineromaildirect', 'ScotiaBank Pago referenciado description', 'scotiabank.gif', 1, 1),
100
+ (1029, '7-Eleven Pago en efectivo', 'dineromaildirect', '7-Eleven Pago en efectivo description', '7eleven.gif', 1, 1),
101
+ (1030, 'Oxxo Pago en efectivo', 'dineromaildirect', 'Oxxo Pago en efectivo description', 'oxxo.gif', 1, 1),
102
+ (1031, 'IXE Pago referenciado', 'dineromaildirect', 'IXE Pago referenciado description', 'IXe.gif', 1, 1),
103
+ (1033, 'Cards Thailand', 'paysbuy', 'Cards Thailand description', 'cards_brl.gif', 1, 1),
104
+ (1034, 'PayPalThailand', 'paysbuy', 'PayPalThailand description', 'paypal.jpg', 1, 1),
105
+ (1035, 'AMEXThailand', 'paysbuy', 'AMEXThailand description', 'american_express.jpg', 1, 1),
106
+ (1036, 'Cash Options Thailand', 'paysbuy', 'Cash Options Thailand description', 'cash_paysbuy.jpg', 1, 1),
107
+ (1037, 'OnlineBankingThailand', 'paysbuy', 'OnlineBankingThailand description', 'onlinebankingthailand.gif', 1, 1),
108
+ (1038, 'PaysBuy Wallet', 'paysbuy', 'PaysBuy Wallet description', 'paysbuy.gif', 1, 1);
109
+
110
+ DROP TABLE IF EXISTS `{$installer->getTable('globalpay/country')}`;
111
+ CREATE TABLE IF NOT EXISTS `{$installer->getTable('globalpay/country')}` (
112
+ `country_id` int(11) NOT NULL auto_increment,
113
+ `code` varchar(3) collate utf8_unicode_ci default NULL,
114
+ `name` varchar(100) collate utf8_unicode_ci default NULL,
115
+ PRIMARY KEY (`country_id`)
116
+ ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
117
+ INSERT INTO `{$installer->getTable('globalpay/country')}` (`country_id`, `code`, `name`) VALUES
118
+ (1, 'AD', 'Andorra'),
119
+ (2, 'AE', 'United Arab Emirates'),
120
+ (3, 'AF', 'Afghanistan'),
121
+ (4, 'AG', 'Antigua and Barbuda'),
122
+ (5, 'AI', 'Anguilla'),
123
+ (6, 'AL', 'Albania'),
124
+ (7, 'AM', 'Armenia'),
125
+ (8, 'AN', 'Netherlands Antilles'),
126
+ (9, 'AO', 'Angola'),
127
+ (10, 'AQ', 'Antarctica'),
128
+ (11, 'AR', 'Argentina'),
129
+ (12, 'AS', 'American Samoa'),
130
+ (13, 'AT', 'Austria'),
131
+ (14, 'AU', 'Australia'),
132
+ (15, 'AW', 'Aruba'),
133
+ (16, 'AZ', 'Azerbaijan'),
134
+ (17, 'BA', 'Bosnia & Herzegowina'),
135
+ (18, 'BB', 'Barbados'),
136
+ (19, 'BD', 'Bangladesh'),
137
+ (20, 'BE', 'Belgium'),
138
+ (21, 'BF', 'Burkina Faso'),
139
+ (22, 'BG', 'Bulgaria'),
140
+ (23, 'BH', 'Bahrain'),
141
+ (24, 'BI', 'Burundi'),
142
+ (25, 'BJ', 'Benin'),
143
+ (26, 'BM', 'Bermuda'),
144
+ (27, 'BN', 'Brunei Darussalam'),
145
+ (28, 'BO', 'Bolivia'),
146
+ (29, 'BR', 'Brazil'),
147
+ (30, 'BS', 'Bahamas'),
148
+ (31, 'BT', 'Bhutan'),
149
+ (32, 'BV', 'Bouvet Island'),
150
+ (33, 'BW', 'Botswana'),
151
+ (34, 'BY', 'Belarus (formerly known as Byelorussia)'),
152
+ (35, 'BZ', 'Belize'),
153
+ (36, 'CA', 'Canada'),
154
+ (37, 'CC', 'Cocos (Keeling) Islands'),
155
+ (38, 'CD', 'Congo, Democratic Republic of the (formerly Zalre)'),
156
+ (39, 'CF', 'Central African Republic'),
157
+ (40, 'CG', 'Congo'),
158
+ (41, 'CH', 'Switzerland'),
159
+ (42, 'CI', 'Ivory Coast (Cote d''Ivoire)'),
160
+ (43, 'CK', 'Cook Islands'),
161
+ (44, 'CL', 'Chile'),
162
+ (45, 'CM', 'Cameroon'),
163
+ (46, 'CN', 'China'),
164
+ (47, 'CO', 'Colombia'),
165
+ (48, 'CR', 'Costa Rica'),
166
+ (49, 'CS', 'Serbia and Montenegro (formerly Yugoslavia)'),
167
+ (50, 'CU', 'Cuba'),
168
+ (51, 'CV', 'Cape Verde'),
169
+ (52, 'CX', 'Christmas Island'),
170
+ (53, 'CY', 'Cyprus'),
171
+ (54, 'CZ', 'Czech Republic'),
172
+ (55, 'DE', 'Germany'),
173
+ (56, 'DJ', 'Djibouti'),
174
+ (57, 'DK', 'Denmark'),
175
+ (58, 'DM', 'Dominica'),
176
+ (59, 'DO', 'Dominican Republic'),
177
+ (60, 'DZ', 'Algeria'),
178
+ (61, 'EC', 'Ecuador'),
179
+ (62, 'EE', 'Estonia'),
180
+ (63, 'EG', 'Egypt'),
181
+ (64, 'EH', 'Western Sahara'),
182
+ (65, 'ER', 'Eritrea'),
183
+ (66, 'ES', 'Spain'),
184
+ (67, 'ET', 'Ethiopia'),
185
+ (68, 'FI', 'Finland'),
186
+ (69, 'FJ', 'Fiji Islands'),
187
+ (70, 'FK', 'Falkland Islands (Malvinas)'),
188
+ (71, 'FM', 'Micronesia, Federated States of'),
189
+ (72, 'FO', 'Faroe Islands'),
190
+ (73, 'FR', 'France'),
191
+ (74, 'FX', 'France, Metropolitan'),
192
+ (75, 'GA', 'Gabon'),
193
+ (76, 'GB', 'United Kingdom'),
194
+ (77, 'GD', 'Grenada'),
195
+ (78, 'GE', 'Georgia'),
196
+ (79, 'GF', 'French Guiana'),
197
+ (80, 'GH', 'Ghana'),
198
+ (81, 'GI', 'Gibraltar'),
199
+ (82, 'GL', 'Greenland'),
200
+ (83, 'GM', 'Gambia'),
201
+ (84, 'GN', 'Guinea'),
202
+ (85, 'GP', 'Guadeloupe'),
203
+ (86, 'GQ', 'Equatorial Guinea'),
204
+ (87, 'GR', 'Greece'),
205
+ (88, 'GS', 'South Georgia and the South Sandwich Islands'),
206
+ (89, 'GT', 'Guatemala'),
207
+ (90, 'GU', 'Guam'),
208
+ (91, 'GW', 'Guinea-Bissau'),
209
+ (92, 'GY', 'Guyana'),
210
+ (93, 'HK', 'Hong Kong'),
211
+ (94, 'HM', 'Heard and McDonald Islands'),
212
+ (95, 'HN', 'Honduras'),
213
+ (96, 'HR', 'Croatia (local name: Hrvatska)'),
214
+ (97, 'HT', 'Haiti'),
215
+ (98, 'HU', 'Hungary'),
216
+ (99, 'ID', 'Indonesia'),
217
+ (100, 'IE', 'Ireland'),
218
+ (101, 'IL', 'Israel'),
219
+ (102, 'IN', 'India'),
220
+ (103, 'IO', 'British Indian Ocean Territory'),
221
+ (104, 'IQ', 'Iraq'),
222
+ (105, 'IR', 'Iran, Islamic Republic of'),
223
+ (106, 'IS', 'Iceland'),
224
+ (107, 'IT', 'Italy'),
225
+ (108, 'JM', 'Jamaica'),
226
+ (109, 'JO', 'Jordan'),
227
+ (110, 'JP', 'Japan'),
228
+ (111, 'KE', 'Kenya'),
229
+ (112, 'KG', 'Kyrgyzstan'),
230
+ (113, 'KH', 'Cambodia (formerly Kampuchea)'),
231
+ (114, 'KI', 'Kiribati'),
232
+ (115, 'KM', 'Comoros'),
233
+ (116, 'KN', 'Saint Kitts (Christopher) and Nevis'),
234
+ (117, 'KP', 'Korea, Democratic People''s Republic of (North Korea)'),
235
+ (118, 'KR', 'Korea, Republic of (South Korea)'),
236
+ (119, 'KW', 'Kuwait'),
237
+ (120, 'KY', 'Cayman Islands'),
238
+ (121, 'KZ', 'Kazakhstan'),
239
+ (122, 'LA', 'Lao People''s Democratic Republic (formerly Laos)'),
240
+ (123, 'LB', 'Lebanon'),
241
+ (124, 'LC', 'Saint Lucia'),
242
+ (125, 'LI', 'Liechtenstein'),
243
+ (126, 'LK', 'Sri Lanka'),
244
+ (127, 'LR', 'Liberia'),
245
+ (128, 'LS', 'Lesotho'),
246
+ (129, 'LT', 'Lithuania'),
247
+ (130, 'LU', 'Luxembourg'),
248
+ (131, 'LV', 'Latvia'),
249
+ (132, 'LY', 'Libyan Arab Jamahiriya'),
250
+ (133, 'MA', 'Morocco'),
251
+ (134, 'MC', 'Monaco'),
252
+ (135, 'MD', 'Moldova, Republic of'),
253
+ (136, 'MG', 'Madagascar'),
254
+ (137, 'MH', 'Marshall Islands'),
255
+ (138, 'MK', 'Macedonia, the Former Yugoslav Republic of'),
256
+ (139, 'ML', 'Mali'),
257
+ (140, 'MM', 'Myanmar (formerly Burma)'),
258
+ (141, 'MN', 'Mongolia'),
259
+ (142, 'MO', 'Macao (also spelled Macau)'),
260
+ (143, 'MP', 'Northern Mariana Islands'),
261
+ (144, 'MQ', 'Martinique'),
262
+ (145, 'MR', 'Mauritania'),
263
+ (146, 'MS', 'Montserrat'),
264
+ (147, 'MT', 'Malta'),
265
+ (148, 'MU', 'Mauritius'),
266
+ (149, 'MV', 'Maldives'),
267
+ (150, 'MW', 'Malawi'),
268
+ (151, 'MX', 'Mexico'),
269
+ (152, 'MY', 'Malaysia'),
270
+ (153, 'MZ', 'Mozambique'),
271
+ (154, 'NA', 'Namibia'),
272
+ (155, 'NC', 'New Caledonia'),
273
+ (156, 'NE', 'Niger'),
274
+ (157, 'NF', 'Norfolk Island'),
275
+ (158, 'NG', 'Nigeria'),
276
+ (159, 'NI', 'Nicaragua'),
277
+ (160, 'NL', 'Netherlands'),
278
+ (161, 'NO', 'Norway'),
279
+ (162, 'NP', 'Nepal'),
280
+ (163, 'NR', 'Nauru'),
281
+ (164, 'NU', 'Niue'),
282
+ (165, 'NZ', 'New Zealand'),
283
+ (166, 'OM', 'Oman'),
284
+ (167, 'PA', 'Panama'),
285
+ (168, 'PE', 'Peru'),
286
+ (169, 'PF', 'French Polynesia'),
287
+ (170, 'PG', 'Papua New Guinea'),
288
+ (171, 'PH', 'Philippines'),
289
+ (172, 'PK', 'Pakistan'),
290
+ (173, 'PL', 'Poland'),
291
+ (174, 'PM', 'St Pierre and Miquelon'),
292
+ (175, 'PN', 'Pitcairn Island'),
293
+ (176, 'PR', 'Puerto Rico'),
294
+ (177, 'PT', 'Portugal'),
295
+ (178, 'PW', 'Palau'),
296
+ (179, 'PY', 'Paraguay'),
297
+ (180, 'QA', 'Qatar'),
298
+ (181, 'RE', 'R'),
299
+ (182, 'RO', 'Romania'),
300
+ (183, 'RU', 'Russian Federation'),
301
+ (184, 'RW', 'Rwanda'),
302
+ (185, 'SA', 'Saudi Arabia'),
303
+ (186, 'SB', 'Solomon Islands'),
304
+ (187, 'SC', 'Seychelles'),
305
+ (188, 'SD', 'Sudan'),
306
+ (189, 'SE', 'Sweden'),
307
+ (190, 'SG', 'Singapore'),
308
+ (191, 'SH', 'St Helena'),
309
+ (192, 'SI', 'Slovenia'),
310
+ (193, 'SJ', 'Svalbard and Jan Mayen Islands'),
311
+ (194, 'SK', 'Slovakia'),
312
+ (195, 'SL', 'Sierra Leone'),
313
+ (196, 'SM', 'San Marino'),
314
+ (197, 'SN', 'Senegal'),
315
+ (198, 'SO', 'Somalia'),
316
+ (199, 'SR', 'Suriname'),
317
+ (200, 'ST', 'Sco Tom'),
318
+ (201, 'SU', 'Union of Soviet Socialist Republics'),
319
+ (202, 'SV', 'El Salvador'),
320
+ (203, 'SY', 'Syrian Arab Republic'),
321
+ (204, 'SZ', 'Swaziland'),
322
+ (205, 'TC', 'Turks and Caicos Islands'),
323
+ (206, 'TD', 'Chad'),
324
+ (207, 'TF', 'French Southern and Antarctic Territories'),
325
+ (208, 'TG', 'Togo'),
326
+ (209, 'TH', 'Thailand'),
327
+ (210, 'TJ', 'Tajikistan'),
328
+ (211, 'TK', 'Tokelau'),
329
+ (212, 'TM', 'Turkmenistan'),
330
+ (213, 'TN', 'Tunisia'),
331
+ (214, 'TO', 'Tonga'),
332
+ (215, 'TP', 'East Timor'),
333
+ (216, 'TR', 'Turkey'),
334
+ (217, 'TT', 'Trinidad and Tobago'),
335
+ (218, 'TV', 'Tuvalu'),
336
+ (219, 'TW', 'Taiwan, Province of China'),
337
+ (220, 'TZ', 'Tanzania, United Republic of'),
338
+ (221, 'UA', 'Ukraine'),
339
+ (222, 'UG', 'Uganda'),
340
+ (223, 'UM', 'United States Minor Outlying Islands'),
341
+ (224, 'US', 'United States of America'),
342
+ (225, 'UY', 'Uruguay'),
343
+ (226, 'UZ', 'Uzbekistan'),
344
+ (227, 'VA', 'Holy See (Vatican City State)'),
345
+ (228, 'VC', 'Saint Vincent and the Grenadines'),
346
+ (229, 'VE', 'Venezuela'),
347
+ (230, 'VG', 'Virgin Islands (British)'),
348
+ (231, 'VI', 'Virgin Islands (US)'),
349
+ (232, 'VN', 'Viet Nam'),
350
+ (233, 'VU', 'Vanautu'),
351
+ (234, 'WF', 'Wallis and Futuna Islands'),
352
+ (235, 'WS', 'Samoa'),
353
+ (236, 'XO', 'West Africa'),
354
+ (237, 'YE', 'Yemen'),
355
+ (238, 'YT', 'Mayotte'),
356
+ (239, 'ZA', 'South Africa'),
357
+ (240, 'ZM', 'Zambia'),
358
+ (241, 'ZW', 'Zimbabwe'),
359
+ (242, 'PS', 'Palestinian Territory');
360
+
361
+
362
+ DROP TABLE IF EXISTS `{$installer->getTable('globalpay/countrymethod')}`;
363
+ CREATE TABLE IF NOT EXISTS `{$installer->getTable('globalpay/countrymethod')}` (
364
+ `id` int(11) NOT NULL auto_increment,
365
+ `country_id` int(11) default NULL,
366
+ `method_id` int(11) default NULL,
367
+ `priority` int(2) default NULL,
368
+ PRIMARY KEY (`id`)
369
+ ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
370
+ INSERT INTO `{$installer->getTable('globalpay/countrymethod')}` (`id`, `country_id`, `method_id`, `priority`) VALUES
371
+ (1, 2, 13, 1),
372
+ (2, 2, 14, 2),
373
+ (3, 13, 1, 5),
374
+ (4, 13, 5, 1),
375
+ (5, 13, 9, 3),
376
+ (6, 13, 28, 4),
377
+ (7, 13, 40, 2),
378
+ (8, 14, 18, 1),
379
+ (9, 14, 28, 2),
380
+ (10, 20, 1, 3),
381
+ (11, 20, 3, 1),
382
+ (12, 20, 28, 4),
383
+ (13, 20, 40, 2),
384
+ (14, 22, 63, 2),
385
+ (15, 22, 1, 1),
386
+ (16, 23, 13, 1),
387
+ (17, 23, 14, 2),
388
+ (18, 29, 32, 2),
389
+ (19, 29, 34, 3),
390
+ (20, 29, 43, 7),
391
+ (21, 29, 46, 1),
392
+ (23, 29, 1000, 4),
393
+ (24, 29, 1001, 5),
394
+ (25, 29, 1002, 6),
395
+ (925,29, 19, 8),
396
+ (26, 36, 8, 1),
397
+ (27, 36, 28, 2),
398
+ (28, 41, 1, 1),
399
+ (29, 41, 9, 2),
400
+ (30, 44, 19, 1),
401
+ (31, 46, 24, 1),
402
+ (32, 46, 28, 3),
403
+ (33, 46, 62, 2),
404
+ (34, 47, 1019, 1),
405
+ (35, 47, 1020, 2),
406
+ (36, 47, 1021, 3),
407
+ (37, 47, 1022, 4),
408
+ (38, 47, 1023, 5),
409
+ (39, 53, 13, 2),
410
+ (40, 53, 14, 3),
411
+ (41, 53, 28, 1),
412
+ (42, 54, 63, 2),
413
+ (43, 54, 1, 3),
414
+ (44, 54, 27, 1),
415
+ (45, 54, 28, 4),
416
+ (46, 55, 1, 6),
417
+ (47, 55, 4, 1),
418
+ (48, 55, 9, 2),
419
+ (49, 55, 14, 5),
420
+ (50, 55, 28, 4),
421
+ (51, 55, 40, 3),
422
+ (52, 57, 1, 2),
423
+ (53, 57, 28, 3),
424
+ (54, 57, 29, 1),
425
+ (55, 60, 14, 1),
426
+ (555, 62, 1, 5),
427
+ (57, 62, 23, 1),
428
+ (58, 62, 28, 4),
429
+ (59, 62, 29, 2),
430
+ (60, 62, 63, 3),
431
+ (61, 63, 13, 1),
432
+ (62, 63, 14, 2),
433
+ (63, 66, 1, 2),
434
+ (64, 66, 14, 4),
435
+ (65, 66, 28, 3),
436
+ (66, 66, 29, 1),
437
+ (68, 68, 1, 2),
438
+ (69, 68, 28, 3),
439
+ (70, 68, 29, 1),
440
+ (71, 73, 1, 1),
441
+ (72, 73, 14, 3),
442
+ (73, 73, 28, 4),
443
+ (74, 73, 40, 2),
444
+ (75, 76, 1, 2),
445
+ (76, 76, 40, 4),
446
+ (78, 76, 9, 1),
447
+ (79, 76, 14, 5),
448
+ (80, 76, 28, 3),
449
+ (81, 87, 28, 1),
450
+ (82, 98, 1, 4),
451
+ (83, 98, 25, 1),
452
+ (84, 98, 28, 2),
453
+ (85, 98, 63, 3),
454
+ (86, 99, 1024, 1),
455
+ (87, 99, 1025, 2),
456
+ (887, 100, 1, 2),
457
+ (888, 100, 14, 3),
458
+ (88, 100, 28, 1),
459
+ (89, 101, 13, 1),
460
+ (90, 101, 14, 2),
461
+ (91, 104, 13, 1),
462
+ (92, 104, 14, 2),
463
+ (93, 107, 1, 2),
464
+ (94, 107, 14, 5),
465
+ (994,107, 40, 1),
466
+ (995,107, 9,4),
467
+ (95, 107, 28, 3),
468
+ (96, 109, 13, 1),
469
+ (97, 109, 14, 2),
470
+ (98, 119, 13, 1),
471
+ (99, 121, 1003, 1),
472
+ (100, 123, 13, 1),
473
+ (101, 123, 14, 2),
474
+ (102, 129, 1, 3),
475
+ (103, 129, 23, 1),
476
+ (104, 129, 29, 2),
477
+ (108, 130, 1, 1),
478
+ (109, 131, 23, 1),
479
+ (110, 131, 28, 3),
480
+ (111, 131, 29, 2),
481
+ (112, 131, 14, 1),
482
+ (113, 151, 19, 2),
483
+ (114, 151, 28, 9),
484
+ (115, 151, 49, 1),
485
+ (116, 151, 1026, 3),
486
+ (117, 151, 1027, 4),
487
+ (118, 151, 1028, 5),
488
+ (119, 151, 1029, 6),
489
+ (120, 151, 1030, 7),
490
+ (121, 151, 1031, 8),
491
+ (122, 152, 1009, 1),
492
+ (123, 152, 1010, 2),
493
+ (124, 152, 1011, 3),
494
+ (125, 152, 1012, 4),
495
+ (126, 152, 1013, 5),
496
+ (127, 152, 1014, 6),
497
+ (128, 152, 1015, 7),
498
+ (129, 152, 1016, 8),
499
+ (130, 152, 1017, 9),
500
+ (131, 152, 1018, 10),
501
+ (132, 158, 14, 1),
502
+ (133, 160, 1, 5),
503
+ (134, 160, 2, 1),
504
+ (135, 160, 9, 2),
505
+ (136, 160, 28, 4),
506
+ (137, 160, 40, 3),
507
+ (138, 161, 1, 1),
508
+ (139, 161, 28, 3),
509
+ (140, 161, 29, 2),
510
+ (141, 165, 18, 2),
511
+ (142, 165, 28, 2),
512
+ (143, 166, 13, 1),
513
+ (144, 166, 14, 2),
514
+ (145, 171, 44, 1),
515
+ (146, 171, 67, 2),
516
+ (147, 173, 1, 2),
517
+ (148, 173, 12, 1),
518
+ (149, 173, 14, 4),
519
+ (150, 173, 28, 3),
520
+ (151, 177, 1, 3),
521
+ (152, 177, 14, 4),
522
+ (153, 177, 20, 1),
523
+ (154, 177, 28, 2),
524
+ (155, 242, 13, 1),
525
+ (156, 242, 14, 1),
526
+ (157, 180, 13, 1),
527
+ (158, 180, 14, 2),
528
+ (159, 182, 1, 2),
529
+ (160, 182, 40, 1),
530
+ (161, 182, 63, 3),
531
+ (162, 183, 22, 1),
532
+ (163, 183, 28, 8),
533
+ (164, 183, 1003, 2),
534
+ (165, 183, 1004, 4),
535
+ (166, 183, 1005, 5),
536
+ (167, 183, 1006, 6),
537
+ (168, 183, 1008, 3),
538
+ (169, 185, 13, 1),
539
+ (170, 185, 14, 2),
540
+ (171, 188, 14, 1),
541
+ (172, 189, 1, 2),
542
+ (173, 189, 28, 3),
543
+ (174, 189, 29, 1),
544
+ (175, 190, 37, 1),
545
+ (176, 192, 14, 3),
546
+ (177, 192, 28, 2),
547
+ (178, 192, 63, 1),
548
+ (179, 194, 1, 1),
549
+ (180, 194, 63, 2),
550
+ (181, 209, 35, 1),
551
+ (182, 209, 1033, 7),
552
+ (183, 209, 1034, 6),
553
+ (184, 209, 1035, 5),
554
+ (185, 209, 1036, 3),
555
+ (186, 209, 1037, 4),
556
+ (187, 209, 1038, 2),
557
+ (188, 213, 13, 1),
558
+ (189, 213, 14, 2),
559
+ (190, 216, 1, 1),
560
+ (191, 216, 13, 4),
561
+ (192, 216, 14, 5),
562
+ (193, 216, 28, 6),
563
+ (194, 216, 66, 2),
564
+ (195, 216, 64, 3),
565
+ (196, 221, 22, 1),
566
+ (197, 221, 28, 4),
567
+ (198, 221, 1007, 3),
568
+ (199, 221, 1008, 4),
569
+ (200, 221, 1003, 2),
570
+ (201, 224, 36, 1),
571
+ (202, 239, 28, 1);
572
+ ");
573
+ $installer->endSetup();
574
+ ?>
app/design/frontend/base/default/template/smart2pay/globalpay/paymethod/form.phtml CHANGED
@@ -50,9 +50,9 @@
50
  <?php if ($this->method_config['methods_display_mode'] == 'text'): ?>
51
  <span style='display: block; float: left;'>&raquo <?php echo $this->__($method['display_name']); ?></span>
52
  <?php elseif ($this->method_config['methods_display_mode'] == 'logo'): ?>
53
- <img alt="<?php echo $this->__($method['display_name']); ?>" height="30" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
54
  <?php else: ?>
55
- <img alt="<?php echo $this->__($method['display_name']); ?>" height="30" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
56
  <br />
57
  <span>&raquo <?php echo $this->__($method['display_name']); ?></span>
58
  <?php endif; ?>
@@ -76,9 +76,9 @@
76
  <?php if ($this->method_config['methods_display_mode'] == 'text'): ?>
77
  <span style='display: block; float: left;'>&raquo <?php echo $this->__($method['display_name']); ?></span>
78
  <?php elseif ($this->method_config['methods_display_mode'] == 'logo'): ?>
79
- <img alt="<?php echo $this->__($method['display_name']); ?>" height="30" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
80
  <?php else: ?>
81
- <img alt="<?php echo $this->__($method['display_name']); ?>" height="30" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
82
  <br />
83
  <span>&raquo <?php echo $this->__($method['display_name']); ?></span>
84
  <?php endif; ?>
@@ -109,9 +109,9 @@
109
  <?php if ($this->method_config['methods_display_mode'] == 'text'): ?>
110
  <span style='display: block; float: left;'>&raquo <?php echo $this->__($method['display_name']); ?></span>
111
  <?php elseif ($this->method_config['methods_display_mode'] == 'logo'): ?>
112
- <img alt="<?php echo $this->__($method['display_name']); ?>" height="30" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
113
  <?php else: ?>
114
- <img alt="<?php echo $this->__($method['display_name']); ?>" height="30" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
115
  <br />
116
  <span>&raquo <?php echo $this->__($method['display_name']); ?></span>
117
  <?php endif; ?>
@@ -135,9 +135,9 @@
135
  <?php if ($this->method_config['methods_display_mode'] == 'text'): ?>
136
  <span style='display: block; float: left;'>&raquo <?php echo $this->__($method['display_name']); ?></span>
137
  <?php elseif ($this->method_config['methods_display_mode'] == 'logo'): ?>
138
- <img alt="<?php echo $this->__($method['display_name']); ?>" height="30" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
139
  <?php else: ?>
140
- <img alt="<?php echo $this->__($method['display_name']); ?>" height="30" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
141
  <br />
142
  <span>&raquo <?php echo $this->__($method['display_name']); ?></span>
143
  <?php endif; ?>
@@ -152,4 +152,4 @@
152
  <?php endif; ?>
153
  </table>
154
  <?php endif; ?>
155
- </div>
50
  <?php if ($this->method_config['methods_display_mode'] == 'text'): ?>
51
  <span style='display: block; float: left;'>&raquo <?php echo $this->__($method['display_name']); ?></span>
52
  <?php elseif ($this->method_config['methods_display_mode'] == 'logo'): ?>
53
+ <img alt="<?php echo $this->__($method['display_name']); ?>" style="max-height:40px; max-width:130px;" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
54
  <?php else: ?>
55
+ <img alt="<?php echo $this->__($method['display_name']); ?>" style="max-height:40px; max-width:130px;" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
56
  <br />
57
  <span>&raquo <?php echo $this->__($method['display_name']); ?></span>
58
  <?php endif; ?>
76
  <?php if ($this->method_config['methods_display_mode'] == 'text'): ?>
77
  <span style='display: block; float: left;'>&raquo <?php echo $this->__($method['display_name']); ?></span>
78
  <?php elseif ($this->method_config['methods_display_mode'] == 'logo'): ?>
79
+ <img alt="<?php echo $this->__($method['display_name']); ?>" style="max-height:40px; max-width:130px;" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
80
  <?php else: ?>
81
+ <img alt="<?php echo $this->__($method['display_name']); ?>" style="max-height:40px; max-width:130px;" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
82
  <br />
83
  <span>&raquo <?php echo $this->__($method['display_name']); ?></span>
84
  <?php endif; ?>
109
  <?php if ($this->method_config['methods_display_mode'] == 'text'): ?>
110
  <span style='display: block; float: left;'>&raquo <?php echo $this->__($method['display_name']); ?></span>
111
  <?php elseif ($this->method_config['methods_display_mode'] == 'logo'): ?>
112
+ <img alt="<?php echo $this->__($method['display_name']); ?>" style="max-height:40px; max-width:130px;" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
113
  <?php else: ?>
114
+ <img alt="<?php echo $this->__($method['display_name']); ?>" style="max-height:40px; max-width:130px;" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
115
  <br />
116
  <span>&raquo <?php echo $this->__($method['display_name']); ?></span>
117
  <?php endif; ?>
135
  <?php if ($this->method_config['methods_display_mode'] == 'text'): ?>
136
  <span style='display: block; float: left;'>&raquo <?php echo $this->__($method['display_name']); ?></span>
137
  <?php elseif ($this->method_config['methods_display_mode'] == 'logo'): ?>
138
+ <img alt="<?php echo $this->__($method['display_name']); ?>" style="max-height:40px; max-width:130px;" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
139
  <?php else: ?>
140
+ <img alt="<?php echo $this->__($method['display_name']); ?>" style="max-height:40px; max-width:130px;" src='<?php echo $this->getSkinUrl('images/smart2pay/methods/'.$method['logo_url'])?>' />
141
  <br />
142
  <span>&raquo <?php echo $this->__($method['display_name']); ?></span>
143
  <?php endif; ?>
152
  <?php endif; ?>
153
  </table>
154
  <?php endif; ?>
155
+ </div>
app/design/frontend/base/default/template/smart2pay/globalpay/paymethod/sendform.phtml CHANGED
@@ -1,4 +1,3 @@
1
-
2
  <div style="<?php echo ($this->form_data['debug_form']) ? "display: table;" : "display: none;" ?>">
3
 
4
  <?php if($this->form_data['debug_form']): ?>
@@ -197,18 +196,19 @@
197
 
198
  function modalIframe(){
199
  jQuery("#iframe-container").css({height: jQuery('body').height()});
200
- jQuery("#iframe-container").appendTo('body').show();
 
201
  }
202
 
203
  jQuery(document).ready(function() {
204
 
205
  jQuery('#s2pform').submit(function(){
206
- modalIframe();
207
  });
208
  // autosend form if needed
209
- <?php if(!$this->form_data['debug_form']): ?>
210
- jQuery("#s2pform").submit();
211
- <?php endif; ?>
212
  // get/parse smart2pay message
213
  var onmessage = function(e) {
214
  console.log(e);
 
1
  <div style="<?php echo ($this->form_data['debug_form']) ? "display: table;" : "display: none;" ?>">
2
 
3
  <?php if($this->form_data['debug_form']): ?>
196
 
197
  function modalIframe(){
198
  jQuery("#iframe-container").css({height: jQuery('body').height()});
199
+ jQuery("#iframe-container").appendTo('body');
200
+ jQuery("#iframe-container").show();
201
  }
202
 
203
  jQuery(document).ready(function() {
204
 
205
  jQuery('#s2pform').submit(function(){
206
+ modalIframe();
207
  });
208
  // autosend form if needed
209
+ <?php if(!$this->form_data['debug_form']):?>
210
+ jQuery("#s2pform").submit();
211
+ <?php endif; ?>
212
  // get/parse smart2pay message
213
  var onmessage = function(e) {
214
  console.log(e);
app/locale/en_GB/Smart2Pay_Globalpay.csv CHANGED
@@ -1,4 +1,4 @@
1
- "Please choose one of the following payment methods.","Please choose one of the following payment methods."
2
  "If you choose to simply continue, default method will be", "If you simply choose continue, the default payment method will be"
3
  "Bank Transfer","Bank Transfer"
4
  "iDEAL","iDEAL"
@@ -6,7 +6,7 @@
6
  "Giropay","Giropay"
7
  "EPS","EPS"
8
  "UseMyFunds","UseMyFunds"
9
- "DirectEbanking","DirectEbanking"
10
  "Przelewy24","Przelewy24"
11
  "OneCard","OneCard"
12
  "CashU","CashU"
@@ -14,12 +14,12 @@
14
  "DineroMail","DineroMail"
15
  "Multibanco SIBS","Multibanco SIBS"
16
  "Moneta Wallet","Moneta Wallet"
17
- "WebToPay","WebToPay"
18
  "Alipay","Alipay"
19
  "Abaqoos","Abaqoos"
20
- "eBanka","eBanka"
21
  "Ukash","Ukash"
22
- "GluePay","GluePay"
23
  "Debito Banco do Brasil","Debito Banco do Brasil"
24
  "CuentaDigital","CuentaDigital"
25
  "CardsBrazil","CardsBrazil"
@@ -61,6 +61,7 @@
61
  "Referenced Payment","Referenced Payment"
62
  "Mandiri","Mandiri"
63
  "XLTunai", "XLTunai"
 
64
  "Bancomer Pago referenciado", "Bancomer Pago referenciado"
65
  "Santander Pago referenciado", "Santander Pago referenciado"
66
  "ScotiaBank Pago referenciado", "ScotiaBank Pago referenciado"
@@ -74,13 +75,14 @@
74
  "Cash Options Thailand", "Cash Options Thailand"
75
  "OnlineBankingThailand", "Online Banking Thailand"
76
  "PaysBuy Wallet", "PaysBuy Wallet"
 
77
  "Bank Transfer description","Bank Transfer offers you the possibility to pay locally from your own bank account. You will get a reference number and the bank account details to be able to make the payment. "
78
  "iDEAL description","iDEAL allows you to buy securely on the Internet directly from your bank account opened at one of the major Dutch banks: ING, Postbank, ABN AMRO, Rabobank and SNS Bank"
79
  "MrCash description","Bancontact/Mister Cash is the Belgium ATM card. You can pay with this card over internet, using a unique TAN (Transaction Auhorization Number). Please make sure your card is enabled for internet purchases. "
80
  "Giropay description","Giropay is an online payment method that enables you to make real time payments via internet banking. In order to use Giropay, you must have a Girokonto (Giro account at a participating Bank or Sparkasse)."
81
  "EPS description","EPS e-payment standard allows you to make real time online payments via your internet banking. The main banks where you can pay from are: Bank Austria Creditanstalt, Erste Bank Sparkasse, Raiffeisen Bank and Bawag PSK."
82
  "UseMyFunds description","UseMyFunds is secure, convenient and easy to use! It works with your existing online banking service (there is nothing to download or install on your computer). You need to register the first time you pay."
83
- "DirectEbanking description","Sofortuberweisung/DirectEbanking is an online payment method, an instant payment through a direct bank transfer from your bank account via internet banking."
84
  "Przelewy24 description","Przelewy24 is a secure and fast online payment service linked to all the major banks and payment methods in Poland. "
85
  "OneCard description","OneCard is the fastest growing Internet payment solution in the Middle East and North Africa. You could simply use Onecard prepaid cards directly or you can open an Onecard account and then reload the account. If you do not have an Onecard account click <a href=""http://www.onecard.net/customer/index.html?showRegistrationBox=true&siteLanguage=en"" target=""_blank"">here</a> to register."
86
  "CashU description","CashU is the most widely used prepaid and electronic wallet in the Middle East and North Africa (excluding credit cards).You could simply use Cashu prepaid cards directly or you can open a CashU account and then reload your account. If you do not have a CashU account click <a href=""https://www.cashu.com/CLogin/registersForm?lang=en"" target=""_blank"">here</a> to register."
@@ -88,12 +90,12 @@
88
  "DineroMail description","DineroMail is a major electronic payment system on the Latin American market that offers all of the most popular payment methods available in Argentina, Brazil, Chile, Colombia and Mexico. If you do not have a DineroMail account click <a href=""http://www.dineromail.com/"" target=""_blank"">here</a> to register."
89
  "Multibanco SIBS description","With Multibanco/SIBS you receive payment details (3 sets of digits - Entity, Reference and Value) which you can use to pay the Merchant. You can make this payment at a Multibanco ATM, internet banking or mobile phone."
90
  "Moneta Wallet description","Moneta.ru is a major electronic payment system on the Russian market that offers all of the most popular payment methods available in Russia and Ukraine. You can pay direct or via the Moneta Wallet."
91
- "WebToPay description","WebToPay is a reliable, secure and fast online system that offers all of the most popular payment methods available in the Baltic Countries. In order to use this method you need to have a WebToPay account. If you do not have a WebToPay account click <a href=""https://www.webtopay.com/registration.html"" target=""_blank"">here</a> to register."
92
  "Alipay description","You simply need to have an Alipay account and deposit money to your account: using a bank account from one of the banks that are accepted by Alipay (19 Chinese national banks) or using a credit/debit card. If you do not have an Alipay account click <a href=""https://globalprod.alipay.com/order/emailVerify.htm"" target=""_blank"">here</a> to register."
93
  "Abaqoos description","You can pay with Abaqoos via cash or internet banking from all the major banks. Only the Abaqoos vouchers registered with Smart2Pay as provider can be used for making your payment. If you do not have already an Abaqoos voucher click <a href=""https://www.abaqoos.com/PODWebAuthSite/Registration.aspx?provider=smart2pay"" target=""_blank"">here</a> to register. After you create your account please deposit money in it to be able to pay."
94
- "eBanka description","eBanka (eKonto) is an online banking service offered by Raiffeisen Bank, so to use this method you need to have an eKonto account at Raiffeisen Bank. You don"
95
  "Ukash description","Ukash voucher is a prepaid voucher you can use to pay - there are no extra fees. So, if you want to pay using Ukash voucher you simply visit your <a href=""http://www.ukash.com/global/en/where-to-get/global.aspx"" target=""_blank"">nearest store</a>. To pay you simply type in the 19 digit voucher code and the voucher value."
96
- "GluePay description","Instant Bank (former GluePay) allows you to pay online with your bank account - fast, easy and secure. Just choose your bank, follow the instructions and complete the details needed. Then confirm the payment as you normally do with your internet banking by signing with a one-time bank security code from your token and you will have completed the payment."
97
  "Debito Banco do Brasil description","Debito Banco do Brasil allows you to pay online with your bank account - fast, easy and secure. You need to have a bank account with internet banking at Banco do Brasil."
98
  "CuentaDigital description","CuentaDigital is a leading electronic wallet provider in South America that offers all of the most popular payment methods available. To purchase with this method you need to have a CuentaDigital account. Click <a href=""https://www.cuentadigital.com/area.php?name=cliente&op=new_user"" target=""_blank"">here</a>to register and then reload the account if you do not have already a CuentaDigital account."
99
  "CardsBrazil description","Please choose your card brand and enter the card details. The supported card types: Visa, MasterCard, Amex, Diners, JCB, Hipercard, Sorocred, Aura, Discover, Cabal and Argencard."
@@ -147,4 +149,6 @@
147
  "AMEXThailand description", "AMEX Thailand"
148
  "Cash Options Thailand description", "Cash Options Thailand"
149
  "OnlineBankingThailand description", "Online Banking Thailand"
150
- "PaysBuy Wallet description", "PaysBuy Wallet"
 
 
1
+ "Please choose one of the following payment methods.","Please choose one of the following payment methods."
2
  "If you choose to simply continue, default method will be", "If you simply choose continue, the default payment method will be"
3
  "Bank Transfer","Bank Transfer"
4
  "iDEAL","iDEAL"
6
  "Giropay","Giropay"
7
  "EPS","EPS"
8
  "UseMyFunds","UseMyFunds"
9
+ "Sofort Banking","Sofort Banking"
10
  "Przelewy24","Przelewy24"
11
  "OneCard","OneCard"
12
  "CashU","CashU"
14
  "DineroMail","DineroMail"
15
  "Multibanco SIBS","Multibanco SIBS"
16
  "Moneta Wallet","Moneta Wallet"
17
+ "Paysera","Paysera"
18
  "Alipay","Alipay"
19
  "Abaqoos","Abaqoos"
20
+ "ePlatby for eKonto","ePlatby for eKonto"
21
  "Ukash","Ukash"
22
+ "Trustly","Trustly"
23
  "Debito Banco do Brasil","Debito Banco do Brasil"
24
  "CuentaDigital","CuentaDigital"
25
  "CardsBrazil","CardsBrazil"
61
  "Referenced Payment","Referenced Payment"
62
  "Mandiri","Mandiri"
63
  "XLTunai", "XLTunai"
64
+ "Tenpay","Tenpay"
65
  "Bancomer Pago referenciado", "Bancomer Pago referenciado"
66
  "Santander Pago referenciado", "Santander Pago referenciado"
67
  "ScotiaBank Pago referenciado", "ScotiaBank Pago referenciado"
75
  "Cash Options Thailand", "Cash Options Thailand"
76
  "OnlineBankingThailand", "Online Banking Thailand"
77
  "PaysBuy Wallet", "PaysBuy Wallet"
78
+ "TrustPay","TrustPay"
79
  "Bank Transfer description","Bank Transfer offers you the possibility to pay locally from your own bank account. You will get a reference number and the bank account details to be able to make the payment. "
80
  "iDEAL description","iDEAL allows you to buy securely on the Internet directly from your bank account opened at one of the major Dutch banks: ING, Postbank, ABN AMRO, Rabobank and SNS Bank"
81
  "MrCash description","Bancontact/Mister Cash is the Belgium ATM card. You can pay with this card over internet, using a unique TAN (Transaction Auhorization Number). Please make sure your card is enabled for internet purchases. "
82
  "Giropay description","Giropay is an online payment method that enables you to make real time payments via internet banking. In order to use Giropay, you must have a Girokonto (Giro account at a participating Bank or Sparkasse)."
83
  "EPS description","EPS e-payment standard allows you to make real time online payments via your internet banking. The main banks where you can pay from are: Bank Austria Creditanstalt, Erste Bank Sparkasse, Raiffeisen Bank and Bawag PSK."
84
  "UseMyFunds description","UseMyFunds is secure, convenient and easy to use! It works with your existing online banking service (there is nothing to download or install on your computer). You need to register the first time you pay."
85
+ "Sofort Banking description","Sofortuberweisung/DirectEbanking is an online payment method, an instant payment through a direct bank transfer from your bank account via internet banking."
86
  "Przelewy24 description","Przelewy24 is a secure and fast online payment service linked to all the major banks and payment methods in Poland. "
87
  "OneCard description","OneCard is the fastest growing Internet payment solution in the Middle East and North Africa. You could simply use Onecard prepaid cards directly or you can open an Onecard account and then reload the account. If you do not have an Onecard account click <a href=""http://www.onecard.net/customer/index.html?showRegistrationBox=true&siteLanguage=en"" target=""_blank"">here</a> to register."
88
  "CashU description","CashU is the most widely used prepaid and electronic wallet in the Middle East and North Africa (excluding credit cards).You could simply use Cashu prepaid cards directly or you can open a CashU account and then reload your account. If you do not have a CashU account click <a href=""https://www.cashu.com/CLogin/registersForm?lang=en"" target=""_blank"">here</a> to register."
90
  "DineroMail description","DineroMail is a major electronic payment system on the Latin American market that offers all of the most popular payment methods available in Argentina, Brazil, Chile, Colombia and Mexico. If you do not have a DineroMail account click <a href=""http://www.dineromail.com/"" target=""_blank"">here</a> to register."
91
  "Multibanco SIBS description","With Multibanco/SIBS you receive payment details (3 sets of digits - Entity, Reference and Value) which you can use to pay the Merchant. You can make this payment at a Multibanco ATM, internet banking or mobile phone."
92
  "Moneta Wallet description","Moneta.ru is a major electronic payment system on the Russian market that offers all of the most popular payment methods available in Russia and Ukraine. You can pay direct or via the Moneta Wallet."
93
+ "Paysera description","Paysera is a reliable, secure and fast online system that offers all of the most popular payment methods available in the Baltic Countries. In order to use this method you need to have a Paysera account. If you do not have a Paysera account click <a href=""https://www.webtopay.com/registration.html"" target=""_blank"">here</a> to register."
94
  "Alipay description","You simply need to have an Alipay account and deposit money to your account: using a bank account from one of the banks that are accepted by Alipay (19 Chinese national banks) or using a credit/debit card. If you do not have an Alipay account click <a href=""https://globalprod.alipay.com/order/emailVerify.htm"" target=""_blank"">here</a> to register."
95
  "Abaqoos description","You can pay with Abaqoos via cash or internet banking from all the major banks. Only the Abaqoos vouchers registered with Smart2Pay as provider can be used for making your payment. If you do not have already an Abaqoos voucher click <a href=""https://www.abaqoos.com/PODWebAuthSite/Registration.aspx?provider=smart2pay"" target=""_blank"">here</a> to register. After you create your account please deposit money in it to be able to pay."
96
+ "ePlatby for eKonto description","ePlatby for eKonto is an online banking service offered by Raiffeisen Bank, so to use this method you need to have an eKonto account at Raiffeisen Bank. You don’t have to activate this service; it works automatically."
97
  "Ukash description","Ukash voucher is a prepaid voucher you can use to pay - there are no extra fees. So, if you want to pay using Ukash voucher you simply visit your <a href=""http://www.ukash.com/global/en/where-to-get/global.aspx"" target=""_blank"">nearest store</a>. To pay you simply type in the 19 digit voucher code and the voucher value."
98
+ "Trustly description","Trustly (former Instant Bank/GluePay) allows you to pay online with your bank account - fast, easy and secure. Just choose your bank, follow the instructions and complete the details needed. Then confirm the payment as you normally do with your internet banking by signing with a one-time bank security code from your token and you will have completed the payment.."
99
  "Debito Banco do Brasil description","Debito Banco do Brasil allows you to pay online with your bank account - fast, easy and secure. You need to have a bank account with internet banking at Banco do Brasil."
100
  "CuentaDigital description","CuentaDigital is a leading electronic wallet provider in South America that offers all of the most popular payment methods available. To purchase with this method you need to have a CuentaDigital account. Click <a href=""https://www.cuentadigital.com/area.php?name=cliente&op=new_user"" target=""_blank"">here</a>to register and then reload the account if you do not have already a CuentaDigital account."
101
  "CardsBrazil description","Please choose your card brand and enter the card details. The supported card types: Visa, MasterCard, Amex, Diners, JCB, Hipercard, Sorocred, Aura, Discover, Cabal and Argencard."
149
  "AMEXThailand description", "AMEX Thailand"
150
  "Cash Options Thailand description", "Cash Options Thailand"
151
  "OnlineBankingThailand description", "Online Banking Thailand"
152
+ "PaysBuy Wallet description", "PaysBuy Wallet"
153
+ "Tenpay description","Tenpay is developed by Tencent company, which owns the most popular IM in China – QQ with more than 300 million users. More than 200,000 shopping websites accept Tenpay. Tenpay is compatible with the e-banking service of major domestic banks. Users can use Tenpay to send and receive payments and withdraw money to bank account."
154
+ "TrustPay description","TrustPay facilitates a network of partner banks and bank accounts from 13 European countries to enable local and real-time bank transfers as a method of payment for local, and international, purchases. This solution allows you to pay in 11 currencies without the need to open an account with TrustPay."
app/locale/en_US/Smart2Pay_Globalpay.csv CHANGED
@@ -1,4 +1,4 @@
1
- "Please choose one of the following payment methods.","Please choose one of the following payment methods."
2
  "If you choose to simply continue, default method will be", "If you simply choose continue, the default payment method will be"
3
  "Bank Transfer","Bank Transfer"
4
  "iDEAL","iDEAL"
@@ -6,7 +6,7 @@
6
  "Giropay","Giropay"
7
  "EPS","EPS"
8
  "UseMyFunds","UseMyFunds"
9
- "DirectEbanking","DirectEbanking"
10
  "Przelewy24","Przelewy24"
11
  "OneCard","OneCard"
12
  "CashU","CashU"
@@ -14,12 +14,12 @@
14
  "DineroMail","DineroMail"
15
  "Multibanco SIBS","Multibanco SIBS"
16
  "Moneta Wallet","Moneta Wallet"
17
- "WebToPay","WebToPay"
18
  "Alipay","Alipay"
19
  "Abaqoos","Abaqoos"
20
- "eBanka","eBanka"
21
  "Ukash","Ukash"
22
- "GluePay","GluePay"
23
  "Debito Banco do Brasil","Debito Banco do Brasil"
24
  "CuentaDigital","CuentaDigital"
25
  "CardsBrazil","CardsBrazil"
@@ -74,13 +74,15 @@
74
  "Cash Options Thailand", "Cash Options Thailand"
75
  "OnlineBankingThailand", "Online Banking Thailand"
76
  "PaysBuy Wallet", "PaysBuy Wallet"
 
 
77
  "Bank Transfer description","Bank Transfer offers you the possibility to pay locally from your own bank account. You will get a reference number and the bank account details to be able to make the payment. "
78
  "iDEAL description","iDEAL allows you to buy securely on the Internet directly from your bank account opened at one of the major Dutch banks: ING, Postbank, ABN AMRO, Rabobank and SNS Bank"
79
  "MrCash description","Bancontact/Mister Cash is the Belgium ATM card. You can pay with this card over internet, using a unique TAN (Transaction Auhorization Number). Please make sure your card is enabled for internet purchases. "
80
  "Giropay description","Giropay is an online payment method that enables you to make real time payments via internet banking. In order to use Giropay, you must have a Girokonto (Giro account at a participating Bank or Sparkasse)."
81
  "EPS description","EPS e-payment standard allows you to make real time online payments via your internet banking. The main banks where you can pay from are: Bank Austria Creditanstalt, Erste Bank Sparkasse, Raiffeisen Bank and Bawag PSK."
82
  "UseMyFunds description","UseMyFunds is secure, convenient and easy to use! It works with your existing online banking service (there is nothing to download or install on your computer). You need to register the first time you pay."
83
- "DirectEbanking description","Sofortuberweisung/DirectEbanking is an online payment method, an instant payment through a direct bank transfer from your bank account via internet banking."
84
  "Przelewy24 description","Przelewy24 is a secure and fast online payment service linked to all the major banks and payment methods in Poland. "
85
  "OneCard description","OneCard is the fastest growing Internet payment solution in the Middle East and North Africa. You could simply use Onecard prepaid cards directly or you can open an Onecard account and then reload the account. If you do not have an Onecard account click <a href=""http://www.onecard.net/customer/index.html?showRegistrationBox=true&siteLanguage=en"" target=""_blank"">here</a> to register."
86
  "CashU description","CashU is the most widely used prepaid and electronic wallet in the Middle East and North Africa (excluding credit cards).You could simply use Cashu prepaid cards directly or you can open a CashU account and then reload your account. If you do not have a CashU account click <a href=""https://www.cashu.com/CLogin/registersForm?lang=en"" target=""_blank"">here</a> to register."
@@ -88,12 +90,12 @@
88
  "DineroMail description","DineroMail is a major electronic payment system on the Latin American market that offers all of the most popular payment methods available in Argentina, Brazil, Chile, Colombia and Mexico. If you do not have a DineroMail account click <a href=""http://www.dineromail.com/"" target=""_blank"">here</a> to register."
89
  "Multibanco SIBS description","With Multibanco/SIBS you receive payment details (3 sets of digits - Entity, Reference and Value) which you can use to pay the Merchant. You can make this payment at a Multibanco ATM, internet banking or mobile phone."
90
  "Moneta Wallet description","Moneta.ru is a major electronic payment system on the Russian market that offers all of the most popular payment methods available in Russia and Ukraine. You can pay direct or via the Moneta Wallet."
91
- "WebToPay description","WebToPay is a reliable, secure and fast online system that offers all of the most popular payment methods available in the Baltic Countries. In order to use this method you need to have a WebToPay account. If you do not have a WebToPay account click <a href=""https://www.webtopay.com/registration.html"" target=""_blank"">here</a> to register."
92
  "Alipay description","You simply need to have an Alipay account and deposit money to your account: using a bank account from one of the banks that are accepted by Alipay (19 Chinese national banks) or using a credit/debit card. If you do not have an Alipay account click <a href=""https://globalprod.alipay.com/order/emailVerify.htm"" target=""_blank"">here</a> to register."
93
  "Abaqoos description","You can pay with Abaqoos via cash or internet banking from all the major banks. Only the Abaqoos vouchers registered with Smart2Pay as provider can be used for making your payment. If you do not have already an Abaqoos voucher click <a href=""https://www.abaqoos.com/PODWebAuthSite/Registration.aspx?provider=smart2pay"" target=""_blank"">here</a> to register. After you create your account please deposit money in it to be able to pay."
94
- "eBanka description","eBanka (eKonto) is an online banking service offered by Raiffeisen Bank, so to use this method you need to have an eKonto account at Raiffeisen Bank. You don"
95
  "Ukash description","Ukash voucher is a prepaid voucher you can use to pay - there are no extra fees. So, if you want to pay using Ukash voucher you simply visit your <a href=""http://www.ukash.com/global/en/where-to-get/global.aspx"" target=""_blank"">nearest store</a>. To pay you simply type in the 19 digit voucher code and the voucher value."
96
- "GluePay description","Instant Bank (former GluePay) allows you to pay online with your bank account - fast, easy and secure. Just choose your bank, follow the instructions and complete the details needed. Then confirm the payment as you normally do with your internet banking by signing with a one-time bank security code from your token and you will have completed the payment."
97
  "Debito Banco do Brasil description","Debito Banco do Brasil allows you to pay online with your bank account - fast, easy and secure. You need to have a bank account with internet banking at Banco do Brasil."
98
  "CuentaDigital description","CuentaDigital is a leading electronic wallet provider in South America that offers all of the most popular payment methods available. To purchase with this method you need to have a CuentaDigital account. Click <a href=""https://www.cuentadigital.com/area.php?name=cliente&op=new_user"" target=""_blank"">here</a>to register and then reload the account if you do not have already a CuentaDigital account."
99
  "CardsBrazil description","Please choose your card brand and enter the card details. The supported card types: Visa, MasterCard, Amex, Diners, JCB, Hipercard, Sorocred, Aura, Discover, Cabal and Argencard."
@@ -147,4 +149,6 @@
147
  "AMEXThailand description", "AMEX Thailand"
148
  "Cash Options Thailand description", "Cash Options Thailand"
149
  "OnlineBankingThailand description", "Online Banking Thailand"
150
- "PaysBuy Wallet description", "PaysBuy Wallet"
 
 
1
+ "Please choose one of the following payment methods.","Please choose one of the following payment methods."
2
  "If you choose to simply continue, default method will be", "If you simply choose continue, the default payment method will be"
3
  "Bank Transfer","Bank Transfer"
4
  "iDEAL","iDEAL"
6
  "Giropay","Giropay"
7
  "EPS","EPS"
8
  "UseMyFunds","UseMyFunds"
9
+ "Sofort Banking","Sofort Banking"
10
  "Przelewy24","Przelewy24"
11
  "OneCard","OneCard"
12
  "CashU","CashU"
14
  "DineroMail","DineroMail"
15
  "Multibanco SIBS","Multibanco SIBS"
16
  "Moneta Wallet","Moneta Wallet"
17
+ "Paysera","Paysera"
18
  "Alipay","Alipay"
19
  "Abaqoos","Abaqoos"
20
+ "ePlatby for eKonto","ePlatby for eKontoa"
21
  "Ukash","Ukash"
22
+ "Trustly","Trustly"
23
  "Debito Banco do Brasil","Debito Banco do Brasil"
24
  "CuentaDigital","CuentaDigital"
25
  "CardsBrazil","CardsBrazil"
74
  "Cash Options Thailand", "Cash Options Thailand"
75
  "OnlineBankingThailand", "Online Banking Thailand"
76
  "PaysBuy Wallet", "PaysBuy Wallet"
77
+ "Tenpay","Tenpay"
78
+ "TrustPay","TrustPay"
79
  "Bank Transfer description","Bank Transfer offers you the possibility to pay locally from your own bank account. You will get a reference number and the bank account details to be able to make the payment. "
80
  "iDEAL description","iDEAL allows you to buy securely on the Internet directly from your bank account opened at one of the major Dutch banks: ING, Postbank, ABN AMRO, Rabobank and SNS Bank"
81
  "MrCash description","Bancontact/Mister Cash is the Belgium ATM card. You can pay with this card over internet, using a unique TAN (Transaction Auhorization Number). Please make sure your card is enabled for internet purchases. "
82
  "Giropay description","Giropay is an online payment method that enables you to make real time payments via internet banking. In order to use Giropay, you must have a Girokonto (Giro account at a participating Bank or Sparkasse)."
83
  "EPS description","EPS e-payment standard allows you to make real time online payments via your internet banking. The main banks where you can pay from are: Bank Austria Creditanstalt, Erste Bank Sparkasse, Raiffeisen Bank and Bawag PSK."
84
  "UseMyFunds description","UseMyFunds is secure, convenient and easy to use! It works with your existing online banking service (there is nothing to download or install on your computer). You need to register the first time you pay."
85
+ "Sofort Banking description","Sofortuberweisung/DirectEbanking is an online payment method, an instant payment through a direct bank transfer from your bank account via internet banking."
86
  "Przelewy24 description","Przelewy24 is a secure and fast online payment service linked to all the major banks and payment methods in Poland. "
87
  "OneCard description","OneCard is the fastest growing Internet payment solution in the Middle East and North Africa. You could simply use Onecard prepaid cards directly or you can open an Onecard account and then reload the account. If you do not have an Onecard account click <a href=""http://www.onecard.net/customer/index.html?showRegistrationBox=true&siteLanguage=en"" target=""_blank"">here</a> to register."
88
  "CashU description","CashU is the most widely used prepaid and electronic wallet in the Middle East and North Africa (excluding credit cards).You could simply use Cashu prepaid cards directly or you can open a CashU account and then reload your account. If you do not have a CashU account click <a href=""https://www.cashu.com/CLogin/registersForm?lang=en"" target=""_blank"">here</a> to register."
90
  "DineroMail description","DineroMail is a major electronic payment system on the Latin American market that offers all of the most popular payment methods available in Argentina, Brazil, Chile, Colombia and Mexico. If you do not have a DineroMail account click <a href=""http://www.dineromail.com/"" target=""_blank"">here</a> to register."
91
  "Multibanco SIBS description","With Multibanco/SIBS you receive payment details (3 sets of digits - Entity, Reference and Value) which you can use to pay the Merchant. You can make this payment at a Multibanco ATM, internet banking or mobile phone."
92
  "Moneta Wallet description","Moneta.ru is a major electronic payment system on the Russian market that offers all of the most popular payment methods available in Russia and Ukraine. You can pay direct or via the Moneta Wallet."
93
+ "Paysera description","Paysera is a reliable, secure and fast online system that offers all of the most popular payment methods available in the Baltic Countries. In order to use this method you need to have a Paysera account. If you do not have a Paysera account click <a href=""https://www.webtopay.com/registration.html"" target=""_blank"">here</a> to register."
94
  "Alipay description","You simply need to have an Alipay account and deposit money to your account: using a bank account from one of the banks that are accepted by Alipay (19 Chinese national banks) or using a credit/debit card. If you do not have an Alipay account click <a href=""https://globalprod.alipay.com/order/emailVerify.htm"" target=""_blank"">here</a> to register."
95
  "Abaqoos description","You can pay with Abaqoos via cash or internet banking from all the major banks. Only the Abaqoos vouchers registered with Smart2Pay as provider can be used for making your payment. If you do not have already an Abaqoos voucher click <a href=""https://www.abaqoos.com/PODWebAuthSite/Registration.aspx?provider=smart2pay"" target=""_blank"">here</a> to register. After you create your account please deposit money in it to be able to pay."
96
+ "ePlatby for eKonto description","ePlatby for eKonto is an online banking service offered by Raiffeisen Bank, so to use this method you need to have an eKonto account at Raiffeisen Bank. You don’t have to activate this service; it works automatically."
97
  "Ukash description","Ukash voucher is a prepaid voucher you can use to pay - there are no extra fees. So, if you want to pay using Ukash voucher you simply visit your <a href=""http://www.ukash.com/global/en/where-to-get/global.aspx"" target=""_blank"">nearest store</a>. To pay you simply type in the 19 digit voucher code and the voucher value."
98
+ "Trustly description","Trustly (former Instant Bank/GluePay) allows you to pay online with your bank account - fast, easy and secure. Just choose your bank, follow the instructions and complete the details needed. Then confirm the payment as you normally do with your internet banking by signing with a one-time bank security code from your token and you will have completed the payment."
99
  "Debito Banco do Brasil description","Debito Banco do Brasil allows you to pay online with your bank account - fast, easy and secure. You need to have a bank account with internet banking at Banco do Brasil."
100
  "CuentaDigital description","CuentaDigital is a leading electronic wallet provider in South America that offers all of the most popular payment methods available. To purchase with this method you need to have a CuentaDigital account. Click <a href=""https://www.cuentadigital.com/area.php?name=cliente&op=new_user"" target=""_blank"">here</a>to register and then reload the account if you do not have already a CuentaDigital account."
101
  "CardsBrazil description","Please choose your card brand and enter the card details. The supported card types: Visa, MasterCard, Amex, Diners, JCB, Hipercard, Sorocred, Aura, Discover, Cabal and Argencard."
149
  "AMEXThailand description", "AMEX Thailand"
150
  "Cash Options Thailand description", "Cash Options Thailand"
151
  "OnlineBankingThailand description", "Online Banking Thailand"
152
+ "PaysBuy Wallet description", "PaysBuy Wallet"
153
+ "Tenpay description","Tenpay is developed by Tencent company, which owns the most popular IM in China – QQ with more than 300 million users. More than 200,000 shopping websites accept Tenpay. Tenpay is compatible with the e-banking service of major domestic banks. Users can use Tenpay to send and receive payments and withdraw money to bank account."
154
+ "TrustPay description","TrustPay facilitates a network of partner banks and bank accounts from 13 European countries to enable local and real-time bank transfers as a method of payment for local, and international, purchases. This solution allows you to pay in 11 currencies without the need to open an account with TrustPay."
app/locale/es_AR/Smart2Pay_Globalpay.csv CHANGED
@@ -17,31 +17,31 @@
17
  "Referenced Payment","Referenced Payment"
18
  "Mozca","Mozca"
19
  "CuentaDigital","CuentaDigital"
20
- "GluePay","GluePay"
21
  "Bank Transfer","Bank Transfer"
22
  "CashU","CashU"
23
- "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href="http://www.toditocash.com/php/puntosventa.php" target="_blank">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href="http://www.toditocash.com/php/obtcuent.php" target="_blank">aquí</a> para registrarse."
24
  "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
  "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
- "ScotiaBank Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
  "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
  "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
  "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
- "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href="http://www.dineromail.com/" target="_blank">aquí</a> para registrarse."
31
- "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href="http://www.ukash.com/es-ES/where-to-get/" target="_blank">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
- "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href="http://www.paysafecard.com/uk/buy/" target="_blank">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
  "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
  "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
  "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
- "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href="http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html" target="_blank">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
  "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
  "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
- "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href="https://www.cuentadigital.com/area.php" target="_blank">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
- "GluePay description","Instant Bank (anteriormente GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
  "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
- "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href="https://www.cashu.com/CLogin/registersForm?lang=en" target="_blank">aquí</a> para registrarse."
43
  "Alternative payment methods","Métodos de pago alternativos"
44
  "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
45
  "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
46
  "You have canceled the payment.","Ha cancelado el pago."
47
- "Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.","Gracias, la transacción está pendiente. Después de que recibamos la confirmación final, se dará a conocer los productos."
17
  "Referenced Payment","Referenced Payment"
18
  "Mozca","Mozca"
19
  "CuentaDigital","CuentaDigital"
20
+ "Trustly","Trustly"
21
  "Bank Transfer","Bank Transfer"
22
  "CashU","CashU"
23
+ "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href=""http://www.toditocash.com/php/puntosventa.php"" target=""_blank"">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href=""http://www.toditocash.com/php/obtcuent.php"" target=""_blank"">aquí</a> para registrarse."
24
  "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
  "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
+ "ScotiaBank Pago referenciado description","Para pagar con ScotiaBank - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
  "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
  "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
  "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
+ "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href=""http://www.dineromail.com/"" target="_blank">aquí</a> para registrarse."
31
+ "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href=""http://www.ukash.com/es-ES/where-to-get/"" target=""_blank"">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
+ "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href=""http://www.paysafecard.com/uk/buy/"" target=""_blank"">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
  "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
  "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
  "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
+ "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href=""http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html"" target=""_blank"">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
  "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
  "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
+ "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href=""https://www.cuentadigital.com/area.php"" target=""_blank"">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
+ "Trustly description","Trustly (anteriormente Instant Bank/GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
  "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
+ "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href=""https://www.cashu.com/CLogin/registersForm?lang=en"" target=""_blank"">aquí</a> para registrarse."
43
  "Alternative payment methods","Métodos de pago alternativos"
44
  "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
45
  "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
46
  "You have canceled the payment.","Ha cancelado el pago."
47
+ "Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.","Gracias, la transacción está pendiente. Después de que recibamos la confirmación final, se dará a conocer los productos."
app/locale/es_CL/Smart2Pay_Globalpay.csv CHANGED
@@ -17,31 +17,31 @@
17
  "Referenced Payment","Referenced Payment"
18
  "Mozca","Mozca"
19
  "CuentaDigital","CuentaDigital"
20
- "GluePay","GluePay"
21
  "Bank Transfer","Bank Transfer"
22
  "CashU","CashU"
23
- "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href="http://www.toditocash.com/php/puntosventa.php" target="_blank">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href="http://www.toditocash.com/php/obtcuent.php" target="_blank">aquí</a> para registrarse."
24
  "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
  "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
- "ScotiaBank Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
  "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
  "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
  "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
- "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href="http://www.dineromail.com/" target="_blank">aquí</a> para registrarse."
31
- "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href="http://www.ukash.com/es-ES/where-to-get/" target="_blank">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
- "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href="http://www.paysafecard.com/uk/buy/" target="_blank">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
  "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
  "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
  "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
- "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href="http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html" target="_blank">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
  "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
  "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
- "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href="https://www.cuentadigital.com/area.php" target="_blank">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
- "GluePay description","Instant Bank (anteriormente GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
  "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
- "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href="https://www.cashu.com/CLogin/registersForm?lang=en" target="_blank">aquí</a> para registrarse."
43
  "Alternative payment methods","Métodos de pago alternativos"
44
  "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
45
  "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
46
  "You have canceled the payment.","Ha cancelado el pago."
47
- "Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.","Gracias, la transacción está pendiente. Después de que recibamos la confirmación final, se dará a conocer los productos."
17
  "Referenced Payment","Referenced Payment"
18
  "Mozca","Mozca"
19
  "CuentaDigital","CuentaDigital"
20
+ "Trustly","Trustly"
21
  "Bank Transfer","Bank Transfer"
22
  "CashU","CashU"
23
+ "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href=""http://www.toditocash.com/php/puntosventa.php"" target=""_blank"">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href=""http://www.toditocash.com/php/obtcuent.php"" target=""_blank"">aquí</a> para registrarse."
24
  "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
  "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
+ "ScotiaBank Pago referenciado description","Para pagar con ScotiaBank - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
  "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
  "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
  "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
+ "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href=""http://www.dineromail.com/"" target="_blank">aquí</a> para registrarse."
31
+ "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href=""http://www.ukash.com/es-ES/where-to-get/"" target=""_blank"">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
+ "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href=""http://www.paysafecard.com/uk/buy/"" target=""_blank"">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
  "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
  "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
  "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
+ "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href=""http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html"" target=""_blank"">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
  "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
  "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
+ "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href=""https://www.cuentadigital.com/area.php"" target=""_blank"">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
+ "Trustly description","Trustly (anteriormente Instant Bank/GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
  "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
+ "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href=""https://www.cashu.com/CLogin/registersForm?lang=en"" target=""_blank"">aquí</a> para registrarse."
43
  "Alternative payment methods","Métodos de pago alternativos"
44
  "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
45
  "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
46
  "You have canceled the payment.","Ha cancelado el pago."
47
+ "Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.","Gracias, la transacción está pendiente. Después de que recibamos la confirmación final, se dará a conocer los productos."
app/locale/es_CO/Smart2Pay_Globalpay.csv CHANGED
@@ -17,31 +17,31 @@
17
  "Referenced Payment","Referenced Payment"
18
  "Mozca","Mozca"
19
  "CuentaDigital","CuentaDigital"
20
- "GluePay","GluePay"
21
  "Bank Transfer","Bank Transfer"
22
  "CashU","CashU"
23
- "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href="http://www.toditocash.com/php/puntosventa.php" target="_blank">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href="http://www.toditocash.com/php/obtcuent.php" target="_blank">aquí</a> para registrarse."
24
  "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
  "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
- "ScotiaBank Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
  "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
  "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
  "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
- "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href="http://www.dineromail.com/" target="_blank">aquí</a> para registrarse."
31
- "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href="http://www.ukash.com/es-ES/where-to-get/" target="_blank">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
- "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href="http://www.paysafecard.com/uk/buy/" target="_blank">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
  "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
  "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
  "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
- "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href="http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html" target="_blank">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
  "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
  "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
- "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href="https://www.cuentadigital.com/area.php" target="_blank">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
- "GluePay description","Instant Bank (anteriormente GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
  "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
- "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href="https://www.cashu.com/CLogin/registersForm?lang=en" target="_blank">aquí</a> para registrarse."
43
  "Alternative payment methods","Métodos de pago alternativos"
44
  "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
45
  "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
46
  "You have canceled the payment.","Ha cancelado el pago."
47
- "Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.","Gracias, la transacción está pendiente. Después de que recibamos la confirmación final, se dará a conocer los productos."
17
  "Referenced Payment","Referenced Payment"
18
  "Mozca","Mozca"
19
  "CuentaDigital","CuentaDigital"
20
+ "Trustly","Trustly"
21
  "Bank Transfer","Bank Transfer"
22
  "CashU","CashU"
23
+ "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href=""http://www.toditocash.com/php/puntosventa.php"" target=""_blank"">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href=""http://www.toditocash.com/php/obtcuent.php"" target=""_blank"">aquí</a> para registrarse."
24
  "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
  "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
+ "ScotiaBank Pago referenciado description","Para pagar con ScotiaBank - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
  "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
  "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
  "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
+ "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href=""http://www.dineromail.com/"" target="_blank">aquí</a> para registrarse."
31
+ "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href=""http://www.ukash.com/es-ES/where-to-get/"" target=""_blank"">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
+ "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href=""http://www.paysafecard.com/uk/buy/"" target=""_blank"">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
  "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
  "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
  "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
+ "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href=""http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html"" target=""_blank"">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
  "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
  "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
+ "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href=""https://www.cuentadigital.com/area.php"" target=""_blank"">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
+ "Trustly description","Trustly (anteriormente Instant Bank/GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
  "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
+ "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href=""https://www.cashu.com/CLogin/registersForm?lang=en"" target=""_blank"">aquí</a> para registrarse."
43
  "Alternative payment methods","Métodos de pago alternativos"
44
  "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
45
  "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
46
  "You have canceled the payment.","Ha cancelado el pago."
47
+ "Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.","Gracias, la transacción está pendiente. Después de que recibamos la confirmación final, se dará a conocer los productos."
app/locale/es_ES/Smart2Pay_Globalpay.csv CHANGED
@@ -17,30 +17,30 @@
17
  "Referenced Payment","Referenced Payment"
18
  "Mozca","Mozca"
19
  "CuentaDigital","CuentaDigital"
20
- "GluePay","GluePay"
21
  "Bank Transfer","Bank Transfer"
22
  "CashU","CashU"
23
- "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href="http://www.toditocash.com/php/puntosventa.php" target="_blank">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href="http://www.toditocash.com/php/obtcuent.php" target="_blank">aquí</a> para registrarse."
24
  "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
  "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
- "ScotiaBank Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
  "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
  "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
  "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
- "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href="http://www.dineromail.com/" target="_blank">aquí</a> para registrarse."
31
- "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href="http://www.ukash.com/es-ES/where-to-get/" target="_blank">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
- "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href="http://www.paysafecard.com/uk/buy/" target="_blank">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
  "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
  "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
  "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
- "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href="http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html" target="_blank">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
  "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
  "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
- "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href="https://www.cuentadigital.com/area.php" target="_blank">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
- "GluePay description","Instant Bank (anteriormente GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
  "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
- "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href="https://www.cashu.com/CLogin/registersForm?lang=en" target="_blank">aquí</a> para registrarse."
43
- "Alternative payment methods ","Métodos de pago alternativos"
44
  "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
45
  "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
46
  "You have canceled the payment.","Ha cancelado el pago."
17
  "Referenced Payment","Referenced Payment"
18
  "Mozca","Mozca"
19
  "CuentaDigital","CuentaDigital"
20
+ "Trustly","Trustly"
21
  "Bank Transfer","Bank Transfer"
22
  "CashU","CashU"
23
+ "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href=""http://www.toditocash.com/php/puntosventa.php"" target=""_blank"">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href=""http://www.toditocash.com/php/obtcuent.php"" target=""_blank"">aquí</a> para registrarse."
24
  "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
  "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
+ "ScotiaBank Pago referenciado description","Para pagar con ScotiaBank - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
  "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
  "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
  "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
+ "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href=""http://www.dineromail.com/"" target="_blank">aquí</a> para registrarse."
31
+ "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href=""http://www.ukash.com/es-ES/where-to-get/"" target=""_blank"">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
+ "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href=""http://www.paysafecard.com/uk/buy/"" target=""_blank"">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
  "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
  "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
  "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
+ "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href=""http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html"" target=""_blank"">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
  "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
  "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
+ "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href=""https://www.cuentadigital.com/area.php"" target=""_blank"">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
+ "Trustly description","Trustly (anteriormente Instant Bank/GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
  "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
+ "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href=""https://www.cashu.com/CLogin/registersForm?lang=en"" target=""_blank"">aquí</a> para registrarse."
43
+ "Alternative payment methods","Métodos de pago alternativos"
44
  "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
45
  "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
46
  "You have canceled the payment.","Ha cancelado el pago."
app/locale/es_MX/Smart2Pay_Globalpay.csv CHANGED
@@ -1,4 +1,4 @@
1
- "Please choose one of the following payment methods.","Por favor, elija una de las siguientes formas de pago."
2
  "If you choose to simply continue, default method will be", "Si decide continuar, simplemente, el método por defecto será"
3
  "ToditoCash","ToditoCash"
4
  "Bancomer Pago referenciado","Bancomer Pago referenciado"
@@ -17,30 +17,31 @@
17
  "Referenced Payment","Referenced Payment"
18
  "Mozca","Mozca"
19
  "CuentaDigital","CuentaDigital"
20
- "GluePay","GluePay"
21
  "Bank Transfer","Bank Transfer"
22
  "CashU","CashU"
23
- "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href="http://www.toditocash.com/php/puntosventa.php" target="_blank">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href="http://www.toditocash.com/php/obtcuent.php" target="_blank">aquí</a> para registrarse."
24
  "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
  "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
- "ScotiaBank Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
  "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
  "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
  "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
- "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href="http://www.dineromail.com/" target="_blank">aquí</a> para registrarse."
31
- "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href="http://www.ukash.com/es-ES/where-to-get/" target="_blank">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
- "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href="http://www.paysafecard.com/uk/buy/" target="_blank">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
  "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
  "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
  "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
- "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href="http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html" target="_blank">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
  "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
  "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
- "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href="https://www.cuentadigital.com/area.php" target="_blank">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
- "GluePay description","Instant Bank (anteriormente GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
  "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
- "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href="https://www.cashu.com/CLogin/registersForm?lang=en" target="_blank">aquí</a> para registrarse."
 
43
  "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
44
  "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
45
  "You have canceled the payment.","Ha cancelado el pago."
46
- "Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.","Gracias, la transacción está pendiente. Después de que recibamos la confirmación final, se dará a conocer los productos."
1
+ "Please choose one of the following payment methods.","Por favor, elija una de las siguientes formas de pago."
2
  "If you choose to simply continue, default method will be", "Si decide continuar, simplemente, el método por defecto será"
3
  "ToditoCash","ToditoCash"
4
  "Bancomer Pago referenciado","Bancomer Pago referenciado"
17
  "Referenced Payment","Referenced Payment"
18
  "Mozca","Mozca"
19
  "CuentaDigital","CuentaDigital"
20
+ "Trustly","Trustly"
21
  "Bank Transfer","Bank Transfer"
22
  "CashU","CashU"
23
+ "ToditoCash description","Todito Cash es una tarjeta prepago recargable que puede utilizar para hacer pagos y puede recargarla de la misma manera que se hace con el móvil en más de 20.000 puntos, incluyendo <a href=""http://www.toditocash.com/php/puntosventa.php"" target=""_blank"">tiendas y bancos de barrio</a>. Si no tiene una cuenta Todito Cash, pulse <a href=""http://www.toditocash.com/php/obtcuent.php"" target=""_blank"">aquí</a> para registrarse."
24
  "Bancomer Pago referenciado description","Para pagar con Bancomer - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
25
  "Santander Pago referenciado description","Para pagar con Santander - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
26
+ "ScotiaBank Pago referenciado description","Para pagar con ScotiaBank - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
27
  "7-Eleven Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda 7-ELEVEN del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
28
  "Oxxo Pago en efectivo description","Imprime y presenta este comprobante en cualquier tienda Oxxo del país para realizar el pago por tu compra. Indícale al cajero de la tienda el importe exacto que figura en el presente recibo. De lo contrario es probable que no podamos acreditar correctamente la compra."
29
  "IXE Pago referenciado description","Para pagar con IXE - pago referenciado imprime y presenta los instrucciones en sucursal de los bancos. Recuerda que la referencia generada en esta ficha solo es válida para el pago en efectivo o con cheque con depósito en ventanilla de sucursal bancaria."
30
+ "DineroMail description","DineroMail es un importante sistema electrónico de pago en el mercado de América Latina que ofrece los métodos de pago más utilizados disponibles en Argentina, Brasil, Chile, Colombia y México. Si no tiene una cuenta DineroMail, pulse <a href=""http://www.dineromail.com/"" target="_blank">aquí</a> para registrarse."
31
+ "Ukash description","El cupón Ukash es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si desea pagar con un cupón Ukash, sólo tiene que visitar <a href=""http://www.ukash.com/es-ES/where-to-get/"" target=""_blank"">la tienda más cercana</a>. Para pagar, simplemente introduzca el código de 19 dígitos y la cuantía del cupón."
32
+ "Paysafecard description","El cupón Paysafecard es un cupón prepago que se puede utilizar para hacer pagos - sin costo alguno. Por lo tanto, si quiere comprar utilizando un cupón Paysafecard, sólo tienes que visitar <a href=""http://www.paysafecard.com/uk/buy/"" target=""_blank"">la tienda más cercana</a>. Seguidamente tiene que introducir el código de 16 dígitos y esto es todo – ya realizó el pago."
33
  "Credit Cards Colombia description","Por favor seleccione la marca de su tarjeta e introduzca los datos de la tarjeta. Tipos de tarjetas compatibles: Visa, MasterCard, Amex, Diners."
34
  "PSE description","(Acrónimo en español) Electronic Services Supplier (Proveedor de Servicios Electrónicos) es un servicio de ACH Colombia SA que le redirija hacia la página web del banco de su elección y luego deberá introducir su nombre de usuario, su contraseña y su número de cuenta."
35
  "ACH Debit description","ACH débito es un método de pago que permite al Comerciante cobrar fondos de su cuenta bancaria a través de su código de cuenta bancaria y su número de cuenta. Es el único que puede autorizar un débito ACH, cuando el importe autorizado se deducirá de su cuenta."
36
+ "Via Baloto description","Via Baloto es un método de pago en efectivo que se puede utilizar para hacer pagos. Recibirá un número de referencia para su pago y un número de operación. Con estos datos, puede pagar en los centros Via Baloto. Por favor, visite <a href=""http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html"" target=""_blank"">pagosonline-puntos-via-baloto</a> para la lista completa de los centros de pago."
37
  "Referenced Payment description","Referenced Payment es un método de pago en efectivo que puede utilizar para hacer pagos. Debe imprimir el cupón con el código de barras y pagarlo en una sucursal de Bancolombia, Banco de Occidente y Banco Helm."
38
  "Mozca description","El pago Mozca es muy sencillo: sólo tiene que utilizar su teléfono móvil y una contraseña de 4 dígitos para confirmar que el móvil le pertenece y que está en sus manos. Le Enviarán un código MOZCA vía SMS como confirmación de su pago."
39
+ "CuentaDigital description","CuentaDigital es un proveedor líder de monederos electrónicos de América del Sur que ofrece los métodos de pago más utilizados disponibles. Para comprar con este método, debe tener una cuenta CuentaDigital. Pulse <a href=""https://www.cuentadigital.com/area.php"" target=""_blank"">aquí</a> para registrarse y luego recargue la cuenta si aún no dispone de una cuenta CuentaDigital."
40
+ "Trustly description","Trustly (anteriormente Instant Bank/GluePay) le permite realizar pagos en línea desde su cuenta bancaria - de forma rápida, fácil y segura. Sólo tiene que elegir su banco, seguir las instrucciones y rellenar los datos necesarios. A continuación, debe confirmar el pago como lo hace normalmente con el servicio de Internet Banking, firmando por un código bancario único de seguridad a través del token, terminando de esta forma el pago."
41
  "Bank Transfer description","La transferencia bancaria (Bank Transfer) le permite pagar de forma local desde su cuenta bancaria. Rrecibirá un número de referencia y la cuenta bancaria para realizar el pago."
42
+ "CashU description","CashU es la más utilizada cartera electrónico de prepago en el Oriente Medio y África del Norte (excluyendo tarjetas de crédito). Usted puede simplemente utilizar las tarjetas de crédito de prepago CashU o puede abrir una cuenta CashU y posteriormente puede recargar su cuenta. Si no tiene una cuenta CashU, pulse <a href=""https://www.cashu.com/CLogin/registersForm?lang=en"" target=""_blank"">aquí</a> para registrarse."
43
+ "Alternative payment methods","Métodos de pago alternativos"
44
  "Thank you, the transaction has been processed successfuly. After we receive the final confirmation, we will release the goods.","Gracias, la transacción se ha procesado exitosamente. Después de que recibamos la confirmación final, se dará a conocer los productos."
45
  "There was a problem processing your payment. Please try again.","Hubo un problema al procesar su pago. Por favor, inténtelo de nuevo."
46
  "You have canceled the payment.","Ha cancelado el pago."
47
+ "Thank you, the transaction is pending. After we receive the final confirmation, we will release the goods.","Gracias, la transacción está pendiente. Después de que recibamos la confirmación final, se dará a conocer los productos."
app/locale/pt_BR/Smart2Pay_Globalpay.csv CHANGED
@@ -6,7 +6,7 @@
6
  "Giropay","Giropay"
7
  "EPS","EPS"
8
  "UseMyFunds","UseMyFunds"
9
- "DirectEbanking","DirectEbanking"
10
  "Przelewy24","Przelewy24"
11
  "OneCard","OneCard"
12
  "CashU","CashU"
@@ -14,12 +14,12 @@
14
  "DineroMail","DineroMail"
15
  "Multibanco SIBS","Multibanco SIBS"
16
  "Moneta Wallet","Moneta Wallet"
17
- "WebToPay","WebToPay"
18
  "Alipay","Alipay"
19
  "Abaqoos","Abaqoos"
20
- "eBanka","eBanka"
21
  "Ukash","Ukash"
22
- "GluePay","GluePay"
23
  "Debito Banco do Brasil","Débito Banco do Brasil"
24
  "CuentaDigital","CuentaDigital"
25
  "CardsBrazil","CardsBrazil"
@@ -74,26 +74,26 @@
74
  "Cash Options Thailand", "Cash Options Thailand"
75
  "OnlineBankingThailand", "Online Banking Thailand"
76
  "PaysBuy Wallet", "PaysBuy Wallet"
77
- "Bank Transfer description","Bank Transfer offers you the possibility to pay locally from your own bank account. You will get a reference number and the bank account details to be able to make the payment. "
78
  "iDEAL description","iDEAL allows you to buy securely on the Internet directly from your bank account opened at one of the major Dutch banks: ING, Postbank, ABN AMRO, Rabobank and SNS Bank"
79
  "MrCash description","Bancontact/Mister Cash is the Belgium ATM card. You can pay with this card over internet, using a unique TAN (Transaction Auhorization Number). Please make sure your card is enabled for internet purchases. "
80
  "Giropay description","Giropay is an online payment method that enables you to make real time payments via internet banking. In order to use Giropay, you must have a Girokonto (Giro account at a participating Bank or Sparkasse)."
81
  "EPS description","EPS e-payment standard allows you to make real time online payments via your internet banking. The main banks where you can pay from are: Bank Austria Creditanstalt, Erste Bank Sparkasse, Raiffeisen Bank and Bawag PSK."
82
  "UseMyFunds description","UseMyFunds is secure, convenient and easy to use! It works with your existing online banking service (there is nothing to download or install on your computer). You need to register the first time you pay."
83
- "DirectEbanking description","Sofortuberweisung/DirectEbanking is an online payment method, an instant payment through a direct bank transfer from your bank account via internet banking."
84
  "Przelewy24 description","Przelewy24 is a secure and fast online payment service linked to all the major banks and payment methods in Poland. "
85
  "OneCard description","OneCard is the fastest growing Internet payment solution in the Middle East and North Africa. You could simply use Onecard prepaid cards directly or you can open an Onecard account and then reload the account. If you do not have an Onecard account click <a href=""http://www.onecard.net/customer/index.html?showRegistrationBox=true&siteLanguage=en"" target=""_blank"">here</a> to register."
86
  "CashU description","CashU is the most widely used prepaid and electronic wallet in the Middle East and North Africa (excluding credit cards).You could simply use Cashu prepaid cards directly or you can open a CashU account and then reload your account. If you do not have a CashU account click <a href=""https://www.cashu.com/CLogin/registersForm?lang=en"" target=""_blank"">here</a> to register."
87
  "POLi description","POLi is an online payment service that enables you to safely pay directly from your own internet banking. In order to pay with POLi you will have to select your bank and download the POLi application."
88
  "DineroMail description","DineroMail é um sistema electrónico de pagamento capital no mercado Latino Americano que oferece todos os métodos populares de pagamento disponíveis em Argentina, Brasil,Chile, Colômbia e Mexico. Se não tiver uma conta DineroMail faça clique <a href=""http://www.dineromail.com/"" target=""_blank"">aqui</a> para se registar."
89
- "Multibanco SIBS description","With Multibanco/SIBS you receive payment details (3 sets of digits - Entity, Reference and Value) which you can use to pay the Merchant. You can make this payment at a Multibanco ATM, internet banking or mobile phone."
90
  "Moneta Wallet description","Moneta.ru is a major electronic payment system on the Russian market that offers all of the most popular payment methods available in Russia and Ukraine. You can pay direct or via the Moneta Wallet."
91
- "WebToPay description","WebToPay is a reliable, secure and fast online system that offers all of the most popular payment methods available in the Baltic Countries. In order to use this method you need to have a WebToPay account. If you do not have a WebToPay account click <a href=""https://www.webtopay.com/registration.html"" target=""_blank"">here</a> to register."
92
  "Alipay description","You simply need to have an Alipay account and deposit money to your account: using a bank account from one of the banks that are accepted by Alipay (19 Chinese national banks) or using a credit/debit card. If you do not have an Alipay account click <a href=""https://globalprod.alipay.com/order/emailVerify.htm"" target=""_blank"">here</a> to register."
93
  "Abaqoos description","You can pay with Abaqoos via cash or internet banking from all the major banks. Only the Abaqoos vouchers registered with Smart2Pay as provider can be used for making your payment. If you do not have already an Abaqoos voucher click <a href=""https://www.abaqoos.com/PODWebAuthSite/Registration.aspx?provider=smart2pay"" target=""_blank"">here</a> to register. After you create your account please deposit money in it to be able to pay."
94
- "eBanka description","eBanka (eKonto) is an online banking service offered by Raiffeisen Bank, so to use this method you need to have an eKonto account at Raiffeisen Bank. You don"
95
- "Ukash description","Ukash voucher is a prepaid voucher you can use to pay - there are no extra fees. So, if you want to pay using Ukash voucher you simply visit your <a href=""http://www.ukash.com/global/en/where-to-get/global.aspx"" target=""_blank"">nearest store</a>. To pay you simply type in the 19 digit voucher code and the voucher value."
96
- "GluePay description","Instant Bank (former GluePay) allows you to pay online with your bank account - fast, easy and secure. Just choose your bank, follow the instructions and complete the details needed. Then confirm the payment as you normally do with your internet banking by signing with a one-time bank security code from your token and you will have completed the payment."
97
  "Debito Banco do Brasil description","O Débito Banco do Brasil permite a você pagar online através da sua conra bancária - rápido, fácil e seguro. Precisa ter uma conta bancária com internet banking no Banco do Brasil."
98
  "CuentaDigital description","CuentaDigital is a leading electronic wallet provider in South America that offers all of the most popular payment methods available. To purchase with this method you need to have a CuentaDigital account. Click <a href=""https://www.cuentadigital.com/area.php?name=cliente&op=new_user"" target=""_blank"">here</a>to register and then reload the account if you do not have already a CuentaDigital account."
99
  "CardsBrazil description","Please choose your card brand and enter the card details. The supported card types: Visa, MasterCard, Amex, Diners, JCB, Hipercard, Sorocred, Aura, Discover, Cabal and Argencard."
@@ -110,7 +110,7 @@
110
  "ToditoCash description","Todito Cash is a rechargeable prepaid card that you can use to pay and you can recharge just like you do with your mobile phone in over 20,000 outlets including convenience <a href=""https://www.toditocash.com/html/puntosdeventa.php"" target=""_blank"">stores and banks</a>.If you do not have a ToditoCash account click <a href=""https://www.toditocash.com/php/crearCuenta.php"" target=""_blank"">here</a> to register."
111
  "SecureVaultPayments description","SecureVaultPayments allows you to pay using your internet banking. You choose your bank and all the other payment details you will enter at your own bank."
112
  "Boleto description","Boleto Bancário é uma das mais utilizadas opções de pagamento no Brasil. Para pagar através do Boleto Bancário tem que imprimir o Boleto e ir a uma sucursal física do banco na sua área e pagar com dinheiro, utilizar o banking online, ou simplesmente ir a uma caixa ATM."
113
- "Debito description","Débito Bradesco é uma opção de pagamento através de "transferência bancário ao vivo" disponível para Clientes do Banco Bradesco no Brasil. Só precisa preencher o número do seu cartão de débito do Banco Bradesco e confirmar o pagamento através do código PIN."
114
  "Transferencia description","A Transferência Entre Contas é um método de transferência bancária ao vivo que permite a você efectuar o pagamento. Para utilizar este método de pagamento você precisa de uma conta bancária com internet banking na Bradesco."
115
  "QIWI Wallet description","QIWI is a major electronic payment system on the Russian market that offers all of the popular payment methods through Qiwi Wallet or directly. You can pay with QIWI Wallet from the balance of your QIWI account, or pay directly with debit or credit card, or using cash at a QIWI kiosk. "
116
  "Beeline description","This option is available if your phone number belongs to Beeline mobile operator. Beeline approves or declines your payment request depending on the amount of your phone balance."
@@ -147,4 +147,4 @@
147
  "AMEXThailand description", "AMEX Thailand"
148
  "Cash Options Thailand description", "Cash Options Thailand"
149
  "OnlineBankingThailand description", "Online Banking Thailand"
150
- "PaysBuy Wallet description", "PaysBuy Wallet"
6
  "Giropay","Giropay"
7
  "EPS","EPS"
8
  "UseMyFunds","UseMyFunds"
9
+ "Sofort Banking","Sofort Banking"
10
  "Przelewy24","Przelewy24"
11
  "OneCard","OneCard"
12
  "CashU","CashU"
14
  "DineroMail","DineroMail"
15
  "Multibanco SIBS","Multibanco SIBS"
16
  "Moneta Wallet","Moneta Wallet"
17
+ "Paysera","Paysera"
18
  "Alipay","Alipay"
19
  "Abaqoos","Abaqoos"
20
+ "ePlatby for eKonto","ePlatby for eKonto"
21
  "Ukash","Ukash"
22
+ "Trustly","Trustly"
23
  "Debito Banco do Brasil","Débito Banco do Brasil"
24
  "CuentaDigital","CuentaDigital"
25
  "CardsBrazil","CardsBrazil"
74
  "Cash Options Thailand", "Cash Options Thailand"
75
  "OnlineBankingThailand", "Online Banking Thailand"
76
  "PaysBuy Wallet", "PaysBuy Wallet"
77
+ "Bank Transfer description","A Transferência Bancária oferece a possibilidade de pagar localmente através da sua própria conta bancária. Irá receber um número de referência e os detalhes da conta para poder efectuar o pagamento."
78
  "iDEAL description","iDEAL allows you to buy securely on the Internet directly from your bank account opened at one of the major Dutch banks: ING, Postbank, ABN AMRO, Rabobank and SNS Bank"
79
  "MrCash description","Bancontact/Mister Cash is the Belgium ATM card. You can pay with this card over internet, using a unique TAN (Transaction Auhorization Number). Please make sure your card is enabled for internet purchases. "
80
  "Giropay description","Giropay is an online payment method that enables you to make real time payments via internet banking. In order to use Giropay, you must have a Girokonto (Giro account at a participating Bank or Sparkasse)."
81
  "EPS description","EPS e-payment standard allows you to make real time online payments via your internet banking. The main banks where you can pay from are: Bank Austria Creditanstalt, Erste Bank Sparkasse, Raiffeisen Bank and Bawag PSK."
82
  "UseMyFunds description","UseMyFunds is secure, convenient and easy to use! It works with your existing online banking service (there is nothing to download or install on your computer). You need to register the first time you pay."
83
+ "Sofort Banking description","Sofortuberweisung/DirectEbanking is an online payment method, an instant payment through a direct bank transfer from your bank account via internet banking."
84
  "Przelewy24 description","Przelewy24 is a secure and fast online payment service linked to all the major banks and payment methods in Poland. "
85
  "OneCard description","OneCard is the fastest growing Internet payment solution in the Middle East and North Africa. You could simply use Onecard prepaid cards directly or you can open an Onecard account and then reload the account. If you do not have an Onecard account click <a href=""http://www.onecard.net/customer/index.html?showRegistrationBox=true&siteLanguage=en"" target=""_blank"">here</a> to register."
86
  "CashU description","CashU is the most widely used prepaid and electronic wallet in the Middle East and North Africa (excluding credit cards).You could simply use Cashu prepaid cards directly or you can open a CashU account and then reload your account. If you do not have a CashU account click <a href=""https://www.cashu.com/CLogin/registersForm?lang=en"" target=""_blank"">here</a> to register."
87
  "POLi description","POLi is an online payment service that enables you to safely pay directly from your own internet banking. In order to pay with POLi you will have to select your bank and download the POLi application."
88
  "DineroMail description","DineroMail é um sistema electrónico de pagamento capital no mercado Latino Americano que oferece todos os métodos populares de pagamento disponíveis em Argentina, Brasil,Chile, Colômbia e Mexico. Se não tiver uma conta DineroMail faça clique <a href=""http://www.dineromail.com/"" target=""_blank"">aqui</a> para se registar."
89
+ "Multibanco SIBS description","Através do Multibanco/SIBS você recebe detlahes de pagamento (3 conjuntos de dígitos - Entidade, Referência e Valor) que pode usar para pagar o Comerciante. Pode efectuar este pagamento através de ATMs Multibanco, internet banking ou celulares."
90
  "Moneta Wallet description","Moneta.ru is a major electronic payment system on the Russian market that offers all of the most popular payment methods available in Russia and Ukraine. You can pay direct or via the Moneta Wallet."
91
+ "Paysera description","Paysera is a reliable, secure and fast online system that offers all of the most popular payment methods available in the Baltic Countries. In order to use this method you need to have a Paysera account. If you do not have a Paysera account click <a href=""https://www.webtopay.com/registration.html"" target=""_blank"">here</a> to register."
92
  "Alipay description","You simply need to have an Alipay account and deposit money to your account: using a bank account from one of the banks that are accepted by Alipay (19 Chinese national banks) or using a credit/debit card. If you do not have an Alipay account click <a href=""https://globalprod.alipay.com/order/emailVerify.htm"" target=""_blank"">here</a> to register."
93
  "Abaqoos description","You can pay with Abaqoos via cash or internet banking from all the major banks. Only the Abaqoos vouchers registered with Smart2Pay as provider can be used for making your payment. If you do not have already an Abaqoos voucher click <a href=""https://www.abaqoos.com/PODWebAuthSite/Registration.aspx?provider=smart2pay"" target=""_blank"">here</a> to register. After you create your account please deposit money in it to be able to pay."
94
+ "ePlatby for eKonto description","ePlatby for eKonto is an online banking service offered by Raiffeisen Bank, so to use this method you need to have an eKonto account at Raiffeisen Bank. You don’t have to activate this service; it works automatically."
95
+ "Ukash description","O comprovativo Ukash é um comprovativo pré-pago que pode usar para pagar - não tem taxas extras. Portanto, se quiser pagar através do comprovativo Ukash simplesmente visite <a href=""http://www.ukash.com/global/en/where-to-get/global.aspx"" target=""_blank"">a loja mais</a> perta de você. Para pagar precisa preencher o código do comprovativo composto por 19 dígitos e o valor do comprovativo."
96
+ "Trustly description","Trustly (former Instant Bank/GluePay) allows you to pay online with your bank account - fast, easy and secure. Just choose your bank, follow the instructions and complete the details needed. Then confirm the payment as you normally do with your internet banking by signing with a one-time bank security code from your token and you will have completed the payment."
97
  "Debito Banco do Brasil description","O Débito Banco do Brasil permite a você pagar online através da sua conra bancária - rápido, fácil e seguro. Precisa ter uma conta bancária com internet banking no Banco do Brasil."
98
  "CuentaDigital description","CuentaDigital is a leading electronic wallet provider in South America that offers all of the most popular payment methods available. To purchase with this method you need to have a CuentaDigital account. Click <a href=""https://www.cuentadigital.com/area.php?name=cliente&op=new_user"" target=""_blank"">here</a>to register and then reload the account if you do not have already a CuentaDigital account."
99
  "CardsBrazil description","Please choose your card brand and enter the card details. The supported card types: Visa, MasterCard, Amex, Diners, JCB, Hipercard, Sorocred, Aura, Discover, Cabal and Argencard."
110
  "ToditoCash description","Todito Cash is a rechargeable prepaid card that you can use to pay and you can recharge just like you do with your mobile phone in over 20,000 outlets including convenience <a href=""https://www.toditocash.com/html/puntosdeventa.php"" target=""_blank"">stores and banks</a>.If you do not have a ToditoCash account click <a href=""https://www.toditocash.com/php/crearCuenta.php"" target=""_blank"">here</a> to register."
111
  "SecureVaultPayments description","SecureVaultPayments allows you to pay using your internet banking. You choose your bank and all the other payment details you will enter at your own bank."
112
  "Boleto description","Boleto Bancário é uma das mais utilizadas opções de pagamento no Brasil. Para pagar através do Boleto Bancário tem que imprimir o Boleto e ir a uma sucursal física do banco na sua área e pagar com dinheiro, utilizar o banking online, ou simplesmente ir a uma caixa ATM."
113
+ "Debito description","Débito Bradesco é uma opção de pagamento através de ""transferência bancário ao vivo"" disponível para Clientes do Banco Bradesco no Brasil. Só precisa preencher o número do seu cartão de débito do Banco Bradesco e confirmar o pagamento através do código PIN."
114
  "Transferencia description","A Transferência Entre Contas é um método de transferência bancária ao vivo que permite a você efectuar o pagamento. Para utilizar este método de pagamento você precisa de uma conta bancária com internet banking na Bradesco."
115
  "QIWI Wallet description","QIWI is a major electronic payment system on the Russian market that offers all of the popular payment methods through Qiwi Wallet or directly. You can pay with QIWI Wallet from the balance of your QIWI account, or pay directly with debit or credit card, or using cash at a QIWI kiosk. "
116
  "Beeline description","This option is available if your phone number belongs to Beeline mobile operator. Beeline approves or declines your payment request depending on the amount of your phone balance."
147
  "AMEXThailand description", "AMEX Thailand"
148
  "Cash Options Thailand description", "Cash Options Thailand"
149
  "OnlineBankingThailand description", "Online Banking Thailand"
150
+ "PaysBuy Wallet description", "PaysBuy Wallet"
app/locale/pt_PT/Smart2Pay_Globalpay.csv ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Please choose one of the following payment methods.","Por favor, escolha um dos seguintes métodos de pagamento."
2
+ "If you choose to simply continue, default method will be", "Se você optar simplesmente continuar, o método padrão será"
3
+ "Bank Transfer","Bank Transfer"
4
+ "iDEAL","iDEAL"
5
+ "MrCash","MrCash"
6
+ "Giropay","Giropay"
7
+ "EPS","EPS"
8
+ "UseMyFunds","UseMyFunds"
9
+ "Sofort Banking","Sofort Banking"
10
+ "Przelewy24","Przelewy24"
11
+ "OneCard","OneCard"
12
+ "CashU","CashU"
13
+ "POLi","POLi"
14
+ "DineroMail","DineroMail"
15
+ "Multibanco SIBS","Multibanco SIBS"
16
+ "Moneta Wallet","Moneta Wallet"
17
+ "Paysera","Paysera"
18
+ "Alipay","Alipay"
19
+ "Abaqoos","Abaqoos"
20
+ "ePlatby for eKonto","ePlatby for eKonto"
21
+ "Ukash","Ukash"
22
+ "Trustly","Trustly"
23
+ "Debito Banco do Brasil","Débito Banco do Brasil"
24
+ "CuentaDigital","CuentaDigital"
25
+ "CardsBrazil","CardsBrazil"
26
+ "PaysBuy","PaysBuy"
27
+ "Mazooma","Mazooma"
28
+ "eNETS Debit","eNETS Debit"
29
+ "Paysafecard","Paysafecard"
30
+ "PayPal","PayPal"
31
+ "PagTotal","PagTotal"
32
+ "Payeasy","Payeasy"
33
+ "MercadoPago","MercadoPago"
34
+ "Mozca","Mozca"
35
+ "Gash","Gash"
36
+ "ToditoCash","ToditoCash"
37
+ "SecureVaultPayments","SecureVaultPayments"
38
+ "Boleto","Boleto Bancário"
39
+ "Debito","Débito Bradesco"
40
+ "Transferencia","Transferência Entre Contas"
41
+ "QIWI Wallet","QIWI Wallet"
42
+ "Beeline","Beeline"
43
+ "Megafon","Megafon"
44
+ "MTS","MTS"
45
+ "WebMoney","WebMoney"
46
+ "Yandex","Yandex"
47
+ "Alliance Online","Alliance Online"
48
+ "AmBank","AmBank"
49
+ "CIMB Clicks","CIMB Clicks"
50
+ "FPX","FPX"
51
+ "Hong Leong Bank Transfer","Hong Leong Bank Transfer"
52
+ "Maybank2U","Maybank2U"
53
+ "Meps Cash","Meps Cash"
54
+ "Mobile Money","Mobile Money"
55
+ "RHB","RHB"
56
+ "Webcash","Webcash"
57
+ "Credit Cards Colombia","Credit Cards Colombia"
58
+ "PSE","PSE"
59
+ "ACH Debit","ACH Debit"
60
+ "Via Baloto","Via Baloto"
61
+ "Referenced Payment","Referenced Payment"
62
+ "Mandiri","Mandiri"
63
+ "XLTunai", "XLTunai"
64
+ "Bancomer Pago referenciado", "Bancomer Pago referenciado"
65
+ "Santander Pago referenciado", "Santander Pago referenciado"
66
+ "ScotiaBank Pago referenciado", "ScotiaBank Pago referenciado"
67
+ "7-Eleven Pago en efectivo", "7-Eleven Pago en efectivo"
68
+ "Oxxo Pago en efectivo", "Oxxo Pago en efectivo"
69
+ "IXE Pago referenciado", "IXE Pago referenciado"
70
+ "Boleto Itau", "Boleto Itaú"
71
+ "Cards Thailand", "Cards Thailand"
72
+ "PayPalThailand", "PayPal Thailand"
73
+ "AMEXThailand", "AMEX Thailand"
74
+ "Cash Options Thailand", "Cash Options Thailand"
75
+ "OnlineBankingThailand", "Online Banking Thailand"
76
+ "PaysBuy Wallet", "PaysBuy Wallet"
77
+ "Bank Transfer description","A Transferência Bancária oferece a possibilidade de pagar localmente através da sua própria conta bancária. Irá receber um número de referência e os detalhes da conta para poder efectuar o pagamento."
78
+ "iDEAL description","iDEAL allows you to buy securely on the Internet directly from your bank account opened at one of the major Dutch banks: ING, Postbank, ABN AMRO, Rabobank and SNS Bank"
79
+ "MrCash description","Bancontact/Mister Cash is the Belgium ATM card. You can pay with this card over internet, using a unique TAN (Transaction Auhorization Number). Please make sure your card is enabled for internet purchases. "
80
+ "Giropay description","Giropay is an online payment method that enables you to make real time payments via internet banking. In order to use Giropay, you must have a Girokonto (Giro account at a participating Bank or Sparkasse)."
81
+ "EPS description","EPS e-payment standard allows you to make real time online payments via your internet banking. The main banks where you can pay from are: Bank Austria Creditanstalt, Erste Bank Sparkasse, Raiffeisen Bank and Bawag PSK."
82
+ "UseMyFunds description","UseMyFunds is secure, convenient and easy to use! It works with your existing online banking service (there is nothing to download or install on your computer). You need to register the first time you pay."
83
+ "Sofort Banking description","Sofortuberweisung/DirectEbanking is an online payment method, an instant payment through a direct bank transfer from your bank account via internet banking."
84
+ "Przelewy24 description","Przelewy24 is a secure and fast online payment service linked to all the major banks and payment methods in Poland. "
85
+ "OneCard description","OneCard is the fastest growing Internet payment solution in the Middle East and North Africa. You could simply use Onecard prepaid cards directly or you can open an Onecard account and then reload the account. If you do not have an Onecard account click <a href=""http://www.onecard.net/customer/index.html?showRegistrationBox=true&siteLanguage=en"" target=""_blank"">here</a> to register."
86
+ "CashU description","CashU is the most widely used prepaid and electronic wallet in the Middle East and North Africa (excluding credit cards).You could simply use Cashu prepaid cards directly or you can open a CashU account and then reload your account. If you do not have a CashU account click <a href=""https://www.cashu.com/CLogin/registersForm?lang=en"" target=""_blank"">here</a> to register."
87
+ "POLi description","POLi is an online payment service that enables you to safely pay directly from your own internet banking. In order to pay with POLi you will have to select your bank and download the POLi application."
88
+ "DineroMail description","DineroMail é um sistema electrónico de pagamento capital no mercado Latino Americano que oferece todos os métodos populares de pagamento disponíveis em Argentina, Brasil,Chile, Colômbia e Mexico. Se não tiver uma conta DineroMail faça clique <a href=""http://www.dineromail.com/"" target=""_blank"">aqui</a> para se registar."
89
+ "Multibanco SIBS description","Através do Multibanco/SIBS você recebe detlahes de pagamento (3 conjuntos de dígitos - Entidade, Referência e Valor) que pode usar para pagar o Comerciante. Pode efectuar este pagamento através de ATMs Multibanco, internet banking ou celulares."
90
+ "Moneta Wallet description","Moneta.ru is a major electronic payment system on the Russian market that offers all of the most popular payment methods available in Russia and Ukraine. You can pay direct or via the Moneta Wallet."
91
+ "Paysera description","Paysera is a reliable, secure and fast online system that offers all of the most popular payment methods available in the Baltic Countries. In order to use this method you need to have a Paysera account. If you do not have a Paysera account click <a href=""https://www.webtopay.com/registration.html"" target=""_blank"">here</a> to register."
92
+ "Alipay description","You simply need to have an Alipay account and deposit money to your account: using a bank account from one of the banks that are accepted by Alipay (19 Chinese national banks) or using a credit/debit card. If you do not have an Alipay account click <a href=""https://globalprod.alipay.com/order/emailVerify.htm"" target=""_blank"">here</a> to register."
93
+ "Abaqoos description","You can pay with Abaqoos via cash or internet banking from all the major banks. Only the Abaqoos vouchers registered with Smart2Pay as provider can be used for making your payment. If you do not have already an Abaqoos voucher click <a href=""https://www.abaqoos.com/PODWebAuthSite/Registration.aspx?provider=smart2pay"" target=""_blank"">here</a> to register. After you create your account please deposit money in it to be able to pay."
94
+ "ePlatby for eKonto description","ePlatby for eKonto is an online banking service offered by Raiffeisen Bank, so to use this method you need to have an eKonto account at Raiffeisen Bank. You don’t have to activate this service; it works automatically."
95
+ "Ukash description","O comprovativo Ukash é um comprovativo pré-pago que pode usar para pagar - não tem taxas extras. Portanto, se quiser pagar através do comprovativo Ukash simplesmente visite <a href=""http://www.ukash.com/global/en/where-to-get/global.aspx"" target=""_blank"">a loja mais</a> perta de você. Para pagar só precisa preencher o código do comprovativo composto por 19 dígitos e o valor do comprovativo."
96
+ "Trustly description","Trustly (former Instant Bank/GluePay) allows you to pay online with your bank account - fast, easy and secure. Just choose your bank, follow the instructions and complete the details needed. Then confirm the payment as you normally do with your internet banking by signing with a one-time bank security code from your token and you will have completed the payment."
97
+ "Debito Banco do Brasil description","O Débito Banco do Brasil permite a você pagar online através da sua conra bancária - rápido, fácil e seguro. Precisa ter uma conta bancária com internet banking no Banco do Brasil."
98
+ "CuentaDigital description","CuentaDigital is a leading electronic wallet provider in South America that offers all of the most popular payment methods available. To purchase with this method you need to have a CuentaDigital account. Click <a href=""https://www.cuentadigital.com/area.php?name=cliente&op=new_user"" target=""_blank"">here</a>to register and then reload the account if you do not have already a CuentaDigital account."
99
+ "CardsBrazil description","Please choose your card brand and enter the card details. The supported card types: Visa, MasterCard, Amex, Diners, JCB, Hipercard, Sorocred, Aura, Discover, Cabal and Argencard."
100
+ "PaysBuy description","PaysBuy allows you to pay with the flexibility using PaysBuy account balances (click <a href=""https://www.paysbuy.com/register.aspx"" target=""_blank"">here</a> to create your PaysBuy account if do not have one already), or directly via internet banking, credit cards or cash. "
101
+ "Mazooma description","Mazooma is an innovative payment solution provider for online commerce. Mazooma lets you pay from your own bank account by connecting you directly to your online bank account for a safe, simple and easy checkout."
102
+ "eNETS Debit description","eNETS Debit is an Internet-based payment method that enables you to pay from your bank account using your Internet Banking PIN and ID. "
103
+ "Paysafecard description","Paysafecard voucher is a prepaid voucher you can use to pay- there are no extra fees. So, if you want to purchase using Paysafecard voucher you simply visit your <a href=""http://www.paysafecard.com/uk/buy/"" target=""_blank"">nearest store</a>. Then you simply type in the 16 digit voucher code and that"
104
+ "PayPal description","PayPal is the world's largest online payment network, serving over 230 million members in 190 countries and regions. With PayPal you can pay using your credit card or checking account. If you do not have a PayPal account click <a href=""https://www.paypal.com/us/cgi-bin/webscr?cmd=_flow&SESSION=POF0zpshlSyFe4t6PMraBTKqVa0vfnf5zlWQViMb3horYjAo21mGHfjsmmO&dispatch=5885d80a13c0db1f8e263663d3faee8d7283e7f0184a5674430f290db9e9c846"" target=""_blank"">here</a> to register."
105
+ "PagTotal description","PagTotal é uma maneira de pagamento no Brasil, reforçado através da segurança do celular. A vantagem principal do uso da PagTotal é que facilita o pagamento e a confirmação do pagamento em qualquer sítio estiver, através de um simplez SMS. Se ainda não tiver uma conta Pagtotal faça clique <a href=""https://pagtotal.com.br/cadastro.php"" target=""_blank"">aqui</a> para se registar."
106
+ "Payeasy description","PayEasy provides a secure, unified interface to all of the popular payment options. Via PayEasy you can pay using major credit cards, ATM debit cards, mobile payments, over-the-counter-cash (Dragonpay), online banking payments and direct bank transfers."
107
+ "MercadoPago description","MercadoPago banco de a maior Carteira Internet na América Latina que lhe permite pagar através dos mais populares métodos de pagamento. Para pagar através do MercadoPago precisa de ter uma conta MercadoPago. Se não tiver uma conta MercadoPago faça clique <a href=""https://www.mercadopago.com/mlb/cadastro/register"" target=""_blank"">aqui</a> para se registar."
108
+ "Mozca description","Para pagar através da Mozca é muito fácil: você simplesmente utiliza o seu número do celular e uma palavra passe de 4 dígitos para confirmar que o seu celular realmente pertença a você e está com você no momento. Um Código PIN MOZCA será enviado a você através de um SMS de maneira a confirmar o seu pagamento."
109
+ "Gash description","Gash voucher is a prepaid voucher you can use to pay- there are no extra fees. So, if you want to purchase using GASH voucher you simply visit your <a href=""http://www.gashplus.com/gashstore/GashStore.aspx"" target=""_blank"">nearest store</a>. Then you simply type in the 14/20/21 digit voucher code and that"
110
+ "ToditoCash description","Todito Cash is a rechargeable prepaid card that you can use to pay and you can recharge just like you do with your mobile phone in over 20,000 outlets including convenience <a href=""https://www.toditocash.com/html/puntosdeventa.php"" target=""_blank"">stores and banks</a>.If you do not have a ToditoCash account click <a href=""https://www.toditocash.com/php/crearCuenta.php"" target=""_blank"">here</a> to register."
111
+ "SecureVaultPayments description","SecureVaultPayments allows you to pay using your internet banking. You choose your bank and all the other payment details you will enter at your own bank."
112
+ "Boleto description","Boleto Bancário é uma das mais utilizadas opções de pagamento no Brasil. Para pagar através do Boleto Bancário tem que imprimir o Boleto e ir a uma sucursal física do banco na sua área e pagar com dinheiro, utilizar o banking online, ou simplesmente ir a uma caixa ATM."
113
+ "Debito description","Débito Bradesco é uma opção de pagamento através de ""transferência bancário ao vivo"" disponível para Clientes do Banco Bradesco no Brasil. Só precisa preencher o número do seu cartão de débito do Banco Bradesco e confirmar o pagamento através do código PIN."
114
+ "Transferencia description","A Transferência Entre Contas é um método de transferência bancária ao vivo que permite a você efectuar o pagamento. Para utilizar este método de pagamento você precisa de uma conta bancária com internet banking na Bradesco."
115
+ "QIWI Wallet description","QIWI is a major electronic payment system on the Russian market that offers all of the popular payment methods through Qiwi Wallet or directly. You can pay with QIWI Wallet from the balance of your QIWI account, or pay directly with debit or credit card, or using cash at a QIWI kiosk. "
116
+ "Beeline description","This option is available if your phone number belongs to Beeline mobile operator. Beeline approves or declines your payment request depending on the amount of your phone balance."
117
+ "Megafon description","This option is available if your phone number belongs to Megafon mobile operator. Megafon approves or declines your payment request depending on the amount of your phone balance."
118
+ "MTS description","This option is available if your phone number belongs to MTC mobile operator. MTC approves or declines your payment request depending on the amount of your phone balance."
119
+ "WebMoney description","WebMoney Transfer is a payment system offering most popular payment methods direct and through the WebMoney Wallet. To be able to pay with WebMoney you need to register first (click <a href=""http://start.webmoney.ru/?lang=en"" target=""_blank"">here</a>) if you are not yet registered."
120
+ "Yandex description","Yandex.Money is the leading online payment system in Russia that offers most of the popular payment methods direct and through Yandex.Money eWallet. To pay with Yandex.Money eWallet you only need a web browser and can pay using - cash, bank account or credit card."
121
+ "Alliance Online description","Alliance Online is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at Alliance Online Bank."
122
+ "AmBank description","AmBank is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at AmBank."
123
+ "CIMB Clicks description","CIMB Clicks (formerly known as Channel-e) is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at CIMB Bank."
124
+ "FPX description","FPX is an online payment method that allows you to pay in real time via internet banking. You just need to choose your own bank and enter on the bank"
125
+ "Hong Leong Bank Transfer description","Hong Leong Bank Transfer is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at Hong Leong Bank."
126
+ "Maybank2U description","Maybank2U is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at Maybank2U."
127
+ "Meps Cash description","MEPSCASH is electronic money (e-money) provided via MEPS. You need to first top MEPSCASH into the ATM card or MyKad (similar to TouchnGo). When you pay, the MEPSCASH amount is deducted from the card itself."
128
+ "Mobile Money description","Mobile Money allows you to pay via your mobile phone and is under the supervision of Central Bank of Malaysia. To start using Mobile Money you need to register first (click <a href=""https://mmweb.mobile-money.com/UserReg/index.aspx"" target=""_blank"">here</a>) if you are not yet registered."
129
+ "RHB description","RHB is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at RHB Bank."
130
+ "Webcash description","WEBCASH is a Prepaid Payment System you can use to pay. You determine the amount of the cash value you want to top-up into your Webcash account. If you do not have a Webcash account register <a href=""https://webcash.com.my/postregistration.php?chk=0"" target=""_blank"">here</a>."
131
+ "Credit Cards Colombia description","Please choose your card brand and enter the card details. The supported card types: Visa, MasterCard, Amex, Diners."
132
+ "PSE description","(Acronym in Spanish) Electronic Services Supplier; it is an ACH Colombia SA service where you are redirected to your selected bank website and then you need to introduce your user, password and account number."
133
+ "ACH Debit description","ACH debit is a payment method that allows the Merchant to collect funds from your bank account using your bank routing number and your account number. You are the only one who can give authorization for an ACH debit to occur, at which time the authorized amount is deducted from your account."
134
+ "Via Baloto description","Via Baloto is a cash payment you can use to pay. You will receive a reference number for your payment and an operational number. With this data you can make the payment at Via Baloto centers. Please access <a href=""http://www.autoreseditores.com/pagosonline-puntos-via-baloto.html?state=HUILA&city=PALERMO"" target=""_blank"">pagosonline-puntos-via-baloto/</a> for the complete list of the payment centers. "
135
+ "Referenced Payment description","Referenced Payment is a cash payment you can use to pay. You need to print the voucher with the barcode and pay it at any branch of Bancolombia, Banco de Occidente and Banco Helm."
136
+ "Mandiri description","Mandiri is an online payment method that allows you to pay in real time via internet banking. To use this payment method you need to have a bank account with internet banking at Mandiri Bank."
137
+ "XLTunai description", "XL Tunai is an online payment method that allows you to transform your phone into a digital wallet. To use this payment method you need to register your phone number at XL centers or agents. You will receive a PIN in order to authorize the payments."
138
+ "Bancomer Pago referenciado description", "To pay with Bancomer - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
139
+ "Santander Pago referenciado description", "To pay with Santantder - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
140
+ "ScotiaBank Pago referenciado description", "To pay with Scotiabank - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
141
+ "7-Eleven Pago en efectivo description", "Print and present this voucher at any 7-ELEVEN store in the country to pay your purchase. Please point to the store cashier the exact amount contained in the instructions. Otherwise you may not be able to properly pay the transaction."
142
+ "Oxxo Pago en efectivo description", "Print and present this voucher at any Oxxo store in the country to pay your purchase. Please point to the store cashier the exact amount contained in the instructions. Otherwise you may not be able to properly pay the transaction."
143
+ "IXE Pago referenciado description", "To pay with IXE - pago referenciado you need to print the instructions, go to the physical bank branch in your area and pay with cash or check deposit."
144
+ "Boleto Itau description", "To pay with Boleto Itaú you need to print the Boleto and go to a physical bank branch in your area and pay with cash, online banking, or simply go to an ATM machine."
145
+ "Cards Thailand description", "Cards Thailand"
146
+ "PayPalThailand description", "PayPal Thailand"
147
+ "AMEXThailand description", "AMEX Thailand"
148
+ "Cash Options Thailand description", "Cash Options Thailand"
149
+ "OnlineBankingThailand description", "Online Banking Thailand"
150
+ "PaysBuy Wallet description", "PaysBuy Wallet"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Smart2Pay</name>
4
- <version>1.1.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/OSL-3.0">The Open Software License 3.0 (OSL-3.0)</license>
7
  <channel>community</channel>
@@ -90,15 +90,27 @@
90
  &lt;p&gt;Let us handle your payments on the web; increase your Sales and Customer satisfaction, join Smart2Pay, the smart way to pay on the web.&lt;/p&gt;&#xD;
91
  &#xD;
92
  &lt;p&gt;Please register online on https://dashboardtest.smart2pay.com/Account/Register or e-mail support@smart2pay.com for instructions on account activation and detailed documentation.&lt;/p&gt;</description>
93
- <notes>Added the following payment methods: XLTunai, Bancomer Pago referenciado, Santander Pago referenciado, ScotiaBank Pago referenciado, 7-Eleven Pago en efectivo, Oxxo Pago en efectivo,&#xD;
94
- IXE Pago referenciado, Cards Thailand, PayPal Thailand, AMEX Thailand, Cash Options Thailand, Online Banking Thailand, PaysBuy Wallet&#xD;
95
- &#xD;
96
- &#xD;
97
- Added translations for en_US, en_GB, es_AR, es_CL, es_CO, es_ES, es_MX, it_IT, pt_BR.</notes>
 
 
 
 
 
 
 
 
 
 
 
 
98
  <authors><author><name>Stefan Iancu</name><user>stefani</user><email>stefan@smart2pay.com</email></author></authors>
99
- <date>2013-08-09</date>
100
- <time>13:37:53</time>
101
- <contents><target name="magecommunity"><dir name="Smart2Pay"><dir name="Globalpay"><dir name="Block"><file name="Info.php" hash="7ba152ab49b0dc36cc9af68d4877a649"/><dir name="Paymethod"><file name="Form.php" hash="b1482f3ec22b1a2a20117d8847451ec1"/><file name="Sendform.php" hash="e936dd51dfcfd0f319b246edf210a33a"/></dir></dir><dir name="Helper"><file name="Data.php" hash="bb23054b861b1468c0a70e2ce5acdb8d"/><file name="Helper.php" hash="a549c535e360a93958c6ca941f80b129"/></dir><dir name="Model"><file name="Country.php" hash="4b433925bed9f5d47d64497432e75a34"/><file name="Countrymethod.php" hash="2aa968c593058fd86b2c8d0550f3e286"/><file name="GlobalpayLog.php" hash="f68fd78b1020729985c405d539cb94d4"/><file name="Logger.php" hash="6268d6a7829e481187b0d998be88bab0"/><file name="Method.php" hash="99a1ed249df5d21e978406f2aee202d7"/><file name="Pay.php" hash="d5f0b2f4f0cf42295fa2fb45a11759fb"/><dir name="Resource"><dir name="Country"><file name="Collection.php" hash="ad5ae7ebc94b095bb7264bdf8a8384db"/></dir><file name="Country.php" hash="48d23e3ab4a5c2788839433080179c65"/><dir name="Countrymethod"><file name="Collection.php" hash="31e944d1e66e1da9d3d3779c9cc318d3"/></dir><file name="Countrymethod.php" hash="95db4406bede177910938746e660360f"/><dir name="Logger"><file name="Collection.php" hash="f4db3e9e19df5570603cdddc843017ea"/></dir><file name="Logger.php" hash="ef953126a8793499b676a0aea7070fda"/><dir name="Method"><file name="Collection.php" hash="52091137c467ca6e4ef07e15505e41cd"/></dir><file name="Method.php" hash="ab86d14385f2330a81e13ac0d931fb89"/><file name="Setup.php" hash="6cad02bba0656dab9a7a7a85489f92c3"/></dir><dir name="Source"><file name="Displaymodes.php" hash="d58bea7ddb68a9ae8cd32aa1b175ce5f"/><file name="Methods.php" hash="00c268b45390e7dc505f3bf08699e65d"/><file name="Testlive.php" hash="c9cde641fdc6d7e853de3b6af3fa1d90"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="8e0e17e1510b8fff45300a347b99869e"/><file name="TestsController.php" hash="491989d17c884c304866caa317ba4b03"/></dir><dir name="etc"><file name="config.xml" hash="9034b12e9ddc7d701b16157a57958bd3"/><file name="system.xml" hash="ab61dfbde5a1847d86a2637ee3cf44cf"/></dir><dir name="sql"><dir name="globalpay_setup"><file name="mysql4-install-0.1.0.php" hash="a9028322416d7a057b933e5ff7461b7e"/><file name="mysql4-upgrade-1.0.3-1.1.1.php" hash="e101b2deef4a6911e20d9604a87f92b4"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="globalpay.xml" hash="d5f5abd3bbf9b9184cd18304acdac867"/></dir><dir name="template"><dir name="smart2pay"><dir name="globalpay"><file name="info.phtml" hash="27dd1e9f9fc5390ad74f45573ac51dea"/><dir name="paymethod"><file name="form.phtml" hash="0121fb12d5270242933707c0d001bc7a"/><file name="sendform.phtml" hash="54226c7581ac32786e8e7f81b34e5882"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="smart2pay"><dir name="methods"><file name="7eleven.gif" hash="34064a09693cc286ec61ca3c2689382a"/><file name="7eleven_grey.gif" hash="6eec329dc25961fae2a8a78b3d946a99"/><file name="ABN-AMRO.jpg" hash="82dd9741d9ce8f1c0706a9a29c775faa"/><file name="FPX.gif" hash="34cc5462d208c69dd7cec27024bd1f8a"/><file name="FPX_grey.gif" hash="f56883b1becf81c26a160d8022de9e58"/><file name="Frieslandbank.jpg" hash="25c44572f3d202a37e3801d78f8b9385"/><file name="IXe.gif" hash="1a36c6a866390fe4dfbcdf6ea7dabaa9"/><file name="IXe_grey.gif" hash="bdacd3d56125aa7d00d5b135885b7fcd"/><file name="RBS.jpg" hash="b11037004617f3a5f5afec6ed37953e8"/><file name="XLTunai.gif" hash="114b251f96a1b465133dab839132331c"/><file name="XLTunai_grey.gif" hash="c10fa0b64812167f317f168246f3a1ab"/><file name="abaqoos.gif" hash="9ecff0690953339133a8123c360e0441"/><file name="abaqoos_grey.gif" hash="080802fd1a5b90238ff1d206a15036f5"/><file name="ach.gif" hash="51b669a1d1ca0ff736166d27bf027213"/><file name="ach_grey.gif" hash="b876306dd72ae61c40c34f8b3aee7521"/><file name="alipay.jpg" hash="97430660b667441dc0a5d6611ccef494"/><file name="alipay_grey.jpg" hash="46d76de83013eec2856479e36cdf6dae"/><file name="alliance_online.gif" hash="321be117b6327f455cb3e8d31461fed9"/><file name="alliance_online_grey.gif" hash="e6f9d3180442f9fa432dc9ae0806ed09"/><file name="ambankgroup.gif" hash="f7f6e54e102819c15ad8c6ee37756dec"/><file name="ambankgroup_grey.gif" hash="c2a1ad7a5515fc857c043eaa0bba3955"/><file name="american_express.jpg" hash="84cf63cad26fcb5dbec431e7173731c7"/><file name="american_express_grey.jpg" hash="79bde788bfc298de8e9ea999e3a67754"/><file name="arztebank.jpg" hash="920e6d907af58292790e95ce5cc46905"/><file name="arztebank_grey.jpg" hash="ef1fb04251d1bebb0f9416e0764355a1"/><file name="asn_bank_logo.jpg" hash="ce53a6afff0590f26080ab71b7eddbd9"/><file name="banco_do_brasil.jpg" hash="4d97f3ee9a5ddfe75b52e42efac1b0a6"/><file name="banco_do_brasil_grey.jpg" hash="bd8f1252c31cbd7f4d28fe464ffd931b"/><file name="bancomer.gif" hash="59d3973018a23020bce776180620a5ee"/><file name="bancomer_grey.gif" hash="6f0708f36e0217c1c013994feca929ec"/><file name="bank_austria.jpg" hash="a1bbf3da1eaa934e649a25beb56ca723"/><file name="bank_austria_grey.jpg" hash="a076595d919a5d83ca84cda845b40eca"/><file name="bank_burgeland.jpg" hash="c2425d58078fc8409d252667e712678a"/><file name="bank_burgeland_grey.jpg" hash="a1e08848c1ae3cb3ed891619325039a6"/><file name="bank_transfer_logo_v2.png" hash="513ff9d754da83a8b88da278954573ff"/><file name="bank_transfer_logo_v3.png" hash="a07da37a5832723883907a6d97aa011f"/><file name="bank_transfer_logo_v4.png" hash="1450f028cebd6dfc9ae2e36bbabc4fa6"/><file name="bank_transfer_logo_v5.gif" hash="4c76e68b7b0bab515876738b2f8e5539"/><file name="bank_transfer_logo_v5_grey.gif" hash="acb5862cf5636d94b5639e01069b58da"/><file name="bawag.jpg" hash="fa7cbc4ed038912ccaff7a93bd12978e"/><file name="bawag_grey.jpg" hash="7fd2c562481207a397e2a57f02dd8f81"/><file name="beeline.gif" hash="ccf64a91497758ccfa09e901cfa3f8f9"/><file name="beeline_grey.gif" hash="50e464db96cc2cde3c3ab3b8ac4e5b50"/><file name="boleto.jpg" hash="c79ebd618a7846334551af31eb4d9210"/><file name="boleto_bancario_itau.gif" hash="7c47d83948b9ce642987666e45fc051b"/><file name="boleto_bancario_itau_grey.gif" hash="4d84e963d65d68ac2ac4d3239df6718e"/><file name="boleto_grey.jpg" hash="d8b8af5824b75978718f4c4afcc344ac"/><file name="bradesco.jpg" hash="9d36af7f1e683bad48cdfbd4bfa7139e"/><file name="bradesco_grey.jpg" hash="93f1d8a84ab95166da85cc79957a1877"/><file name="bradesco_transferencia.jpg" hash="b0104bf5523f25b13c737b6b16ae7861"/><file name="bradesco_transferencia_grey.jpg" hash="2c70c68882be95369364dd032e5a81f6"/><file name="cabal.jpg" hash="4040e34511e05f1116fcadee18caa390"/><file name="cabal_grey.jpg" hash="92d0c8bc4fec1de7bfe2b5394970e49e"/><file name="cards_brl.gif" hash="422c1841a3234b148abdcf2d975f3a6e"/><file name="cards_brl_grey.gif" hash="fb250a891eab3b0c134c4b6b758272ca"/><file name="cards_colombia.jpg" hash="860319e1d33185be94fefcc2ccdbdcc7"/><file name="cards_colombia_grey.jpg" hash="00f7613cc02ffbdd13f8c3cc527ec5d3"/><file name="cards_logo.jpg" hash="f8358cc095447ae13bc01df071ed05cf"/><file name="cards_logo_grey.jpg" hash="6b63d47ac7fa2fc2c161f5343f6bbe83"/><file name="cash_paysbuy.jpg" hash="e3339aa7291693a2a8b053b4fdc10bab"/><file name="cashu.gif" hash="b11b9372c99e2eeba612deffbecbe23e"/><file name="cashu_grey.gif" hash="b025eb62f94662114c588757fcd28306"/><file name="cimb_clicks.gif" hash="87cfb10e123e945e243d4be68d74dfa4"/><file name="cimb_clicks_grey.gif" hash="ff11b24190a5a4658e2ed02c1eb9e254"/><file name="cuentadigital.gif" hash="6ea9d5498162d29bfcc8783fdb5a5915"/><file name="cuentadigital_grey.gif" hash="55a018c483a9f73e1d6694180a0f916c"/><file name="debito.jpg" hash="9fb5508cd7f0e584a416d0408b87e388"/><file name="debito_bradesco.jpg" hash="eb55ec42d033eba98b2b5075af0e96c0"/><file name="debito_bradesco_grey.jpg" hash="ed2f64e3408fe4ffad34950631bb559d"/><file name="debitobdb.jpg" hash="ca83fb36d62761bf6129e9ed2cd3e4f2"/><file name="debitobdb_grey.jpg" hash="d8f412bcea2de20f0273b41d9efffb25"/><file name="dineromail.gif" hash="165c7a216c2128cb88999d2313a03ee1"/><file name="dineromail_grey.gif" hash="9ea93cee63769fb3917eb7da977c39dd"/><file name="dineromail_v2.gif" hash="4a6753b4abbf58c71331864afa2c87fd"/><file name="dineromail_v2_grey.gif" hash="8d31ce280f249f7191ae3a0ab5563db9"/><file name="diners_club.jpg" hash="1d285b6477835279dede276886c4df91"/><file name="diners_club_grey.jpg" hash="90c195eafa58ade4657ffe3377d4eaaf"/><file name="discover.jpg" hash="7897fbc91bcff2fe3aa5b96e4f27340c"/><file name="discover_grey.jpg" hash="c54ef5a6a415c65cf8dbf3eda04ed441"/><file name="dp24_sofort.gif" hash="591d4c558ba73c63cb86b269edb37aa5"/><file name="dp24_sofort_NEW.gif" hash="7e8525303d803df6281c81f9011ebefe"/><file name="dp24_sofort_NEW_grey.gif" hash="aa042e6eb9be0a55f3b99007e6f5e40f"/><file name="dp24_sofort_grey.gif" hash="958dc7077eb00754a18a778d07f1e3b0"/><file name="dragonpay.jpg" hash="8ba2880b7b0b5f9108a09f003f2eb74b"/><file name="dragonpay_grey.jpg" hash="78e1397597adcc83649f25f06111c085"/><file name="eKonto.gif" hash="031a1321bdfeb801f30701e8af53c8e4"/><file name="eKonto_grey.gif" hash="63ae97d6b8efe04ef167bd027936e479"/><file name="easybank.jpg" hash="efefee8a24b5c084d65a3b3aef5bc1fc"/><file name="easybank_grey.jpg" hash="c1762fd4716c5d018c1f94e4390b9ac2"/><file name="ebanka.jpg" hash="f12cfb39af1310c60b6c7970d3a2a9b6"/><file name="ebanka_grey.jpg" hash="741393e8af189bddaa6c8778727dfb3c"/><file name="enets.gif" hash="bd6e2b5fc1c2e4f76e7b482275f2bda9"/><file name="enets_grey.gif" hash="59cbf860fe1106ce2650079e1f1c9e13"/><file name="eps-e-payment-standard.gif" hash="adc705e916095300e742bb248d957cde"/><file name="eps-e-payment-standard_grey.gif" hash="7b126f8cc47c6ba24f87f9b42973856f"/><file name="erste.jpg" hash="22220bca0bfa256b5c08f1f78d7f56b2"/><file name="erste_grey.jpg" hash="5480c45e2ff7820414d3097576e1c718"/><file name="gartnerbank.jpg" hash="c512b747545a5f64c07240265291b618"/><file name="gartnerbank_grey.jpg" hash="8a7216a173c15e31b317e33a0d4fcec4"/><file name="gash.gif" hash="9a9ddb20ba6e0e7dc65542c3fd8a3c1a"/><file name="gash_grey.gif" hash="635521bd6cd7e9e16b322fea3df1c39d"/><file name="giropay.gif" hash="a369853d4dca4e678964d3cd0f100ad0"/><file name="giropay_grey.gif" hash="f8f70668270d08d1c4bb4bf7c8fdef8c"/><file name="gluepay.jpg" hash="ab23cfb7303bd716012a82bc01ab0d5f"/><file name="gluepay_grey.jpg" hash="8d59d1eb8202de195120e570c2e526ec"/><file name="hipercard.jpg" hash="f90502730aa04872a58e6384cf8e8867"/><file name="hipercard_grey.jpg" hash="7a4108411fa694ef041152f62910c950"/><file name="hong_leong.gif" hash="2dd6e01d1993f6b5de40ac888723e293"/><file name="hong_leong_grey.gif" hash="8283f40b5e4a4cdb305fbbfc3d1f7cd5"/><file name="hypo.jpg" hash="0b3a6e2dfe85840658c3d2729b540042"/><file name="hypo_grey.jpg" hash="06fa0a4662552761a54e36aad277508d"/><file name="ideal.jpg" hash="37baefc16cd46d0fad89d8b3af68687d"/><file name="ideal_grey.jpg" hash="6d1d7d63b6a144832ec4295f8b28c1d7"/><file name="maestro.jpg" hash="85f3a2b4e288db5a1fdcee4ddbbe0300"/><file name="maestro_grey.jpg" hash="cf93aa2806efc66d39997435339b47b7"/><file name="mandiri.gif" hash="88ed6722469878f1c423d548cb31cd45"/><file name="mandiri_grey.gif" hash="6ec67f2e4c947d670ab689f94d34ef96"/><file name="mangirkart.jpg" hash="4c297147e68215bcafd92782e1663117"/><file name="mastercard.jpg" hash="fcded6aaeecc8e73f3e99187e77b5f34"/><file name="mastercard_grey.jpg" hash="3aa899d221d128c96e0e095aeca763e2"/><file name="maybank2u.gif" hash="fc4f2ae73b4672308451db5bed9c334b"/><file name="maybank2u_grey.gif" hash="b54795f9fcf4adfdb36e65089f62d81b"/><file name="mazooma.gif" hash="2241b7344c2b8e1ee70ad6e073c4f342"/><file name="mazooma_grey.gif" hash="5db064edd62f797baf4bc70d1fa221d3"/><file name="megafon.jpg" hash="9864e6ee4ff66ad0d9e21e596a16b3e4"/><file name="megafon_v1.gif" hash="0daecce60b8719ae8985d0e8a22d53ee"/><file name="megafon_v1_grey.gif" hash="2dadcabaafaf7970bf924c017eb5c419"/><file name="megafon_v2.gif" hash="ef7528f2d666fdfc0d8947ee18980b63"/><file name="megafon_v2_grey.gif" hash="a26f3a31ec3b223d4c84db583c224390"/><file name="meps_cash.gif" hash="cc419c7a482a57688ee5d93f331fcaa5"/><file name="meps_cash_grey.gif" hash="54adc93d4ec83d0dac5a12942c347d9f"/><file name="mercadopago.jpg" hash="f0d1fb160e6087b6505cba8f628da912"/><file name="mercadopago_grey.jpg" hash="777c628df4d889c01a13eaf5981d4513"/><file name="mobile_money.gif" hash="d44ec4368140041bb9fb84d6ee25ebc2"/><file name="mobile_money_grey.gif" hash="58527f75aeb0957e135a8c1fd68c17b5"/><file name="moneta.gif" hash="4bde6bd5ee50af375576974ee119c34b"/><file name="moneta_grey.gif" hash="c001b6ebd356dc0c0234791b950b3a69"/><file name="moneta_v2.gif" hash="14e3ca50db6bf538c3fa8c386411e56b"/><file name="moneta_v2_grey.gif" hash="4a6af98d43978b0783742f9a618d7fae"/><file name="mozca.jpg" hash="626773a49f8dba726f23f16bc258c896"/><file name="mozca_grey.jpg" hash="da34d14a6f4c28d0b5c6423692eb5b25"/><file name="mrcash.gif" hash="ecfb32489dcd09688fad5b116b3a85fd"/><file name="mrcash_grey.gif" hash="4cbaff4a13b6e6aae67946df05c6b27f"/><file name="mtcpay.png" hash="1acfec41fea98b5692537a7ed137e556"/><file name="mtcpay_grey.png" hash="8d2471aeed41c7e5ea0627edc50fa579"/><file name="mts.gif" hash="3c18eeb9214120d260a8a5667023e353"/><file name="mts_grey.gif" hash="e9d0c92e7794dea81039d07f0d09da11"/><file name="onecard.gif" hash="8c0b265fb5ea2fe1b174f87fb08c3e88"/><file name="onecard_grey.gif" hash="f37ec1c53e91e6fc3b9dedad4be9e1b1"/><file name="oxxo.gif" hash="39a7b9d78e465cb6bd914bd650cdf657"/><file name="oxxo_grey.gif" hash="f45edb2dc33fe37cabcae62b63179b00"/><file name="p24.gif" hash="05d24431783c90f1f37897f5e9a81dc9"/><file name="p24_grey.gif" hash="8bb083943400daed13271899892254b6"/><file name="pagtotal.jpg" hash="44426ff1d7d2d7387241354a91b0d855"/><file name="pagtotal_grey.jpg" hash="02d0a0fd8829cab14bf7a1527aa5a091"/><file name="payeasy.gif" hash="67cf43560bfb9cfe722538ef5c95433d"/><file name="payeasy_grey.gif" hash="47641e238b6fe6416ce2eb2cc351989f"/><file name="payment_in_cash.gif" hash="820e303d6b9ba66deab9f33e14253a58"/><file name="payment_in_cash_grey.gif" hash="978b6c2ca861bf967683d5a19adee694"/><file name="payment_references.gif" hash="ff968e7c1061aec0918b1a437099b540"/><file name="payment_references_grey.gif" hash="b77e2bbe0f62adcc7f1c041a458df752"/><file name="paypal.jpg" hash="c7559f323ab08f854c52fe4895f4ca55"/><file name="paypal_grey.jpg" hash="37597681016a307384874900f6128c33"/><file name="paysafecard.gif" hash="58a072776d1eb9644fdc533c594ef9f4"/><file name="paysafecard_grey.gif" hash="a08463516029a51b82a6329186698542"/><file name="paysbuy.gif" hash="ce0b88b54c2599aa109be5bf8fb4a133"/><file name="paysbuy_grey.gif" hash="6a3f0504f18b83f8987e9c4dc6cb664c"/><file name="paysera.gif" hash="a9b49116a485e079c14435f2c8f3ebb5"/><file name="paysera_grey.gif" hash="477121bf236b2ac87e73580a2545b5ef"/><file name="poli.gif" hash="85ffbae6ae3706cdd88420f32bce1067"/><file name="poli_grey.gif" hash="1cc332df9c0e07f11567f2ef6cb062dd"/><file name="poli_v2.gif" hash="82a1218a9db8bdb204142b2fd5a2102e"/><file name="poli_v2_grey.gif" hash="ab9ed910c67f6e8f16681af512be3b5a"/><file name="pse.gif" hash="6e3197c2386c10c021085207217bd5e8"/><file name="pse_grey.gif" hash="a4a610bc5ac861ee97baa76c718b9c2b"/><file name="pwmb.png" hash="0f8fc1c0ef17b18feae6f703d5e79f8f"/><file name="pwmb_grey.png" hash="7dc818575813d559df3901575b500bc4"/><file name="qiwi_wallet.gif" hash="e16df15584ee92d03c68f3a86eef1bc7"/><file name="qiwi_wallet_grey.gif" hash="fa4e3c399e721950d0d0274362677aa4"/><file name="qiwi_wallet_v2.gif" hash="46bce6e2a50c8dcf1532fe4f360957bd"/><file name="qiwi_wallet_v2_grey.gif" hash="d07ab773f6d9d014ac39959165918991"/><file name="rhb.gif" hash="d70d74834b9c1cfe2ff54514611e5684"/><file name="rhb_grey.gif" hash="d7e0e622e7c491d932d545c01150941e"/><file name="santander.gif" hash="03ddf28ce467aabcf922a06111cba206"/><file name="santander_grey.gif" hash="bddb4f6f439c307ac7540e43408e6bda"/><file name="scotiabank.gif" hash="42157d67add2903652dd5e3a7ecf7cc3"/><file name="scotiabank_grey.gif" hash="e67793346f3017f784b9827917c6accb"/><file name="secure_vault.gif" hash="4d868b10b4d6545d22371de98cd92da3"/><file name="secure_vault_grey.gif" hash="760faaddc25befe508a6c8301e13cbea"/><file name="sibs_mb.gif" hash="3ea1f60c9c28aa46d747ecc60d19bfc0"/><file name="sibs_mb_grey.gif" hash="5f82bafbdbafdc842d9cd270f5477056"/><file name="sorocred.jpg" hash="ae5246d01aac784074fe326472dd6926"/><file name="sorocred_grey.jpg" hash="99561b84c21316cd94e3b6caafdf5225"/><file name="sparda.jpg" hash="4af507ced7ded8aaf8fb6d3b75c09b7f"/><file name="sparda_grey.jpg" hash="f84beefa87c5357f2d62c914f57a870f"/><file name="svp_grey.png" hash="507db08c738d4d9d314e4bca85a019cc"/><file name="tenpay.gif" hash="550be3db4283fb6ebded4a5e167d88b7"/><file name="tenpay_grey.gif" hash="0dded13d859360a75fa84a9ff5dcba2c"/><file name="todito_cash.gif" hash="1c1d1a1307f420805f8efd82d4988ae5"/><file name="todito_cash_grey.gif" hash="be7b28e381859bc17890cf7c82e314ff"/><file name="trustpay.png" hash="af9db4dcb9410af39e3c88f626f34b76"/><file name="trustpay_grey.png" hash="24bd44c2746a92b0879560b91dffafcf"/><file name="ukash.gif" hash="877c5677688589135a878813c9bc88c0"/><file name="ukash_grey.gif" hash="41ae1ea3c5a3c47853ff4ad898d5aa67"/><file name="umb.gif" hash="1ed0888a7874f41d4459d1cd9d65b171"/><file name="umb_grey.gif" hash="6511e82dc24db5041dadddc4ea735295"/><file name="visa.jpg" hash="41fd15708b63a7a305d8eecd86196677"/><file name="visa_electron.jpg" hash="ed77ab7059c7f16c1ad1a86e08ceacca"/><file name="visa_electron_grey.jpg" hash="6c2fb39684baaf916fcb2b6b5cf46293"/><file name="visa_grey.jpg" hash="1df46140f2380cabd1320048fad0f357"/><file name="volksbank.jpg" hash="70d0d657bd47bde2bb5f5d32ae1d222c"/><file name="volksbank_grey.jpg" hash="c5598166c0909bd09115fe91183feb69"/><file name="web_cash.gif" hash="a33d76bb68588b1f4ee791d0f6da17db"/><file name="web_cash_grey.gif" hash="bca8a9e4c4f296e5b595d719d1054fbb"/><file name="webmoney.jpg" hash="750addb8f763dd8ba9fe55024f392ea0"/><file name="webmoney_v1.gif" hash="ccf285ac5829e91f421c33e4a31b8b8e"/><file name="webmoney_v1_grey.gif" hash="c226455ae63261f4c835a460d65b8c3f"/><file name="webtopay_v3.gif" hash="2445c0587bf52dcfd40d586d910e76c3"/><file name="webtopay_v3_grey.gif" hash="b35f10379f0838103fb02bf414e71984"/><file name="yandex_money.gif" hash="f5111aa14fa33b0bdb0b657b515b00dc"/><file name="yandex_money_grey.gif" hash="96974577c36a912e7b9993cbb56a9121"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Smart2Pay_Globalpay.xml" hash="1f3951214d78df89b34a781bd683699c"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><dir name="smart2pay"><dir name="globalpay"><file name="payment_confirmation.html" hash="4a860da24781740ff361d948dd406e21"/></dir></dir></dir></dir><file name="Smart2Pay_Globalpay.csv" hash="c8c04c062fee65273bb4d5352ba3f71b"/></dir><dir name="en_GB"><dir name="template"><dir name="email"><dir name="smart2pay"><dir name="globalpay"><file name="payment_confirmation.html" hash="4a860da24781740ff361d948dd406e21"/></dir></dir></dir></dir><file name="Smart2Pay_Globalpay.csv" hash="c8c04c062fee65273bb4d5352ba3f71b"/></dir><dir name="pt_BR"><file name="Smart2Pay_Globalpay.csv" hash="72c7cef13001b2e90ad38ee89c32852f"/></dir><dir name="es_AR"><file name="Smart2Pay_Globalpay.csv" hash="df02b6634e53c769af009992e7c66590"/></dir><dir name="es_CL"><file name="Smart2Pay_Globalpay.csv" hash="df02b6634e53c769af009992e7c66590"/></dir><dir name="es_CO"><file name="Smart2Pay_Globalpay.csv" hash="df02b6634e53c769af009992e7c66590"/></dir><dir name="es_ES"><file name="Smart2Pay_Globalpay.csv" hash="ac603910d33aa5c729ff12bfd6b2ab4e"/></dir><dir name="es_MX"><file name="Smart2Pay_Globalpay.csv" hash="0193cd699c4fe9c5d613188f91e9b3cb"/></dir><dir name="it_IT"><file name="Smart2Pay_Globalpay.csv" hash="5e72668927b8756914a79403d34b2f3d"/></dir></target></contents>
102
  <compatible/>
103
- <dependencies><required><php><min>5.2.6</min><max>5.4.16</max></php></required></dependencies>
104
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Smart2Pay</name>
4
+ <version>1.1.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/OSL-3.0">The Open Software License 3.0 (OSL-3.0)</license>
7
  <channel>community</channel>
90
  &lt;p&gt;Let us handle your payments on the web; increase your Sales and Customer satisfaction, join Smart2Pay, the smart way to pay on the web.&lt;/p&gt;&#xD;
91
  &#xD;
92
  &lt;p&gt;Please register online on https://dashboardtest.smart2pay.com/Account/Register or e-mail support@smart2pay.com for instructions on account activation and detailed documentation.&lt;/p&gt;</description>
93
+ <notes>- Updated Dineromail logo&#xD;
94
+ - Changed Glupay to Trustly&#xD;
95
+ - Changed WebToPay to Paysera&#xD;
96
+ - Changed eBanka to ePlatby for eKonto&#xD;
97
+ - Changed DirectEBanking to Sofort Banking and added Italy and Austria&#xD;
98
+ - Added Smart2Pay cards&#xD;
99
+ - Removed Argentina&#xD;
100
+ - Added Trustpay payment method id Bulgaria, CZ, Estonia, Hungary, Romania, Slovenia, Slovakia&#xD;
101
+ - Removed Mozca in Brazil, Chile, Colombia&#xD;
102
+ - Added Tenpay payment method in China&#xD;
103
+ - Removed MTS, Beeline, Megafon from Kazakhstan&#xD;
104
+ - Removed Paysafecard in Poland&#xD;
105
+ - Removed WebMoney in Russia&#xD;
106
+ - Added Qiwi wallet in Ukraine&#xD;
107
+ - Now Magento sends e-mail on order creation right before redirect to Smart2Pay&#xD;
108
+ - Fixed problem with high amounts experienced on some locales&#xD;
109
+ - Changed the final redirect pages. Now the final redirect from Smart2Pay back to Magento shop is done on the default final checkout page adding the custom messages depending on the redirection status.</notes>
110
  <authors><author><name>Stefan Iancu</name><user>stefani</user><email>stefan@smart2pay.com</email></author></authors>
111
+ <date>2013-10-22</date>
112
+ <time>10:13:40</time>
113
+ <contents><target name="magecommunity"><dir name="Smart2Pay"><dir name="Globalpay"><dir name="Block"><file name="Info.php" hash="7ba152ab49b0dc36cc9af68d4877a649"/><dir name="Paymethod"><file name="Form.php" hash="b1482f3ec22b1a2a20117d8847451ec1"/><file name="Sendform.php" hash="c24dd8f6b9327b92dffd0d0c6ac1adb7"/></dir></dir><dir name="Helper"><file name="Data.php" hash="bb23054b861b1468c0a70e2ce5acdb8d"/><file name="Helper.php" hash="a549c535e360a93958c6ca941f80b129"/></dir><dir name="Model"><file name="Country.php" hash="4b433925bed9f5d47d64497432e75a34"/><file name="Countrymethod.php" hash="2aa968c593058fd86b2c8d0550f3e286"/><file name="GlobalpayLog.php" hash="f68fd78b1020729985c405d539cb94d4"/><file name="Logger.php" hash="6268d6a7829e481187b0d998be88bab0"/><file name="Method.php" hash="99a1ed249df5d21e978406f2aee202d7"/><file name="Pay.php" hash="d5f0b2f4f0cf42295fa2fb45a11759fb"/><dir name="Resource"><dir name="Country"><file name="Collection.php" hash="ad5ae7ebc94b095bb7264bdf8a8384db"/></dir><file name="Country.php" hash="48d23e3ab4a5c2788839433080179c65"/><dir name="Countrymethod"><file name="Collection.php" hash="31e944d1e66e1da9d3d3779c9cc318d3"/></dir><file name="Countrymethod.php" hash="95db4406bede177910938746e660360f"/><dir name="Logger"><file name="Collection.php" hash="f4db3e9e19df5570603cdddc843017ea"/></dir><file name="Logger.php" hash="ef953126a8793499b676a0aea7070fda"/><dir name="Method"><file name="Collection.php" hash="52091137c467ca6e4ef07e15505e41cd"/></dir><file name="Method.php" hash="ab86d14385f2330a81e13ac0d931fb89"/><file name="Setup.php" hash="6cad02bba0656dab9a7a7a85489f92c3"/></dir><dir name="Source"><file name="Displaymodes.php" hash="d58bea7ddb68a9ae8cd32aa1b175ce5f"/><file name="Methods.php" hash="00c268b45390e7dc505f3bf08699e65d"/><file name="Testlive.php" hash="c9cde641fdc6d7e853de3b6af3fa1d90"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="862ab8115f880040dcc607aa996ed998"/><file name="TestsController.php" hash="491989d17c884c304866caa317ba4b03"/></dir><dir name="etc"><file name="config.xml" hash="9034b12e9ddc7d701b16157a57958bd3"/><file name="system.xml" hash="ab61dfbde5a1847d86a2637ee3cf44cf"/></dir><dir name="sql"><dir name="globalpay_setup"><file name="mysql4-install-0.1.0.php" hash="a9028322416d7a057b933e5ff7461b7e"/><file name="mysql4-upgrade-1.0.3-1.1.1.php" hash="e101b2deef4a6911e20d9604a87f92b4"/><file name="mysql4-upgrade-1.1.1-1.1.2.php" hash="9af680ac659d8b26ee7a2a17158449d7"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="globalpay.xml" hash="d5f5abd3bbf9b9184cd18304acdac867"/></dir><dir name="template"><dir name="smart2pay"><dir name="globalpay"><file name="info.phtml" hash="27dd1e9f9fc5390ad74f45573ac51dea"/><dir name="paymethod"><file name="form.phtml" hash="0121fb12d5270242933707c0d001bc7a"/><file name="sendform.phtml" hash="4b93d30712f295f3396df3b10ee398ed"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="smart2pay"><dir name="methods"><file name="7eleven.gif" hash="34064a09693cc286ec61ca3c2689382a"/><file name="7eleven_grey.gif" hash="6eec329dc25961fae2a8a78b3d946a99"/><file name="ABN-AMRO.jpg" hash="82dd9741d9ce8f1c0706a9a29c775faa"/><file name="FPX.gif" hash="34cc5462d208c69dd7cec27024bd1f8a"/><file name="FPX_grey.gif" hash="f56883b1becf81c26a160d8022de9e58"/><file name="Frieslandbank.jpg" hash="25c44572f3d202a37e3801d78f8b9385"/><file name="IXe.gif" hash="1a36c6a866390fe4dfbcdf6ea7dabaa9"/><file name="IXe_grey.gif" hash="bdacd3d56125aa7d00d5b135885b7fcd"/><file name="RBS.jpg" hash="b11037004617f3a5f5afec6ed37953e8"/><file name="XLTunai.gif" hash="114b251f96a1b465133dab839132331c"/><file name="XLTunai_grey.gif" hash="c10fa0b64812167f317f168246f3a1ab"/><file name="abaqoos.gif" hash="9ecff0690953339133a8123c360e0441"/><file name="abaqoos_grey.gif" hash="080802fd1a5b90238ff1d206a15036f5"/><file name="ach.gif" hash="51b669a1d1ca0ff736166d27bf027213"/><file name="ach_grey.gif" hash="b876306dd72ae61c40c34f8b3aee7521"/><file name="alipay.jpg" hash="97430660b667441dc0a5d6611ccef494"/><file name="alipay_grey.jpg" hash="46d76de83013eec2856479e36cdf6dae"/><file name="alliance_online.gif" hash="321be117b6327f455cb3e8d31461fed9"/><file name="alliance_online_grey.gif" hash="e6f9d3180442f9fa432dc9ae0806ed09"/><file name="ambankgroup.gif" hash="f7f6e54e102819c15ad8c6ee37756dec"/><file name="ambankgroup_grey.gif" hash="c2a1ad7a5515fc857c043eaa0bba3955"/><file name="american_express.jpg" hash="84cf63cad26fcb5dbec431e7173731c7"/><file name="american_express_grey.jpg" hash="79bde788bfc298de8e9ea999e3a67754"/><file name="arztebank.jpg" hash="920e6d907af58292790e95ce5cc46905"/><file name="arztebank_grey.jpg" hash="ef1fb04251d1bebb0f9416e0764355a1"/><file name="asn_bank_logo.jpg" hash="ce53a6afff0590f26080ab71b7eddbd9"/><file name="banco_do_brasil.jpg" hash="4d97f3ee9a5ddfe75b52e42efac1b0a6"/><file name="banco_do_brasil_grey.jpg" hash="bd8f1252c31cbd7f4d28fe464ffd931b"/><file name="bancomer.gif" hash="59d3973018a23020bce776180620a5ee"/><file name="bancomer_grey.gif" hash="6f0708f36e0217c1c013994feca929ec"/><file name="bank_austria.jpg" hash="a1bbf3da1eaa934e649a25beb56ca723"/><file name="bank_austria_grey.jpg" hash="a076595d919a5d83ca84cda845b40eca"/><file name="bank_burgeland.jpg" hash="c2425d58078fc8409d252667e712678a"/><file name="bank_burgeland_grey.jpg" hash="a1e08848c1ae3cb3ed891619325039a6"/><file name="bank_transfer_logo_v2.png" hash="513ff9d754da83a8b88da278954573ff"/><file name="bank_transfer_logo_v3.png" hash="a07da37a5832723883907a6d97aa011f"/><file name="bank_transfer_logo_v4.png" hash="1450f028cebd6dfc9ae2e36bbabc4fa6"/><file name="bank_transfer_logo_v5.gif" hash="4c76e68b7b0bab515876738b2f8e5539"/><file name="bank_transfer_logo_v5_grey.gif" hash="acb5862cf5636d94b5639e01069b58da"/><file name="bawag.jpg" hash="fa7cbc4ed038912ccaff7a93bd12978e"/><file name="bawag_grey.jpg" hash="7fd2c562481207a397e2a57f02dd8f81"/><file name="beeline.gif" hash="ccf64a91497758ccfa09e901cfa3f8f9"/><file name="beeline_grey.gif" hash="50e464db96cc2cde3c3ab3b8ac4e5b50"/><file name="boleto.jpg" hash="c79ebd618a7846334551af31eb4d9210"/><file name="boleto_bancario_itau.gif" hash="7c47d83948b9ce642987666e45fc051b"/><file name="boleto_bancario_itau_grey.gif" hash="4d84e963d65d68ac2ac4d3239df6718e"/><file name="boleto_grey.jpg" hash="d8b8af5824b75978718f4c4afcc344ac"/><file name="bradesco.jpg" hash="9d36af7f1e683bad48cdfbd4bfa7139e"/><file name="bradesco_grey.jpg" hash="93f1d8a84ab95166da85cc79957a1877"/><file name="bradesco_transferencia.jpg" hash="b0104bf5523f25b13c737b6b16ae7861"/><file name="bradesco_transferencia_grey.jpg" hash="2c70c68882be95369364dd032e5a81f6"/><file name="cabal.jpg" hash="4040e34511e05f1116fcadee18caa390"/><file name="cabal_grey.jpg" hash="92d0c8bc4fec1de7bfe2b5394970e49e"/><file name="cards_brl.gif" hash="422c1841a3234b148abdcf2d975f3a6e"/><file name="cards_brl_grey.gif" hash="fb250a891eab3b0c134c4b6b758272ca"/><file name="cards_colombia.jpg" hash="860319e1d33185be94fefcc2ccdbdcc7"/><file name="cards_colombia_grey.jpg" hash="00f7613cc02ffbdd13f8c3cc527ec5d3"/><file name="cards_logo.jpg" hash="f8358cc095447ae13bc01df071ed05cf"/><file name="cards_logo_grey.jpg" hash="6b63d47ac7fa2fc2c161f5343f6bbe83"/><file name="cash_paysbuy.jpg" hash="e3339aa7291693a2a8b053b4fdc10bab"/><file name="cashu.gif" hash="b11b9372c99e2eeba612deffbecbe23e"/><file name="cashu_grey.gif" hash="b025eb62f94662114c588757fcd28306"/><file name="cimb_clicks.gif" hash="87cfb10e123e945e243d4be68d74dfa4"/><file name="cimb_clicks_grey.gif" hash="ff11b24190a5a4658e2ed02c1eb9e254"/><file name="cuentadigital.gif" hash="6ea9d5498162d29bfcc8783fdb5a5915"/><file name="cuentadigital_grey.gif" hash="55a018c483a9f73e1d6694180a0f916c"/><file name="debito.jpg" hash="9fb5508cd7f0e584a416d0408b87e388"/><file name="debito_bradesco.jpg" hash="eb55ec42d033eba98b2b5075af0e96c0"/><file name="debito_bradesco_grey.jpg" hash="ed2f64e3408fe4ffad34950631bb559d"/><file name="debitobdb.jpg" hash="ca83fb36d62761bf6129e9ed2cd3e4f2"/><file name="debitobdb_grey.jpg" hash="d8f412bcea2de20f0273b41d9efffb25"/><file name="dineromail.gif" hash="165c7a216c2128cb88999d2313a03ee1"/><file name="dineromail_grey.gif" hash="9ea93cee63769fb3917eb7da977c39dd"/><file name="dineromail_v2.gif" hash="2e6090ccd39ddf5b8eae1d13b191ba8e"/><file name="dineromail_v2_grey.gif" hash="2aed8863c821872b6708af89a34bf346"/><file name="diners_club.jpg" hash="1d285b6477835279dede276886c4df91"/><file name="diners_club_grey.jpg" hash="90c195eafa58ade4657ffe3377d4eaaf"/><file name="discover.jpg" hash="7897fbc91bcff2fe3aa5b96e4f27340c"/><file name="discover_grey.jpg" hash="c54ef5a6a415c65cf8dbf3eda04ed441"/><file name="dp24_sofort.gif" hash="591d4c558ba73c63cb86b269edb37aa5"/><file name="dp24_sofort_NEW.gif" hash="7e8525303d803df6281c81f9011ebefe"/><file name="dp24_sofort_NEW_grey.gif" hash="aa042e6eb9be0a55f3b99007e6f5e40f"/><file name="dp24_sofort_grey.gif" hash="958dc7077eb00754a18a778d07f1e3b0"/><file name="dragonpay.jpg" hash="8ba2880b7b0b5f9108a09f003f2eb74b"/><file name="dragonpay_grey.jpg" hash="78e1397597adcc83649f25f06111c085"/><file name="eKonto.gif" hash="031a1321bdfeb801f30701e8af53c8e4"/><file name="eKonto_grey.gif" hash="63ae97d6b8efe04ef167bd027936e479"/><file name="easybank.jpg" hash="efefee8a24b5c084d65a3b3aef5bc1fc"/><file name="easybank_grey.jpg" hash="c1762fd4716c5d018c1f94e4390b9ac2"/><file name="ebanka.jpg" hash="f12cfb39af1310c60b6c7970d3a2a9b6"/><file name="ebanka_grey.jpg" hash="741393e8af189bddaa6c8778727dfb3c"/><file name="enets.gif" hash="bd6e2b5fc1c2e4f76e7b482275f2bda9"/><file name="enets_grey.gif" hash="59cbf860fe1106ce2650079e1f1c9e13"/><file name="eps-e-payment-standard.gif" hash="adc705e916095300e742bb248d957cde"/><file name="eps-e-payment-standard_grey.gif" hash="7b126f8cc47c6ba24f87f9b42973856f"/><file name="erste.jpg" hash="22220bca0bfa256b5c08f1f78d7f56b2"/><file name="erste_grey.jpg" hash="5480c45e2ff7820414d3097576e1c718"/><file name="gartnerbank.jpg" hash="c512b747545a5f64c07240265291b618"/><file name="gartnerbank_grey.jpg" hash="8a7216a173c15e31b317e33a0d4fcec4"/><file name="gash.gif" hash="9a9ddb20ba6e0e7dc65542c3fd8a3c1a"/><file name="gash_grey.gif" hash="635521bd6cd7e9e16b322fea3df1c39d"/><file name="giropay.gif" hash="a369853d4dca4e678964d3cd0f100ad0"/><file name="giropay_grey.gif" hash="f8f70668270d08d1c4bb4bf7c8fdef8c"/><file name="gluepay.jpg" hash="ab23cfb7303bd716012a82bc01ab0d5f"/><file name="gluepay_grey.jpg" hash="8d59d1eb8202de195120e570c2e526ec"/><file name="hipercard.jpg" hash="f90502730aa04872a58e6384cf8e8867"/><file name="hipercard_grey.jpg" hash="7a4108411fa694ef041152f62910c950"/><file name="hong_leong.gif" hash="2dd6e01d1993f6b5de40ac888723e293"/><file name="hong_leong_grey.gif" hash="8283f40b5e4a4cdb305fbbfc3d1f7cd5"/><file name="hypo.jpg" hash="0b3a6e2dfe85840658c3d2729b540042"/><file name="hypo_grey.jpg" hash="06fa0a4662552761a54e36aad277508d"/><file name="ideal.jpg" hash="37baefc16cd46d0fad89d8b3af68687d"/><file name="ideal_grey.jpg" hash="6d1d7d63b6a144832ec4295f8b28c1d7"/><file name="maestro.jpg" hash="85f3a2b4e288db5a1fdcee4ddbbe0300"/><file name="maestro_grey.jpg" hash="cf93aa2806efc66d39997435339b47b7"/><file name="mandiri.gif" hash="88ed6722469878f1c423d548cb31cd45"/><file name="mandiri_grey.gif" hash="6ec67f2e4c947d670ab689f94d34ef96"/><file name="mangirkart.jpg" hash="4c297147e68215bcafd92782e1663117"/><file name="mastercard.jpg" hash="fcded6aaeecc8e73f3e99187e77b5f34"/><file name="mastercard_grey.jpg" hash="3aa899d221d128c96e0e095aeca763e2"/><file name="maybank2u.gif" hash="fc4f2ae73b4672308451db5bed9c334b"/><file name="maybank2u_grey.gif" hash="b54795f9fcf4adfdb36e65089f62d81b"/><file name="mazooma.gif" hash="2241b7344c2b8e1ee70ad6e073c4f342"/><file name="mazooma_grey.gif" hash="5db064edd62f797baf4bc70d1fa221d3"/><file name="megafon.jpg" hash="9864e6ee4ff66ad0d9e21e596a16b3e4"/><file name="megafon_v1.gif" hash="0daecce60b8719ae8985d0e8a22d53ee"/><file name="megafon_v1_grey.gif" hash="2dadcabaafaf7970bf924c017eb5c419"/><file name="megafon_v2.gif" hash="ef7528f2d666fdfc0d8947ee18980b63"/><file name="megafon_v2_grey.gif" hash="a26f3a31ec3b223d4c84db583c224390"/><file name="meps_cash.gif" hash="cc419c7a482a57688ee5d93f331fcaa5"/><file name="meps_cash_grey.gif" hash="54adc93d4ec83d0dac5a12942c347d9f"/><file name="mercadopago.jpg" hash="f0d1fb160e6087b6505cba8f628da912"/><file name="mercadopago_grey.jpg" hash="777c628df4d889c01a13eaf5981d4513"/><file name="mobile_money.gif" hash="d44ec4368140041bb9fb84d6ee25ebc2"/><file name="mobile_money_grey.gif" hash="58527f75aeb0957e135a8c1fd68c17b5"/><file name="moneta.gif" hash="4bde6bd5ee50af375576974ee119c34b"/><file name="moneta_grey.gif" hash="c001b6ebd356dc0c0234791b950b3a69"/><file name="moneta_v2.gif" hash="14e3ca50db6bf538c3fa8c386411e56b"/><file name="moneta_v2_grey.gif" hash="4a6af98d43978b0783742f9a618d7fae"/><file name="mozca.jpg" hash="626773a49f8dba726f23f16bc258c896"/><file name="mozca_grey.jpg" hash="da34d14a6f4c28d0b5c6423692eb5b25"/><file name="mrcash.gif" hash="ecfb32489dcd09688fad5b116b3a85fd"/><file name="mrcash_grey.gif" hash="4cbaff4a13b6e6aae67946df05c6b27f"/><file name="mtcpay.png" hash="1acfec41fea98b5692537a7ed137e556"/><file name="mtcpay_grey.png" hash="8d2471aeed41c7e5ea0627edc50fa579"/><file name="mts.gif" hash="3c18eeb9214120d260a8a5667023e353"/><file name="mts_grey.gif" hash="e9d0c92e7794dea81039d07f0d09da11"/><file name="onecard.gif" hash="8c0b265fb5ea2fe1b174f87fb08c3e88"/><file name="onecard_grey.gif" hash="f37ec1c53e91e6fc3b9dedad4be9e1b1"/><file name="oxxo.gif" hash="39a7b9d78e465cb6bd914bd650cdf657"/><file name="oxxo_grey.gif" hash="f45edb2dc33fe37cabcae62b63179b00"/><file name="p24.gif" hash="05d24431783c90f1f37897f5e9a81dc9"/><file name="p24_grey.gif" hash="8bb083943400daed13271899892254b6"/><file name="pagtotal.jpg" hash="44426ff1d7d2d7387241354a91b0d855"/><file name="pagtotal_grey.jpg" hash="02d0a0fd8829cab14bf7a1527aa5a091"/><file name="payeasy.gif" hash="67cf43560bfb9cfe722538ef5c95433d"/><file name="payeasy_grey.gif" hash="47641e238b6fe6416ce2eb2cc351989f"/><file name="payment_in_cash.gif" hash="820e303d6b9ba66deab9f33e14253a58"/><file name="payment_in_cash_grey.gif" hash="978b6c2ca861bf967683d5a19adee694"/><file name="payment_references.gif" hash="ff968e7c1061aec0918b1a437099b540"/><file name="payment_references_grey.gif" hash="b77e2bbe0f62adcc7f1c041a458df752"/><file name="paypal.jpg" hash="c7559f323ab08f854c52fe4895f4ca55"/><file name="paypal_grey.jpg" hash="37597681016a307384874900f6128c33"/><file name="paysafecard.gif" hash="58a072776d1eb9644fdc533c594ef9f4"/><file name="paysafecard_grey.gif" hash="a08463516029a51b82a6329186698542"/><file name="paysbuy.gif" hash="ce0b88b54c2599aa109be5bf8fb4a133"/><file name="paysbuy_grey.gif" hash="6a3f0504f18b83f8987e9c4dc6cb664c"/><file name="paysera.gif" hash="a9b49116a485e079c14435f2c8f3ebb5"/><file name="paysera_grey.gif" hash="477121bf236b2ac87e73580a2545b5ef"/><file name="poli.gif" hash="85ffbae6ae3706cdd88420f32bce1067"/><file name="poli_grey.gif" hash="1cc332df9c0e07f11567f2ef6cb062dd"/><file name="poli_v2.gif" hash="82a1218a9db8bdb204142b2fd5a2102e"/><file name="poli_v2_grey.gif" hash="ab9ed910c67f6e8f16681af512be3b5a"/><file name="pse.gif" hash="6e3197c2386c10c021085207217bd5e8"/><file name="pse_grey.gif" hash="a4a610bc5ac861ee97baa76c718b9c2b"/><file name="pwmb.png" hash="0f8fc1c0ef17b18feae6f703d5e79f8f"/><file name="pwmb_grey.png" hash="7dc818575813d559df3901575b500bc4"/><file name="qiwi_wallet.gif" hash="e16df15584ee92d03c68f3a86eef1bc7"/><file name="qiwi_wallet_grey.gif" hash="fa4e3c399e721950d0d0274362677aa4"/><file name="qiwi_wallet_v2.gif" hash="46bce6e2a50c8dcf1532fe4f360957bd"/><file name="qiwi_wallet_v2_grey.gif" hash="d07ab773f6d9d014ac39959165918991"/><file name="rhb.gif" hash="d70d74834b9c1cfe2ff54514611e5684"/><file name="rhb_grey.gif" hash="d7e0e622e7c491d932d545c01150941e"/><file name="s2pcards.jpg" hash="422c1841a3234b148abdcf2d975f3a6e"/><file name="s2pcards_grey.jpg" hash="fb250a891eab3b0c134c4b6b758272ca"/><file name="santander.gif" hash="03ddf28ce467aabcf922a06111cba206"/><file name="santander_grey.gif" hash="bddb4f6f439c307ac7540e43408e6bda"/><file name="scotiabank.gif" hash="42157d67add2903652dd5e3a7ecf7cc3"/><file name="scotiabank_grey.gif" hash="e67793346f3017f784b9827917c6accb"/><file name="secure_vault.gif" hash="4d868b10b4d6545d22371de98cd92da3"/><file name="secure_vault_grey.gif" hash="760faaddc25befe508a6c8301e13cbea"/><file name="sibs_mb.gif" hash="3ea1f60c9c28aa46d747ecc60d19bfc0"/><file name="sibs_mb_grey.gif" hash="5f82bafbdbafdc842d9cd270f5477056"/><file name="sorocred.jpg" hash="ae5246d01aac784074fe326472dd6926"/><file name="sorocred_grey.jpg" hash="99561b84c21316cd94e3b6caafdf5225"/><file name="sparda.jpg" hash="4af507ced7ded8aaf8fb6d3b75c09b7f"/><file name="sparda_grey.jpg" hash="f84beefa87c5357f2d62c914f57a870f"/><file name="svp_grey.png" hash="507db08c738d4d9d314e4bca85a019cc"/><file name="tenpay.gif" hash="550be3db4283fb6ebded4a5e167d88b7"/><file name="tenpay_grey.gif" hash="0dded13d859360a75fa84a9ff5dcba2c"/><file name="todito_cash.gif" hash="1c1d1a1307f420805f8efd82d4988ae5"/><file name="todito_cash_grey.gif" hash="be7b28e381859bc17890cf7c82e314ff"/><file name="trustly.png" hash="49b3ad896237404993bb5a70df81b83a"/><file name="trustpay.png" hash="af9db4dcb9410af39e3c88f626f34b76"/><file name="trustpay_grey.png" hash="24bd44c2746a92b0879560b91dffafcf"/><file name="ukash.gif" hash="877c5677688589135a878813c9bc88c0"/><file name="ukash_grey.gif" hash="41ae1ea3c5a3c47853ff4ad898d5aa67"/><file name="umb.gif" hash="1ed0888a7874f41d4459d1cd9d65b171"/><file name="umb_grey.gif" hash="6511e82dc24db5041dadddc4ea735295"/><file name="visa.jpg" hash="41fd15708b63a7a305d8eecd86196677"/><file name="visa_electron.jpg" hash="ed77ab7059c7f16c1ad1a86e08ceacca"/><file name="visa_electron_grey.jpg" hash="6c2fb39684baaf916fcb2b6b5cf46293"/><file name="visa_grey.jpg" hash="1df46140f2380cabd1320048fad0f357"/><file name="volksbank.jpg" hash="70d0d657bd47bde2bb5f5d32ae1d222c"/><file name="volksbank_grey.jpg" hash="c5598166c0909bd09115fe91183feb69"/><file name="web_cash.gif" hash="a33d76bb68588b1f4ee791d0f6da17db"/><file name="web_cash_grey.gif" hash="bca8a9e4c4f296e5b595d719d1054fbb"/><file name="webmoney.jpg" hash="750addb8f763dd8ba9fe55024f392ea0"/><file name="webmoney_v1.gif" hash="ccf285ac5829e91f421c33e4a31b8b8e"/><file name="webmoney_v1_grey.gif" hash="c226455ae63261f4c835a460d65b8c3f"/><file name="webtopay_v3.gif" hash="2445c0587bf52dcfd40d586d910e76c3"/><file name="webtopay_v3_grey.gif" hash="b35f10379f0838103fb02bf414e71984"/><file name="yandex_money.gif" hash="f5111aa14fa33b0bdb0b657b515b00dc"/><file name="yandex_money_grey.gif" hash="96974577c36a912e7b9993cbb56a9121"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Smart2Pay_Globalpay.xml" hash="1f3951214d78df89b34a781bd683699c"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><dir name="smart2pay"><dir name="globalpay"><file name="payment_confirmation.html" hash="4a860da24781740ff361d948dd406e21"/></dir></dir></dir></dir><file name="Smart2Pay_Globalpay.csv" hash="4df6739646428816f6b9598e0d7ec1a9"/></dir><dir name="en_GB"><dir name="template"><dir name="email"><dir name="smart2pay"><dir name="globalpay"><file name="payment_confirmation.html" hash="4a860da24781740ff361d948dd406e21"/></dir></dir></dir></dir><file name="Smart2Pay_Globalpay.csv" hash="8e31c33f47dd4d77cae535a1923fbbf4"/></dir><dir name="pt_BR"><file name="Smart2Pay_Globalpay.csv" hash="69a1c6947ec70479d74e7a7ff9f1c205"/></dir><dir name="es_AR"><file name="Smart2Pay_Globalpay.csv" hash="5a977631a85a9a82109fba789b02d1dd"/></dir><dir name="es_CL"><file name="Smart2Pay_Globalpay.csv" hash="5a977631a85a9a82109fba789b02d1dd"/></dir><dir name="es_CO"><file name="Smart2Pay_Globalpay.csv" hash="5a977631a85a9a82109fba789b02d1dd"/></dir><dir name="es_ES"><file name="Smart2Pay_Globalpay.csv" hash="a160cfd7ec77af3d05cd5c7530254c5e"/></dir><dir name="es_MX"><file name="Smart2Pay_Globalpay.csv" hash="d1606efc9b347e5ecd60937e51d9fc52"/></dir><dir name="it_IT"><file name="Smart2Pay_Globalpay.csv" hash="5e72668927b8756914a79403d34b2f3d"/></dir><dir name="pt_PT"><file name="Smart2Pay_Globalpay.csv" hash=""/></dir></target></contents>
114
  <compatible/>
115
+ <dependencies><required><php><min>5.2.6</min><max>5.4.21</max></php></required></dependencies>
116
  </package>
skin/frontend/base/default/images/smart2pay/methods/dineromail_v2.gif CHANGED
Binary file
skin/frontend/base/default/images/smart2pay/methods/dineromail_v2_grey.gif CHANGED
Binary file
skin/frontend/base/default/images/smart2pay/methods/s2pcards.jpg ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/s2pcards_grey.jpg ADDED
Binary file
skin/frontend/base/default/images/smart2pay/methods/trustly.png ADDED
Binary file